relation_test.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package relation
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "strings"
  7. "testing"
  8. "go-common/app/interface/main/account/conf"
  9. bm "go-common/library/net/http/blademaster"
  10. "github.com/smartystreets/goconvey/convey"
  11. "gopkg.in/h2non/gock.v1"
  12. )
  13. var (
  14. d *Dao
  15. )
  16. func httpMock(method, url string) *gock.Request {
  17. r := gock.New(url)
  18. r.Method = strings.ToUpper(method)
  19. return r
  20. }
  21. func TestMain(m *testing.M) {
  22. if os.Getenv("DEPLOY_ENV") != "" {
  23. flag.Set("app_id", "main.account.account-interface")
  24. flag.Set("conf_token", "967eef77ad40b478234f11b0d489d6d6")
  25. flag.Set("tree_id", "3815")
  26. flag.Set("conf_version", "docker-1")
  27. flag.Set("deploy_env", "uat")
  28. flag.Set("conf_host", "config.bilibili.co")
  29. flag.Set("conf_path", "/tmp")
  30. flag.Set("region", "sh")
  31. flag.Set("zone", "sh001")
  32. } else {
  33. flag.Set("conf", "../../cmd/account-interface-example.toml")
  34. }
  35. flag.Parse()
  36. if err := conf.Init(); err != nil {
  37. panic(err)
  38. }
  39. d = New(conf.Conf)
  40. d.httpClient.SetTransport(gock.DefaultTransport)
  41. m.Run()
  42. os.Exit(0)
  43. }
  44. func TestRelationpaltform(t *testing.T) {
  45. var (
  46. device = &bm.Device{}
  47. )
  48. convey.Convey("paltform", t, func(ctx convey.C) {
  49. p1 := paltform(device)
  50. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  51. ctx.So(p1, convey.ShouldNotBeNil)
  52. })
  53. })
  54. }
  55. func TestRelationbuvid(t *testing.T) {
  56. var (
  57. device = &bm.Device{}
  58. )
  59. convey.Convey("buvid", t, func(ctx convey.C) {
  60. p1 := buvid(device)
  61. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  62. ctx.So(p1, convey.ShouldNotBeNil)
  63. })
  64. })
  65. }
  66. func TestRelationRecommend(t *testing.T) {
  67. var (
  68. ctx = context.Background()
  69. mid = int64(0)
  70. serviceArea = ""
  71. mainTids = ""
  72. subTids = ""
  73. device = &bm.Device{}
  74. pagesize = int64(0)
  75. ip = ""
  76. )
  77. convey.Convey("Recommend", t, func(c convey.C) {
  78. httpMock("GET", d.recommendURL).Reply(200).JSON(`{"code":0,"message":"0","data":[]}`)
  79. defer gock.OffAll()
  80. p1, err := d.Recommend(ctx, mid, serviceArea, mainTids, subTids, device, pagesize, ip)
  81. c.Convey("Then err should be nil.p1 should not be nil.", func(c convey.C) {
  82. c.So(err, convey.ShouldBeNil)
  83. c.So(p1, convey.ShouldNotBeNil)
  84. })
  85. })
  86. }
  87. func TestRelationTagSuggestRecommend(t *testing.T) {
  88. var (
  89. ctx = context.Background()
  90. mid = int64(0)
  91. contextID = ""
  92. tagname = ""
  93. device = &bm.Device{}
  94. pagesize = int64(0)
  95. ip = ""
  96. )
  97. convey.Convey("TagSuggestRecommend", t, func(c convey.C) {
  98. httpMock("GET", d.recommendURL).Reply(200).JSON(`{"code":0,"message":"0","data":[]}`)
  99. defer gock.OffAll()
  100. p1, err := d.TagSuggestRecommend(ctx, mid, contextID, tagname, device, pagesize, ip)
  101. c.Convey("Then err should be nil.p1 should not be nil.", func(c convey.C) {
  102. c.So(err, convey.ShouldBeNil)
  103. c.So(p1, convey.ShouldNotBeNil)
  104. })
  105. })
  106. }