dao_test.go 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package whitelist
  2. import (
  3. "context"
  4. "flag"
  5. "fmt"
  6. "go-common/app/interface/main/creative/conf"
  7. "go-common/app/interface/main/creative/model/archive"
  8. "go-common/library/database/sql"
  9. "os"
  10. "reflect"
  11. "testing"
  12. "github.com/bouk/monkey"
  13. "github.com/smartystreets/goconvey/convey"
  14. )
  15. var (
  16. d *Dao
  17. )
  18. func TestMain(m *testing.M) {
  19. if os.Getenv("DEPLOY_ENV") != "" {
  20. flag.Set("app_id", "main.archive.creative")
  21. flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
  22. flag.Set("tree_id", "2305")
  23. flag.Set("conf_version", "docker-1")
  24. flag.Set("deploy_env", "uat")
  25. flag.Set("conf_host", "config.bilibili.co")
  26. flag.Set("conf_path", "/tmp")
  27. flag.Set("region", "sh")
  28. flag.Set("zone", "sh001")
  29. } else {
  30. flag.Set("conf", "../../cmd/creative.toml")
  31. }
  32. flag.Parse()
  33. if err := conf.Init(); err != nil {
  34. panic(err)
  35. }
  36. d = New(conf.Conf)
  37. m.Run()
  38. os.Exit(0)
  39. }
  40. func TestList(t *testing.T) {
  41. var (
  42. c = context.TODO()
  43. res []*archive.WhiteList
  44. err error
  45. )
  46. convey.Convey("Ping", t, func(ctx convey.C) {
  47. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.db), "Ping", func(_ *sql.DB, _ context.Context) (err error) {
  48. return nil
  49. })
  50. defer guard.Unpatch()
  51. err = d.Ping(c)
  52. ctx.Convey("Ping", func(ctx convey.C) {
  53. ctx.So(err, convey.ShouldBeNil)
  54. })
  55. })
  56. convey.Convey("2", t, func(ctx convey.C) {
  57. res, err = d.List(c)
  58. ctx.Convey("2", func(ctx convey.C) {
  59. ctx.So(err, convey.ShouldBeNil)
  60. ctx.So(len(res), convey.ShouldBeGreaterThanOrEqualTo, 0)
  61. })
  62. })
  63. convey.Convey("1", t, func(ctx convey.C) {
  64. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.getAllStmt), "Query", func(_ *sql.Stmt, _ context.Context, _ ...interface{}) (rows *sql.Rows, err error) {
  65. return nil, fmt.Errorf("db.Query error")
  66. })
  67. defer guard.Unpatch()
  68. res, err = d.List(c)
  69. ctx.Convey("1", func(ctx convey.C) {
  70. ctx.So(err, convey.ShouldNotBeNil)
  71. ctx.So(len(res), convey.ShouldEqual, 0)
  72. })
  73. })
  74. convey.Convey("Close", t, func(ctx convey.C) {
  75. guard := monkey.PatchInstanceMethod(reflect.TypeOf(d.db), "Close", func(_ *sql.DB) (err error) {
  76. return nil
  77. })
  78. defer guard.Unpatch()
  79. err = d.Close()
  80. ctx.Convey("Close", func(ctx convey.C) {
  81. ctx.So(err, convey.ShouldBeNil)
  82. })
  83. })
  84. }