Since golint is deprecated we upgraded to staticheck instead

new-query-chunks-api
Vinícius Garcia 2022-04-20 15:35:02 -03:00
parent 1eca192677
commit e5d1de061b
9 changed files with 10 additions and 77 deletions

View File

@ -17,8 +17,8 @@ jobs:
run: go vet ./...
- name: Check go version
run: go version
- name: Run golint
run: go get golang.org/x/lint/golint && bash -c "$(go env GOPATH)/bin/golint -set_exit_status -min_confidence 0.9 ./..."
- name: Run linters
run: go install honnef.co/go/tools/cmd/staticcheck@latest && bash -c "$(go env GOPATH)/bin/staticcheck ./..."
- name: Run Tests
run: ./scripts/run-all-tests.sh
- name: Run Coverage

View File

@ -18,22 +18,22 @@ bench:
@echo "Benchmark executed on commit: $$(git rev-parse HEAD)"
lint: setup
@$(GOBIN)/golint -set_exit_status -min_confidence 0.9 $(path) $(args)
@$(GOBIN)/staticcheck $(path) $(args)
@go vet $(path) $(args)
@make --no-print-directory -C benchmarks
@echo "Golint & Go Vet found no problems on your code!"
@echo "StaticCheck & Go Vet found no problems on your code!"
gen: mock
mock: setup
$(GOBIN)/mockgen -package=exampleservice -source=contracts.go -destination=examples/example_service/mocks.go
setup: $(GOBIN)/richgo $(GOBIN)/golint $(GOBIN)/mockgen
setup: $(GOBIN)/richgo $(GOBIN)/staticcheck $(GOBIN)/mockgen
$(GOBIN)/richgo:
go get github.com/kyoh86/richgo
$(GOBIN)/golint:
go get golang.org/x/lint
$(GOBIN)/staticcheck:
go install honnef.co/go/tools/cmd/staticcheck@latest
$(GOBIN)/mockgen:
@# (Gomock is used on examples/example_service)

View File

@ -2,5 +2,5 @@
GOBIN=$(shell go env GOPATH)/bin
lint:
@$(GOBIN)/golint -set_exit_status -min_confidence 0.9 ./...
@$(GOBIN)/staticcheck ./...
@go vet ./...

View File

@ -495,7 +495,7 @@ func (c DB) insertWithLastInsertID(
if !tID.ConvertibleTo(fieldType) {
return fmt.Errorf(
"Can't convert last insert id of type int64 into field `%s` of type %v",
"can't convert last insert id of type int64 into field `%s` of type %v",
idName,
fieldType,
)

View File

@ -381,11 +381,6 @@ func TestCallFunctionWithRows(t *testing.T) {
})
t.Run("should report error if the input function is invalid", func(t *testing.T) {
type User struct {
Name string `ksql:"name"`
Age int `ksql:"age"`
}
err := CallFunctionWithRows(func() {}, []map[string]interface{}{{
"name": "fake-name1",
"age": 42,

View File

@ -381,11 +381,6 @@ func TestCallFunctionWithRows(t *testing.T) {
})
t.Run("should report error if the input function is invalid", func(t *testing.T) {
type User struct {
Name string `ksql:"name"`
Age int `ksql:"age"`
}
err := CallFunctionWithRows(func() {}, []map[string]interface{}{{
"name": "fake-name1",
"age": 42,

View File

@ -1,14 +0,0 @@
package ksql
import (
"encoding/json"
"fmt"
)
func toJSON(i interface{}) []byte {
rawJSON, err := json.Marshal(i)
if err != nil {
panic(fmt.Sprintf("error marshalling %v during test", i))
}
return rawJSON
}

1
staticcheck.conf Normal file
View File

@ -0,0 +1 @@
checks = ["all","-S1002","-ST1000","-ST1003"]

View File

@ -37,8 +37,6 @@ type address struct {
Country string `json:"country"`
}
var postsTable = NewTable("posts")
type post struct {
ID int `ksql:"id"`
UserID uint `ksql:"user_id"`
@ -1936,7 +1934,6 @@ func QueryChunksTest(
return nil
},
func(missingReturnType []user) {
return
},
func(users []user) string {
return ""
@ -2348,47 +2345,6 @@ func shiftErrSlice(errs *[]error) error {
return err
}
func getUsersByID(db DBAdapter, dialect Dialect, resultsPtr *[]user, ids ...uint) error {
placeholders := make([]string, len(ids))
params := make([]interface{}, len(ids))
for i := range ids {
params[i] = ids[i]
placeholders[i] = dialect.Placeholder(i)
}
results := []user{}
rows, err := db.QueryContext(
context.TODO(),
fmt.Sprintf(
"SELECT id, name, age FROM users WHERE id IN (%s)",
strings.Join(placeholders, ", "),
),
params...,
)
if err != nil {
return err
}
defer rows.Close()
for rows.Next() {
var u user
err = rows.Scan(&u.ID, &u.Name, &u.Age)
if err != nil {
return err
}
results = append(results, u)
}
if rows.Err() != nil {
return rows.Err()
}
if err := rows.Close(); err != nil {
return err
}
*resultsPtr = results
return nil
}
func getUserByID(db DBAdapter, dialect Dialect, result *user, id uint) error {
rows, err := db.QueryContext(context.TODO(), `SELECT id, name, age, address FROM users WHERE id=`+dialect.Placeholder(0), id)
if err != nil {