workflow_test.go 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. package workflow
  2. import (
  3. "context"
  4. "flag"
  5. "os"
  6. "testing"
  7. "go-common/app/interface/main/reply/conf"
  8. "github.com/smartystreets/goconvey/convey"
  9. )
  10. var (
  11. d *Dao
  12. )
  13. func TestMain(m *testing.M) {
  14. if os.Getenv("DEPLOY_ENV") != "" {
  15. flag.Set("app_id", "main.community.reply")
  16. flag.Set("conf_token", "54e85e3ab609f79ae908b9ea3e3f0775")
  17. flag.Set("tree_id", "2125")
  18. flag.Set("conf_version", "docker-1")
  19. flag.Set("deploy_env", "uat")
  20. flag.Set("conf_host", "config.bilibili.co")
  21. flag.Set("conf_path", "/tmp")
  22. flag.Set("region", "sh")
  23. flag.Set("zone", "sh001")
  24. } else {
  25. flag.Set("conf", "../../cmd/reply-test.toml")
  26. }
  27. flag.Parse()
  28. if err := conf.Init(); err != nil {
  29. panic(err)
  30. }
  31. d = New(conf.Conf)
  32. os.Exit(m.Run())
  33. }
  34. func TestWorkflowNew(t *testing.T) {
  35. convey.Convey("New", t, func(ctx convey.C) {
  36. var (
  37. c = conf.Conf
  38. )
  39. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  40. p1 := New(c)
  41. ctx.Convey("Then p1 should not be nil.", func(ctx convey.C) {
  42. ctx.So(p1, convey.ShouldNotBeNil)
  43. })
  44. })
  45. })
  46. }
  47. func TestWorkflowAddReport(t *testing.T) {
  48. convey.Convey("AddReport", t, func(ctx convey.C) {
  49. var (
  50. c = context.Background()
  51. oid = int64(0)
  52. typ = int8(0)
  53. typeid = int32(0)
  54. rpid = int64(0)
  55. score = int(0)
  56. reason = int8(0)
  57. reporter = int64(0)
  58. reported = int64(0)
  59. like = int(0)
  60. content = ""
  61. link = ""
  62. title = ""
  63. )
  64. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  65. err := d.AddReport(c, oid, typ, typeid, rpid, score, reason, reporter, reported, like, content, link, title)
  66. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  67. ctx.So(err, convey.ShouldNotBeNil)
  68. })
  69. })
  70. })
  71. }
  72. func TestWorkflowTopicsLink(t *testing.T) {
  73. convey.Convey("TopicsLink", t, func(ctx convey.C) {
  74. var (
  75. c = context.Background()
  76. links map[int64]string
  77. isTopic bool
  78. )
  79. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  80. err := d.TopicsLink(c, links, isTopic)
  81. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  82. ctx.So(err, convey.ShouldBeNil)
  83. })
  84. })
  85. })
  86. }
  87. func TestWorkflowActivitySub(t *testing.T) {
  88. convey.Convey("ActivitySub", t, func(ctx convey.C) {
  89. var (
  90. c = context.Background()
  91. oid = int64(0)
  92. )
  93. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  94. title, link, err := d.ActivitySub(c, oid)
  95. ctx.Convey("Then err should be nil.title,link should not be nil.", func(ctx convey.C) {
  96. ctx.So(err, convey.ShouldNotBeNil)
  97. ctx.So(link, convey.ShouldNotBeNil)
  98. ctx.So(title, convey.ShouldNotBeNil)
  99. })
  100. })
  101. })
  102. }
  103. func TestWorkflowLiveNotice(t *testing.T) {
  104. convey.Convey("LiveNotice", t, func(ctx convey.C) {
  105. var (
  106. c = context.Background()
  107. oid = int64(0)
  108. )
  109. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  110. title, err := d.LiveNotice(c, oid)
  111. ctx.Convey("Then err should be nil.title should not be nil.", func(ctx convey.C) {
  112. ctx.So(err, convey.ShouldNotBeNil)
  113. ctx.So(title, convey.ShouldNotBeNil)
  114. })
  115. })
  116. })
  117. }
  118. func TestWorkflowLiveActivityTitle(t *testing.T) {
  119. convey.Convey("LiveActivityTitle", t, func(ctx convey.C) {
  120. var (
  121. c = context.Background()
  122. oid = int64(0)
  123. )
  124. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  125. title, link, err := d.LiveActivityTitle(c, oid)
  126. ctx.Convey("Then err should be nil.title,link should not be nil.", func(ctx convey.C) {
  127. ctx.So(err, convey.ShouldNotBeNil)
  128. ctx.So(link, convey.ShouldNotBeNil)
  129. ctx.So(title, convey.ShouldNotBeNil)
  130. })
  131. })
  132. })
  133. }
  134. func TestWorkflowNoticeTitle(t *testing.T) {
  135. convey.Convey("NoticeTitle", t, func(ctx convey.C) {
  136. var (
  137. c = context.Background()
  138. oid = int64(0)
  139. )
  140. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  141. title, link, _ := d.NoticeTitle(c, oid)
  142. ctx.Convey("Then err should be nil.title,link should not be nil.", func(ctx convey.C) {
  143. ctx.So(link, convey.ShouldNotBeNil)
  144. ctx.So(title, convey.ShouldNotBeNil)
  145. })
  146. })
  147. })
  148. }
  149. func TestWorkflowBanTitle(t *testing.T) {
  150. convey.Convey("BanTitle", t, func(ctx convey.C) {
  151. var (
  152. c = context.Background()
  153. oid = int64(0)
  154. )
  155. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  156. title, link, _ := d.BanTitle(c, oid)
  157. ctx.Convey("Then err should be nil.title,link should not be nil.", func(ctx convey.C) {
  158. ctx.So(link, convey.ShouldNotBeNil)
  159. ctx.So(title, convey.ShouldNotBeNil)
  160. })
  161. })
  162. })
  163. }
  164. func TestWorkflowCreditTitle(t *testing.T) {
  165. convey.Convey("CreditTitle", t, func(ctx convey.C) {
  166. var (
  167. c = context.Background()
  168. oid = int64(0)
  169. )
  170. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  171. title, link, _ := d.CreditTitle(c, oid)
  172. ctx.Convey("Then err should be nil.title,link should not be nil.", func(ctx convey.C) {
  173. ctx.So(link, convey.ShouldNotBeNil)
  174. ctx.So(title, convey.ShouldNotBeNil)
  175. })
  176. })
  177. })
  178. }
  179. func TestWorkflowLiveNoticeTitle(t *testing.T) {
  180. convey.Convey("LiveNoticeTitle", t, func(ctx convey.C) {
  181. var (
  182. c = context.Background()
  183. oid = int64(0)
  184. )
  185. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  186. title, link, err := d.LiveNoticeTitle(c, oid)
  187. ctx.Convey("Then err should be nil.title,link should not be nil.", func(ctx convey.C) {
  188. ctx.So(err, convey.ShouldNotBeNil)
  189. ctx.So(link, convey.ShouldNotBeNil)
  190. ctx.So(title, convey.ShouldNotBeNil)
  191. })
  192. })
  193. })
  194. }
  195. func TestWorkflowLivePictureTitle(t *testing.T) {
  196. convey.Convey("LivePictureTitle", t, func(ctx convey.C) {
  197. var (
  198. c = context.Background()
  199. oid = int64(0)
  200. )
  201. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  202. title, link, err := d.LivePictureTitle(c, oid)
  203. ctx.Convey("Then err should be nil.title,link should not be nil.", func(ctx convey.C) {
  204. ctx.So(err, convey.ShouldNotBeNil)
  205. ctx.So(link, convey.ShouldNotBeNil)
  206. ctx.So(title, convey.ShouldNotBeNil)
  207. })
  208. })
  209. })
  210. }
  211. func TestWorkflowDynamicTitle(t *testing.T) {
  212. convey.Convey("DynamicTitle", t, func(ctx convey.C) {
  213. var (
  214. c = context.Background()
  215. oid = int64(0)
  216. )
  217. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  218. title, link, err := d.DynamicTitle(c, oid)
  219. ctx.Convey("Then err should be nil.title,link should not be nil.", func(ctx convey.C) {
  220. ctx.So(err, convey.ShouldNotBeNil)
  221. ctx.So(link, convey.ShouldNotBeNil)
  222. ctx.So(title, convey.ShouldNotBeNil)
  223. })
  224. })
  225. })
  226. }
  227. func TestWorkflowHuoniaoTitle(t *testing.T) {
  228. convey.Convey("HuoniaoTitle", t, func(ctx convey.C) {
  229. var (
  230. c = context.Background()
  231. oid = int64(0)
  232. )
  233. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  234. title, link, err := d.HuoniaoTitle(c, oid)
  235. ctx.Convey("Then err should be nil.title,link should not be nil.", func(ctx convey.C) {
  236. ctx.So(err, convey.ShouldNotBeNil)
  237. ctx.So(link, convey.ShouldNotBeNil)
  238. ctx.So(title, convey.ShouldNotBeNil)
  239. })
  240. })
  241. })
  242. }