36 lines
990 B
Go
36 lines
990 B
Go
package dao
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
|
|
xsql "go-common/library/database/sql"
|
|
|
|
"github.com/bouk/monkey"
|
|
"github.com/smartystreets/goconvey/convey"
|
|
)
|
|
|
|
func TestRoles(t *testing.T) {
|
|
convey.Convey("Roles", t, func(ctx convey.C) {
|
|
ctx.Convey("When everything is correct", func(ctx convey.C) {
|
|
res, err := d.Roles(context.Background())
|
|
ctx.Convey("Error should be nil, res should not be empty", func(ctx convey.C) {
|
|
ctx.So(err, convey.ShouldBeNil)
|
|
ctx.So(res, convey.ShouldNotBeEmpty)
|
|
})
|
|
})
|
|
ctx.Convey("When db.Query gets error", func(ctx convey.C) {
|
|
guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.db), "Query", func(_ *xsql.DB, _ context.Context, _ string, _ ...interface{}) (*xsql.Rows, error) {
|
|
return nil, fmt.Errorf("db.Query error")
|
|
})
|
|
defer guard.Unpatch()
|
|
_, err := d.Roles(context.Background())
|
|
ctx.Convey("Error should not be nil", func(ctx convey.C) {
|
|
ctx.So(err, convey.ShouldNotBeNil)
|
|
})
|
|
})
|
|
})
|
|
}
|