notice_test.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoLatestNotice(t *testing.T) {
  8. convey.Convey("LatestNotice", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. platform = int(1)
  12. )
  13. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  14. Exec(c, "INSERT INTO notice(status, platform, title, type) VALUES(1, 3, 'test', 0)")
  15. n, err := d.LatestNotice(c, platform)
  16. ctx.Convey("Then err should be nil.n should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. ctx.So(n, convey.ShouldNotBeNil)
  19. })
  20. })
  21. })
  22. }
  23. func TestDaoNotices(t *testing.T) {
  24. convey.Convey("Notices", t, func(ctx convey.C) {
  25. var (
  26. c = context.Background()
  27. typ = ""
  28. platform = int(3)
  29. offset = int(0)
  30. limit = int(100)
  31. )
  32. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  33. Exec(c, "INSERT INTO notice(status, platform, title, type) VALUES(1, 3, 'test', 0)")
  34. notices, err := d.Notices(c, typ, platform, offset, limit)
  35. ctx.Convey("Then err should be nil.notices should not be nil.", func(ctx convey.C) {
  36. ctx.So(err, convey.ShouldBeNil)
  37. ctx.So(notices, convey.ShouldNotBeNil)
  38. })
  39. })
  40. })
  41. }
  42. func TestDaoNoticeCount(t *testing.T) {
  43. convey.Convey("NoticeCount", t, func(ctx convey.C) {
  44. var (
  45. c = context.Background()
  46. typ = ""
  47. platform = int(3)
  48. )
  49. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  50. Exec(c, "INSERT INTO notice(status, platform, title, type) VALUES(1, 3, 'test', 0)")
  51. count, err := d.NoticeCount(c, typ, platform)
  52. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  53. ctx.So(err, convey.ShouldBeNil)
  54. ctx.So(count, convey.ShouldNotBeNil)
  55. })
  56. })
  57. })
  58. }