av_breach_test.go 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoListAvBreach(t *testing.T) {
  8. convey.Convey("ListAvBreach", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. mid = int64(1001)
  12. startTime = "2018-01-01"
  13. endTime = "2019-01-01"
  14. )
  15. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  16. Exec(c, "INSERT INTO av_breach_record(av_id, mid, cdate) VALUES(1000, 1001, '2018-06-01') ON DUPLICATE KEY UPDATE cdate = '2018-06-01'")
  17. records, err := d.ListAvBreach(c, mid, startTime, endTime)
  18. ctx.Convey("Then err should be nil.records should not be nil.", func(ctx convey.C) {
  19. ctx.So(err, convey.ShouldBeNil)
  20. ctx.So(records, convey.ShouldNotBeNil)
  21. })
  22. })
  23. })
  24. }
  25. func TestDaoGetAvBreachByType(t *testing.T) {
  26. convey.Convey("GetAvBreachByType", t, func(ctx convey.C) {
  27. var (
  28. c = context.Background()
  29. mid = int64(1002)
  30. begin = "2018-01-01"
  31. end = "2019-01-01"
  32. typ = []int64{}
  33. )
  34. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  35. Exec(c, "INSERT INTO av_breach_record(av_id, mid, cdate, ctype) VALUES(1001, 1002, '2018-06-01', 0) ON DUPLICATE KEY UPDATE cdate = '2018-06-01', ctype = 0")
  36. rs, err := d.GetAvBreachByType(c, mid, begin, end, typ)
  37. ctx.Convey("Then err should be nil.rs should not be nil.", func(ctx convey.C) {
  38. ctx.So(err, convey.ShouldBeNil)
  39. ctx.So(rs, convey.ShouldNotBeNil)
  40. })
  41. })
  42. })
  43. }
  44. func TestDaoGetAvBreachs(t *testing.T) {
  45. convey.Convey("GetAvBreachs", t, func(ctx convey.C) {
  46. var (
  47. c = context.Background()
  48. avs = []int64{1000}
  49. ctype = int(0)
  50. )
  51. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  52. Exec(c, "INSERT INTO av_breach_record(av_id, mid, cdate, ctype) VALUES(1001, 1002, '2018-06-01', 0) ON DUPLICATE KEY UPDATE cdate = '2018-06-01', ctype = 0")
  53. breachs, err := d.GetAvBreachs(c, avs, ctype)
  54. ctx.Convey("Then err should be nil.breachs should not be nil.", func(ctx convey.C) {
  55. ctx.So(err, convey.ShouldBeNil)
  56. ctx.So(breachs, convey.ShouldNotBeNil)
  57. })
  58. })
  59. })
  60. }