dao_test.go 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package porder
  2. import (
  3. "context"
  4. "encoding/json"
  5. "flag"
  6. "go-common/app/interface/main/creative/conf"
  7. "go-common/app/interface/main/creative/model/porder"
  8. "os"
  9. "strings"
  10. "testing"
  11. "github.com/smartystreets/goconvey/convey"
  12. gock "gopkg.in/h2non/gock.v1"
  13. )
  14. var (
  15. d *Dao
  16. )
  17. func TestMain(m *testing.M) {
  18. if os.Getenv("DEPLOY_ENV") != "" {
  19. flag.Set("app_id", "main.archive.creative")
  20. flag.Set("conf_token", "96b6a6c10bb311e894c14a552f48fef8")
  21. flag.Set("tree_id", "2305")
  22. flag.Set("conf_version", "docker-1")
  23. flag.Set("deploy_env", "uat")
  24. flag.Set("conf_host", "config.bilibili.co")
  25. flag.Set("conf_path", "/tmp")
  26. flag.Set("region", "sh")
  27. flag.Set("zone", "sh001")
  28. } else {
  29. flag.Set("conf", "../../cmd/creative.toml")
  30. }
  31. flag.Parse()
  32. if err := conf.Init(); err != nil {
  33. panic(err)
  34. }
  35. d = New(conf.Conf)
  36. m.Run()
  37. os.Exit(0)
  38. }
  39. func httpMock(method, url string) *gock.Request {
  40. r := gock.New(url)
  41. r.Method = strings.ToUpper(method)
  42. d.client.SetTransport(gock.DefaultTransport)
  43. return r
  44. }
  45. func TestListConfig(t *testing.T) {
  46. var (
  47. c = context.TODO()
  48. err error
  49. data = make([]*porder.Config, 0)
  50. res = &struct {
  51. Code int `json:"code"`
  52. Cfgs []*porder.Config `json:"data"`
  53. }{}
  54. )
  55. convey.Convey("1", t, func(ctx convey.C) {
  56. defer gock.OffAll()
  57. httpMock("Get", d.porderConfigURL).Reply(-502)
  58. data, err = d.ListConfig(c)
  59. ctx.Convey("1", func(ctx convey.C) {
  60. ctx.So(err, convey.ShouldNotBeNil)
  61. ctx.So(data, convey.ShouldBeNil)
  62. })
  63. })
  64. convey.Convey("2", t, func(ctx convey.C) {
  65. defer gock.OffAll()
  66. js, _ := json.Marshal(res)
  67. httpMock("Get", d.porderConfigURL).Reply(200).JSON(string(js))
  68. data, err = d.ListConfig(c)
  69. ctx.Convey("2", func(ctx convey.C) {
  70. ctx.So(err, convey.ShouldBeNil)
  71. ctx.So(data, convey.ShouldBeNil)
  72. })
  73. })
  74. convey.Convey("3", t, func(ctx convey.C) {
  75. defer gock.OffAll()
  76. res.Code = 20001
  77. js, _ := json.Marshal(res)
  78. httpMock("Get", d.porderConfigURL).Reply(200).JSON(string(js))
  79. data, err = d.ListConfig(c)
  80. ctx.Convey("3", func(ctx convey.C) {
  81. ctx.So(err, convey.ShouldNotBeNil)
  82. ctx.So(data, convey.ShouldBeNil)
  83. })
  84. })
  85. }