Fix linter complaints

pull/2/head
Vinícius Garcia 2020-10-20 21:19:57 -03:00
parent 5822e23de4
commit 335c30154d
3 changed files with 20 additions and 19 deletions

View File

@ -5,11 +5,11 @@ import (
"fmt" "fmt"
) )
// EntityNotFoundErr ... // ErrRecordNotFound ...
var EntityNotFoundErr error = fmt.Errorf("kissorm: the query returned no results") var ErrRecordNotFound error = fmt.Errorf("kissorm: the query returned no results")
// AbortIteration ... // ErrAbortIteration ...
var AbortIteration error = fmt.Errorf("kissorm: abort iteration, should only be used inside QueryChunks function") var ErrAbortIteration error = fmt.Errorf("kissorm: abort iteration, should only be used inside QueryChunks function")
// ORMProvider describes the public behavior of this ORM // ORMProvider describes the public behavior of this ORM
type ORMProvider interface { type ORMProvider interface {
@ -22,6 +22,7 @@ type ORMProvider interface {
QueryChunks(ctx context.Context, parser ChunkParser) error QueryChunks(ctx context.Context, parser ChunkParser) error
} }
// ChunkParser stores the arguments of the QueryChunks function
type ChunkParser struct { type ChunkParser struct {
// The Query and Params are used together to build a query with // The Query and Params are used together to build a query with
// protection from injection, just like when using the Find function. // protection from injection, just like when using the Find function.

View File

@ -82,7 +82,7 @@ func (c Client) Query(
// the input struct must be passed by reference // the input struct must be passed by reference
// and the query should return only one result. // and the query should return only one result.
// //
// QueryOne returns a EntityNotFoundErr if // QueryOne returns a ErrRecordNotFound if
// the query returns no results. // the query returns no results.
func (c Client) QueryOne( func (c Client) QueryOne(
ctx context.Context, ctx context.Context,
@ -105,7 +105,7 @@ func (c Client) QueryOne(
} }
it = it.Scan(record) it = it.Scan(record)
if it.Error != nil && it.Error.Error() == "record not found" { if it.Error != nil && it.Error.Error() == "record not found" {
return EntityNotFoundErr return ErrRecordNotFound
} }
return it.Error return it.Error
} }
@ -173,7 +173,7 @@ func (c Client) QueryChunks(
sliceRef.Elem().Set(slice) sliceRef.Elem().Set(slice)
err = parser.ForEachChunk() err = parser.ForEachChunk()
if err != nil { if err != nil {
if err == AbortIteration { if err == ErrAbortIteration {
return nil return nil
} }
return err return err
@ -186,7 +186,7 @@ func (c Client) QueryChunks(
sliceRef.Elem().Set(slice.Slice(0, idx)) sliceRef.Elem().Set(slice.Slice(0, idx))
err = parser.ForEachChunk() err = parser.ForEachChunk()
if err != nil { if err != nil {
if err == AbortIteration { if err == ErrAbortIteration {
return nil return nil
} }
return err return err
@ -336,14 +336,14 @@ func getTagNames(t reflect.Type) structInfo {
// The first argument is any struct you are passing to a kissorm func, // The first argument is any struct you are passing to a kissorm func,
// and the second is a map representing a database row you want // and the second is a map representing a database row you want
// to use to update this struct. // to use to update this struct.
func FillStructWith(entity interface{}, dbRow map[string]interface{}) error { func FillStructWith(record interface{}, dbRow map[string]interface{}) error {
v := reflect.ValueOf(entity) v := reflect.ValueOf(record)
t := v.Type() t := v.Type()
if t.Kind() != reflect.Ptr { if t.Kind() != reflect.Ptr {
return fmt.Errorf( return fmt.Errorf(
"FillStructWith: expected input to be a pointer to struct but got %T", "FillStructWith: expected input to be a pointer to struct but got %T",
entity, record,
) )
} }
@ -353,7 +353,7 @@ func FillStructWith(entity interface{}, dbRow map[string]interface{}) error {
if t.Kind() != reflect.Struct { if t.Kind() != reflect.Struct {
return fmt.Errorf( return fmt.Errorf(
"FillStructWith: expected input kind to be a struct but got %T", "FillStructWith: expected input kind to be a struct but got %T",
entity, record,
) )
} }
@ -373,7 +373,7 @@ func FillStructWith(entity interface{}, dbRow map[string]interface{}) error {
"FillStructWith: cannot convert atribute %s of type %v to type %T", "FillStructWith: cannot convert atribute %s of type %v to type %T",
colName, colName,
fieldType, fieldType,
entity, record,
) )
} }
field.Set(attrValue.Convert(fieldType)) field.Set(attrValue.Convert(fieldType))

View File

@ -125,7 +125,7 @@ func TestQueryOne(t *testing.T) {
t.Fatal("could not create test table!") t.Fatal("could not create test table!")
} }
t.Run("should return EntityNotFoundErr when there are no results", func(t *testing.T) { t.Run("should return RecordNotFoundErr when there are no results", func(t *testing.T) {
db := connectDB(t) db := connectDB(t)
defer db.Close() defer db.Close()
@ -136,7 +136,7 @@ func TestQueryOne(t *testing.T) {
} }
u := User{} u := User{}
err := c.QueryOne(ctx, &u, `SELECT * FROM users WHERE id=1;`) err := c.QueryOne(ctx, &u, `SELECT * FROM users WHERE id=1;`)
assert.Equal(t, EntityNotFoundErr, err) assert.Equal(t, ErrRecordNotFound, err)
}) })
t.Run("should return a user correctly", func(t *testing.T) { t.Run("should return a user correctly", func(t *testing.T) {
@ -573,7 +573,7 @@ func TestQueryChunks(t *testing.T) {
assert.Equal(t, []int{2, 1}, lengths) assert.Equal(t, []int{2, 1}, lengths)
}) })
t.Run("should abort the first iteration when the callback returns an AbortIteration", func(t *testing.T) { t.Run("should abort the first iteration when the callback returns an ErrAbortIteration", func(t *testing.T) {
err := createTable() err := createTable()
if err != nil { if err != nil {
t.Fatal("could not create test table!") t.Fatal("could not create test table!")
@ -604,7 +604,7 @@ func TestQueryChunks(t *testing.T) {
ForEachChunk: func() error { ForEachChunk: func() error {
lengths = append(lengths, len(buffer)) lengths = append(lengths, len(buffer))
users = append(users, buffer...) users = append(users, buffer...)
return AbortIteration return ErrAbortIteration
}, },
}) })
@ -617,7 +617,7 @@ func TestQueryChunks(t *testing.T) {
assert.Equal(t, []int{2}, lengths) assert.Equal(t, []int{2}, lengths)
}) })
t.Run("should abort the last iteration when the callback returns an AbortIteration", func(t *testing.T) { t.Run("should abort the last iteration when the callback returns an ErrAbortIteration", func(t *testing.T) {
err := createTable() err := createTable()
if err != nil { if err != nil {
t.Fatal("could not create test table!") t.Fatal("could not create test table!")
@ -636,7 +636,7 @@ func TestQueryChunks(t *testing.T) {
_ = c.Insert(ctx, &User{Name: "User2"}) _ = c.Insert(ctx, &User{Name: "User2"})
_ = c.Insert(ctx, &User{Name: "User3"}) _ = c.Insert(ctx, &User{Name: "User3"})
returnVals := []error{nil, AbortIteration} returnVals := []error{nil, ErrAbortIteration}
var lengths []int var lengths []int
var users []User var users []User
var buffer []User var buffer []User