load_upper_test.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package upper
  2. import (
  3. "context"
  4. upMdl "go-common/app/interface/main/tv/model/upper"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestUpperupperMetaKey(t *testing.T) {
  9. var (
  10. MID = int64(0)
  11. )
  12. convey.Convey("upperMetaKey", t, func(c convey.C) {
  13. p1 := upperMetaKey(MID)
  14. c.Convey("Then p1 should not be nil.", func(c convey.C) {
  15. c.So(p1, convey.ShouldNotBeNil)
  16. })
  17. })
  18. }
  19. func TestUpperLoadUpMeta(t *testing.T) {
  20. var (
  21. ctx = context.Background()
  22. mid = int64(0)
  23. )
  24. convey.Convey("LoadUpMeta", t, func(c convey.C) {
  25. upper, err := d.LoadUpMeta(ctx, mid)
  26. c.Convey("Then err should be nil.upper should not be nil.", func(c convey.C) {
  27. c.So(err, convey.ShouldBeNil)
  28. c.So(upper, convey.ShouldNotBeNil)
  29. })
  30. })
  31. }
  32. func TestUpperupMetaCache(t *testing.T) {
  33. var (
  34. ctx = context.Background()
  35. mid = int64(0)
  36. )
  37. convey.Convey("upMetaCache", t, func(c convey.C) {
  38. upper, err := d.upMetaCache(ctx, mid)
  39. c.Convey("Then err should be nil.upper should not be nil.", func(c convey.C) {
  40. c.So(err, convey.ShouldBeNil)
  41. c.So(upper, convey.ShouldNotBeNil)
  42. })
  43. })
  44. }
  45. func TestUpperupMetaDB(t *testing.T) {
  46. var (
  47. ctx = context.Background()
  48. mid = int64(0)
  49. )
  50. convey.Convey("upMetaDB", t, func(c convey.C) {
  51. upper, err := d.upMetaDB(ctx, mid)
  52. c.Convey("Then err should be nil.upper should not be nil.", func(c convey.C) {
  53. c.So(err, convey.ShouldBeNil)
  54. c.So(upper, convey.ShouldNotBeNil)
  55. })
  56. })
  57. }
  58. func TestUppersetUpMetaCache(t *testing.T) {
  59. var (
  60. ctx = context.Background()
  61. upper = &upMdl.Upper{}
  62. )
  63. convey.Convey("setUpMetaCache", t, func(c convey.C) {
  64. err := d.setUpMetaCache(ctx, upper)
  65. c.Convey("Then err should be nil.", func(c convey.C) {
  66. c.So(err, convey.ShouldBeNil)
  67. })
  68. })
  69. }
  70. func TestUpperaddUpMetaCache(t *testing.T) {
  71. var (
  72. upper = &upMdl.Upper{}
  73. )
  74. convey.Convey("addUpMetaCache", t, func(c convey.C) {
  75. d.addUpMetaCache(upper)
  76. c.Convey("No return values", func(c convey.C) {
  77. })
  78. })
  79. }