porder_test.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package archive
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/archive"
  5. xsql "go-common/library/database/sql"
  6. "reflect"
  7. "testing"
  8. "github.com/bouk/monkey"
  9. "github.com/smartystreets/goconvey/convey"
  10. gock "gopkg.in/h2non/gock.v1"
  11. )
  12. func TestArchiveFlows(t *testing.T) {
  13. var (
  14. c = context.TODO()
  15. err error
  16. flows []*archive.Flow
  17. )
  18. convey.Convey("Flows", t, func(ctx convey.C) {
  19. defer gock.OffAll()
  20. httpMock("GET", d.simpleArchive).Reply(200).JSON(`{"code":20001}`)
  21. flows, err = d.Flows(c)
  22. ctx.Convey("Then err should be nil.flows should not be nil.", func(ctx convey.C) {
  23. ctx.So(err, convey.ShouldNotBeNil)
  24. ctx.So(flows, convey.ShouldNotBeNil)
  25. })
  26. })
  27. }
  28. func TestArchivePorder(t *testing.T) {
  29. var (
  30. err error
  31. c = context.TODO()
  32. aid = int64(10110560)
  33. res *archive.Porder
  34. )
  35. convey.Convey("Porder", t, func(ctx convey.C) {
  36. ret := &xsql.Row{}
  37. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.db), "QueryRow", func(_ *xsql.DB, _ context.Context, _ string, _ ...interface{}) *xsql.Row {
  38. return ret
  39. })
  40. defer guard.Unpatch()
  41. res, err = d.Porder(c, aid)
  42. ctx.Convey("Then err should be nil.pd should not be nil.", func(ctx convey.C) {
  43. ctx.So(err, convey.ShouldNotBeNil)
  44. ctx.So(res, convey.ShouldNotBeNil)
  45. })
  46. })
  47. }