archive_stat_test.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. "go-common/app/interface/main/growup/model"
  7. "go-common/library/net/metadata"
  8. )
  9. func TestDaoArticleStat(t *testing.T) {
  10. convey.Convey("ArticleStat", t, func(ctx convey.C) {
  11. var (
  12. c = context.Background()
  13. mid = int64(1001)
  14. ip = metadata.String(c, metadata.RemoteIP)
  15. )
  16. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  17. _, err := d.ArticleStat(c, mid, ip)
  18. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  19. ctx.So(err, convey.ShouldNotBeNil)
  20. })
  21. })
  22. })
  23. }
  24. func TestDaogetUpBaseStatCache(t *testing.T) {
  25. convey.Convey("getUpBaseStatCache", t, func(ctx convey.C) {
  26. var (
  27. c = context.Background()
  28. mid = int64(1001)
  29. date = "2018-01-01"
  30. )
  31. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  32. _, err := d.getUpBaseStatCache(c, mid, date)
  33. ctx.Convey("Then err should be nil.data should not be nil.", func(ctx convey.C) {
  34. ctx.So(err, convey.ShouldNotBeNil)
  35. })
  36. })
  37. })
  38. }
  39. func TestDaosetUpBaseStatCache(t *testing.T) {
  40. convey.Convey("setUpBaseStatCache", t, func(ctx convey.C) {
  41. var (
  42. c = context.Background()
  43. mid = int64(1001)
  44. date = "2018-01-01"
  45. st = &model.UpBaseStat{}
  46. )
  47. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  48. err := d.setUpBaseStatCache(c, mid, date, st)
  49. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  50. ctx.So(err, convey.ShouldNotBeNil)
  51. })
  52. })
  53. })
  54. }
  55. func TestDaoUpStat(t *testing.T) {
  56. convey.Convey("UpStat", t, func(ctx convey.C) {
  57. var (
  58. c = context.Background()
  59. mid = int64(1001)
  60. dt = "20180101"
  61. )
  62. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  63. _, err := d.UpStat(c, mid, dt)
  64. ctx.Convey("Then err should be nil.st should not be nil.", func(ctx convey.C) {
  65. ctx.So(err, convey.ShouldNotBeNil)
  66. })
  67. })
  68. })
  69. }