databus_test.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoPlay(t *testing.T) {
  8. convey.Convey("Play", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. plat = ""
  12. aid = ""
  13. cid = ""
  14. part = ""
  15. mid = ""
  16. level = ""
  17. ftime = ""
  18. stime = ""
  19. did = ""
  20. ip = ""
  21. agent = ""
  22. buvid = ""
  23. cookieSid = ""
  24. refer = ""
  25. typeID = ""
  26. subType = ""
  27. sid = ""
  28. epid = ""
  29. playMode = ""
  30. platform = ""
  31. device = ""
  32. mobiAapp = ""
  33. autoPlay = ""
  34. session = ""
  35. )
  36. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  37. ctx.Convey("No return values", func(ctx convey.C) {
  38. d.Play(c, plat, aid, cid, part, mid, level, ftime, stime, did, ip, agent, buvid, cookieSid, refer, typeID, subType, sid, epid, playMode, platform, device, mobiAapp, autoPlay, session)
  39. ctx.SkipSo(" 丹丹让这么写的")
  40. })
  41. })
  42. })
  43. }
  44. func TestDaopubproc(t *testing.T) {
  45. convey.Convey("pubproc", t, func(ctx convey.C) {
  46. ctx.Convey("No return values", func(ctx convey.C) {
  47. d.pubproc()
  48. ctx.SkipSo(" 丹丹让这么写的")
  49. })
  50. })
  51. }
  52. func TestDaomergePub(t *testing.T) {
  53. var (
  54. ms = [][]byte{}
  55. )
  56. for i := 0; i < 100; i++ {
  57. var tt = []byte{}
  58. for j := 0; j < 100; j++ {
  59. tt = append(tt, []byte("1")...)
  60. }
  61. ms = append(ms, tt)
  62. }
  63. convey.Convey("mergePub", t, func(ctx convey.C) {
  64. ctx.Convey("No return values", func(ctx convey.C) {
  65. d.mergePub(ms)
  66. ctx.SkipSo(" 丹丹让这么写的")
  67. })
  68. })
  69. }