Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add imports processing when formating source files to remove unused imports #1438

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions boilingcore/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (

"github.com/friendsofgo/errors"
"github.com/volatiletech/sqlboiler/v4/importers"
"golang.org/x/tools/imports"
)

// Copied from the go source
Expand Down Expand Up @@ -269,9 +270,15 @@ func executeTemplate(buf *bytes.Buffer, t *template.Template, name string, data
}

func formatBuffer(buf *bytes.Buffer) ([]byte, error) {
output, err := format.Source(buf.Bytes())
// format and process imports to remove unused ones
src, err := imports.Process("", buf.Bytes(), nil /* options */)
if err == nil {
return output, nil
var output []byte
// format the output
output, err = format.Source(src)
if err == nil {
return output, nil
}
}

matches := rgxSyntaxError.FindStringSubmatch(err.Error())
Expand Down
38 changes: 38 additions & 0 deletions boilingcore/output_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,44 @@ func TestFormatBuffer(t *testing.T) {
}
}

func TestFormatBufferWithUnusedImports(t *testing.T) {
t.Parallel()

src := `
package main

import (
"fmt"
"os"
"strings"
)

func main() {
fmt.Println("Hello, World!")
}
`

buf := &bytes.Buffer{}
fmt.Fprint(buf, src)

got, err := formatBuffer(buf)
if err != nil {
t.Error(err)
}

// expect strings import to be removed
var importsToBeRemoved = []string{"os", "strings"}
for _, imp := range importsToBeRemoved {
if strings.Contains(string(got), imp) {
t.Errorf("import %s should be removed", imp)
}
}

if !strings.Contains(string(got), "fmt") {
t.Error("fmt import should be present")
}
}

func TestOutputFilenameParts(t *testing.T) {
t.Parallel()

Expand Down
5 changes: 5 additions & 0 deletions testdata/psql_test_schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -455,3 +455,8 @@ CREATE TABLE "User" (

PRIMARY KEY ("id")
);

-- Create view that joins jets and pilots
-- https://github.com/volatiletech/sqlboiler/issues/1279
CREATE OR REPLACE VIEW jets_pilots AS SELECT jets.id AS jet_id, jets.name as name, pilots.name AS pilot_name FROM jets AS jets LEFT JOIN pilots AS pilots ON pilots.id=jets.pilot_id;