staff_test.go 782 B

123456789101112131415161718192021222324252627282930
  1. package archive
  2. import (
  3. "context"
  4. "fmt"
  5. xsql "go-common/library/database/sql"
  6. "reflect"
  7. "testing"
  8. "github.com/bouk/monkey"
  9. "github.com/smartystreets/goconvey/convey"
  10. )
  11. func TestStaff(t *testing.T) {
  12. convey.Convey("RawStaff", t, func(ctx convey.C) {
  13. var (
  14. c = context.Background()
  15. )
  16. ctx.Convey("When everything gose positive", func(ctx convey.C) {
  17. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.db), "Query", func(_ *xsql.DB, _ context.Context, _ string, _ ...interface{}) (*xsql.Rows, error) {
  18. return nil, fmt.Errorf("db.Query error")
  19. })
  20. defer guard.Unpatch()
  21. _, err := d.RawStaffData(c, 10110195)
  22. ctx.Convey("Then err should be nil.bizs should not be nil.", func(ctx convey.C) {
  23. ctx.So(err, convey.ShouldNotBeNil)
  24. })
  25. })
  26. })
  27. }