alert_test.go 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. package service
  2. import (
  3. "context"
  4. "testing"
  5. "go-common/app/interface/openplatform/monitor-end/model"
  6. "go-common/app/interface/openplatform/monitor-end/model/monitor"
  7. . "github.com/smartystreets/goconvey/convey"
  8. )
  9. var (
  10. testGroup = &model.Group{
  11. Name: "test",
  12. Receivers: "lalalal",
  13. Interval: 30,
  14. }
  15. tmpGroup, tmpGroup2 *model.Group
  16. )
  17. // TestAddGroup .
  18. func TestAddGroup(t *testing.T) {
  19. c := context.Background()
  20. Convey("add group ", t, func() {
  21. id, err := svr.AddGroup(c, testGroup)
  22. So(err, ShouldBeNil)
  23. tmpGroup, err = svr.dao.Group(c, id)
  24. So(err, ShouldBeNil)
  25. testGroup.Name = "hahaha"
  26. id, err = svr.AddGroup(c, testGroup)
  27. So(err, ShouldBeNil)
  28. tmpGroup2, err = svr.dao.Group(c, id)
  29. So(err, ShouldBeNil)
  30. })
  31. Convey("add group again with duplicate name", t, func() {
  32. _, err := svr.AddGroup(c, testGroup)
  33. So(err, ShouldNotBeNil)
  34. })
  35. }
  36. // TestUpdateGroup .
  37. func TestUpdateGroup(t *testing.T) {
  38. c := context.Background()
  39. Convey("update group ", t, func() {
  40. tmpGroup.Name = "huhuhu"
  41. err := svr.UpdateGroup(c, tmpGroup)
  42. So(err, ShouldBeNil)
  43. })
  44. Convey("update group again with duplicate name", t, func() {
  45. tmpGroup2.Name = "huhuhu"
  46. err := svr.UpdateGroup(c, tmpGroup2)
  47. So(err, ShouldNotBeNil)
  48. })
  49. }
  50. // TestGroupList .
  51. func TestGroupList(t *testing.T) {
  52. c := context.Background()
  53. Convey("group list", t, func() {
  54. _, err := svr.GroupList(c, nil)
  55. So(err, ShouldBeNil)
  56. })
  57. }
  58. // TestDeleteGroup .
  59. func TestDeleteGroup(t *testing.T) {
  60. c := context.Background()
  61. Convey("delete group", t, func() {
  62. err := svr.DeleteGroup(c, tmpGroup.ID)
  63. So(err, ShouldBeNil)
  64. err = svr.DeleteGroup(c, tmpGroup2.ID)
  65. So(err, ShouldBeNil)
  66. })
  67. }
  68. var (
  69. testTarget = &model.Target{
  70. SubEvent: "mall.bilibili.com/home",
  71. Event: "test",
  72. Product: "test",
  73. Source: "test",
  74. GroupIDs: "1,2,3",
  75. Threshold: 4,
  76. Duration: 5,
  77. }
  78. tmpTarget, tmpTarget2 *model.Target
  79. )
  80. // TestAddTarget .
  81. func TestAddTarget(t *testing.T) {
  82. c := context.Background()
  83. Convey("add target ", t, func() {
  84. id, err := svr.AddTarget(c, testTarget)
  85. So(err, ShouldBeNil)
  86. tmpTarget, err = svr.dao.Target(c, id)
  87. So(err, ShouldBeNil)
  88. testTarget.Product = "tttt"
  89. id, err = svr.AddTarget(c, testTarget)
  90. So(err, ShouldBeNil)
  91. tmpTarget2, err = svr.dao.Target(c, id)
  92. So(err, ShouldBeNil)
  93. })
  94. Convey("add Target again with duplicate name", t, func() {
  95. _, err := svr.AddTarget(c, testTarget)
  96. So(err, ShouldNotBeNil)
  97. })
  98. }
  99. // TestUpdateTarget .
  100. func TestUpdateTarget(t *testing.T) {
  101. c := context.Background()
  102. Convey("update Target ", t, func() {
  103. tmpTarget.Product = "xxxx"
  104. err := svr.UpdateTarget(c, tmpTarget)
  105. So(err, ShouldBeNil)
  106. })
  107. Convey("update Target again with duplicate name", t, func() {
  108. tmpTarget2.Product = "xxxx"
  109. err := svr.UpdateTarget(c, tmpTarget2)
  110. So(err, ShouldNotBeNil)
  111. })
  112. }
  113. // TestTargetList .
  114. func TestTargetList(t *testing.T) {
  115. c := context.Background()
  116. Convey("Target list", t, func() {
  117. t := &model.Target{}
  118. _, err := svr.TargetList(c, t, 1, 2, "mtime,0")
  119. So(err, ShouldBeNil)
  120. })
  121. }
  122. // TestTargetSync .
  123. func TestTargetSync(t *testing.T) {
  124. c := context.Background()
  125. Convey("sync Target", t, func() {
  126. err := svr.TargetSync(c, tmpTarget.ID, 1)
  127. So(err, ShouldBeNil)
  128. err = svr.TargetSync(c, tmpTarget2.ID, 1)
  129. So(err, ShouldBeNil)
  130. })
  131. }
  132. // TestDeleteTarget .
  133. func TestDeleteTarget(t *testing.T) {
  134. c := context.Background()
  135. Convey("delete Target", t, func() {
  136. err := svr.DeleteTarget(c, tmpTarget.ID)
  137. So(err, ShouldBeNil)
  138. err = svr.DeleteTarget(c, tmpTarget2.ID)
  139. So(err, ShouldBeNil)
  140. })
  141. }
  142. var (
  143. testProduct = &model.Product{
  144. Name: "test",
  145. GroupIDs: "1,2",
  146. State: 1,
  147. }
  148. tmpProduct, tmpProduct2 *model.Product
  149. )
  150. // TestAddProduct .
  151. func TestAddProduct(t *testing.T) {
  152. c := context.Background()
  153. Convey("add product ", t, func() {
  154. id, err := svr.AddProduct(c, testProduct)
  155. So(err, ShouldBeNil)
  156. tmpProduct, err = svr.dao.Product(c, id)
  157. So(err, ShouldBeNil)
  158. testProduct.Name = "hahaha"
  159. id, err = svr.AddProduct(c, testProduct)
  160. So(err, ShouldBeNil)
  161. tmpProduct2, err = svr.dao.Product(c, id)
  162. So(err, ShouldBeNil)
  163. })
  164. Convey("add product again with duplicate name", t, func() {
  165. _, err := svr.AddProduct(c, testProduct)
  166. So(err, ShouldNotBeNil)
  167. })
  168. }
  169. // TestUpdateProduct .
  170. func TestUpdateProduct(t *testing.T) {
  171. c := context.Background()
  172. Convey("update product ", t, func() {
  173. tmpProduct.Name = "huhuhu"
  174. err := svr.UpdateProduct(c, tmpProduct)
  175. So(err, ShouldBeNil)
  176. })
  177. Convey("update Product again with duplicate name", t, func() {
  178. tmpProduct2.Name = "huhuhu"
  179. err := svr.UpdateProduct(c, tmpProduct2)
  180. So(err, ShouldNotBeNil)
  181. })
  182. }
  183. // TestAllProducts .
  184. func TestAllProducts(t *testing.T) {
  185. c := context.Background()
  186. Convey("all products", t, func() {
  187. _, err := svr.AllProducts(c)
  188. So(err, ShouldBeNil)
  189. })
  190. }
  191. // TestDeleteProduct .
  192. func TestDeleteProduct(t *testing.T) {
  193. c := context.Background()
  194. Convey("delete product", t, func() {
  195. err := svr.DeleteProduct(c, tmpProduct.ID)
  196. So(err, ShouldBeNil)
  197. err = svr.DeleteProduct(c, tmpProduct2.ID)
  198. So(err, ShouldBeNil)
  199. })
  200. }
  201. var (
  202. testCollect = &monitor.Log{
  203. SubEvent: "aaa",
  204. Event: "bbb",
  205. Product: "bbb",
  206. ExtJSON: "xxx",
  207. HTTPCode: "404",
  208. }
  209. )
  210. // TestCollect .
  211. func TestCollect(t *testing.T) {
  212. c := context.Background()
  213. Convey("test collect", t, func() {
  214. svr.Collect(c, testCollect)
  215. })
  216. }