dmpost_test.go 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "time"
  6. "go-common/app/interface/main/dm2/model"
  7. "go-common/library/ecode"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. func TestGenDMID(t *testing.T) {
  11. dm := &model.DM{
  12. Progress: 0,
  13. Pool: 0,
  14. State: 0,
  15. Mid: 1001,
  16. Content: &model.Content{
  17. Msg: "dm msg test",
  18. Mode: 1,
  19. FontSize: 25,
  20. Color: 165000,
  21. IP: 100097834,
  22. },
  23. }
  24. time.Sleep(time.Second * 1)
  25. Convey("err should be nil", t, func() {
  26. err := svr.genDMID(context.Background(), dm)
  27. t.Logf("dmid:%v", dm.ID)
  28. So(err, ShouldBeNil)
  29. })
  30. }
  31. func TestPost(t *testing.T) {
  32. dm := &model.DM{
  33. ID: 1234,
  34. Type: 1,
  35. Oid: 1221,
  36. Progress: 0,
  37. Pool: 0,
  38. State: 0,
  39. Mid: 1001,
  40. Content: &model.Content{
  41. ID: 1234,
  42. Msg: "dm msg test",
  43. Mode: 1,
  44. FontSize: 25,
  45. Color: 165000,
  46. IP: 100097834,
  47. },
  48. }
  49. time.Sleep(time.Second * 1)
  50. Convey("check dm post", t, func() {
  51. err := svr.Post(context.TODO(), dm, 1234, 456)
  52. So(err, ShouldBeNil)
  53. })
  54. }
  55. func TestCheckOversea(t *testing.T) {
  56. time.Sleep(time.Second * 1)
  57. Convey("check oversea user", t, func() {
  58. err := svr.checkOverseasUser(context.TODO())
  59. So(err, ShouldEqual, ecode.ServiceUpdate)
  60. })
  61. }
  62. func TestCheckMonitor(t *testing.T) {
  63. dm := &model.DM{
  64. ID: 1234,
  65. Oid: 1221,
  66. Progress: 0,
  67. Pool: 0,
  68. State: 0,
  69. Mid: 1001,
  70. Content: &model.Content{
  71. ID: 1234,
  72. Msg: "dm msg test",
  73. Mode: 1,
  74. FontSize: 25,
  75. Color: 165000,
  76. IP: 100097834,
  77. },
  78. }
  79. sub := &model.Subject{
  80. Type: 1,
  81. Oid: 1221,
  82. State: 0,
  83. Attr: 16,
  84. }
  85. Convey("check monitor type before", t, func() {
  86. err := svr.checkMonitor(context.TODO(), sub, dm)
  87. So(err, ShouldBeNil)
  88. So(dm.State, ShouldEqual, model.StateMonitorBefore)
  89. })
  90. dm.State = 0
  91. sub.Attr = 32
  92. Convey("check monitor type after", t, func() {
  93. err := svr.checkMonitor(context.TODO(), sub, dm)
  94. So(err, ShouldBeNil)
  95. So(dm.State, ShouldEqual, model.StateMonitorAfter)
  96. })
  97. }
  98. func TestCheckUpFilter(t *testing.T) {
  99. dm := &model.DM{
  100. ID: 1234,
  101. Oid: 1,
  102. Progress: 0,
  103. Pool: 0,
  104. State: 0,
  105. Mid: 1001,
  106. Content: &model.Content{
  107. ID: 1234,
  108. Msg: `[0,0,"1-1",4.5,"adsfasdf",0,0,0,0,500,0,true,"黑体",1]`,
  109. Mode: 7,
  110. FontSize: 25,
  111. Color: 165000,
  112. IP: 100097834,
  113. },
  114. }
  115. Convey("test up filter", t, func() {
  116. svr.checkUpFilter(context.TODO(), dm, 1, 2)
  117. })
  118. }