template_test.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package template
  2. import (
  3. "context"
  4. "go-common/app/interface/main/creative/model/template"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. )
  8. func TestTemplatetemplates(t *testing.T) {
  9. var (
  10. c = context.TODO()
  11. mid = int64(2089809)
  12. )
  13. convey.Convey("templates", t, func(ctx convey.C) {
  14. tps, err := d.templates(c, mid)
  15. ctx.Convey("Then err should be nil.tps should not be nil.", func(ctx convey.C) {
  16. ctx.So(err, convey.ShouldBeNil)
  17. ctx.So(tps, convey.ShouldNotBeNil)
  18. })
  19. })
  20. }
  21. func TestTemplateTemplate(t *testing.T) {
  22. var (
  23. c = context.TODO()
  24. id = int64(1)
  25. mid = int64(2089809)
  26. )
  27. convey.Convey("Template", t, func(ctx convey.C) {
  28. no, err := d.Template(c, id, mid)
  29. ctx.Convey("Then err should be nil.no should not be nil.", func(ctx convey.C) {
  30. ctx.So(err, convey.ShouldBeNil)
  31. ctx.So(no, convey.ShouldBeNil)
  32. })
  33. })
  34. }
  35. func TestTemplateTemplates(t *testing.T) {
  36. var (
  37. c = context.TODO()
  38. mid = int64(2089809)
  39. )
  40. convey.Convey("Templates", t, func(ctx convey.C) {
  41. tps, err := d.Templates(c, mid)
  42. ctx.Convey("Then err should be nil.tps should not be nil.", func(ctx convey.C) {
  43. ctx.So(err, convey.ShouldBeNil)
  44. ctx.So(tps, convey.ShouldNotBeNil)
  45. })
  46. })
  47. }
  48. func TestTemplateAddTemplate(t *testing.T) {
  49. var (
  50. c = context.TODO()
  51. mid = int64(2089809)
  52. tp = &template.Template{}
  53. )
  54. convey.Convey("AddTemplate", t, func(ctx convey.C) {
  55. id, err := d.AddTemplate(c, mid, tp)
  56. ctx.Convey("Then err should be nil.id should not be nil.", func(ctx convey.C) {
  57. ctx.So(err, convey.ShouldBeNil)
  58. ctx.So(id, convey.ShouldNotBeNil)
  59. })
  60. })
  61. }
  62. func TestTemplateUpTemplate(t *testing.T) {
  63. var (
  64. c = context.TODO()
  65. mid = int64(2089809)
  66. tp = &template.Template{}
  67. )
  68. convey.Convey("UpTemplate", t, func(ctx convey.C) {
  69. rows, err := d.UpTemplate(c, mid, tp)
  70. ctx.Convey("Then err should be nil.rows should not be nil.", func(ctx convey.C) {
  71. ctx.So(err, convey.ShouldBeNil)
  72. ctx.So(rows, convey.ShouldNotBeNil)
  73. })
  74. })
  75. }
  76. func TestTemplateDelTemplate(t *testing.T) {
  77. var (
  78. c = context.TODO()
  79. mid = int64(2089809)
  80. tp = &template.Template{}
  81. )
  82. convey.Convey("DelTemplate", t, func(ctx convey.C) {
  83. rows, err := d.DelTemplate(c, mid, tp)
  84. ctx.Convey("Then err should be nil.rows should not be nil.", func(ctx convey.C) {
  85. ctx.So(err, convey.ShouldBeNil)
  86. ctx.So(rows, convey.ShouldNotBeNil)
  87. })
  88. })
  89. }
  90. func TestTemplateCount(t *testing.T) {
  91. var (
  92. c = context.TODO()
  93. mid = int64(2089809)
  94. )
  95. convey.Convey("Count", t, func(ctx convey.C) {
  96. count, err := d.Count(c, mid)
  97. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  98. ctx.So(err, convey.ShouldBeNil)
  99. ctx.So(count, convey.ShouldNotBeNil)
  100. })
  101. })
  102. }