archive_test.go 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package academy
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestAcademyArchive(t *testing.T) {
  8. convey.Convey("Archive", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. oid = int64(0)
  12. bs = int(0)
  13. )
  14. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  15. a, err := d.Archive(c, oid, bs)
  16. ctx.Convey("Then err should be nil.a should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. ctx.So(a, convey.ShouldNotBeNil)
  19. })
  20. })
  21. })
  22. }
  23. func TestAcademyArchiveCount(t *testing.T) {
  24. convey.Convey("ArchiveCount", t, func(ctx convey.C) {
  25. var (
  26. c = context.Background()
  27. tids = []int64{}
  28. bs = int(0)
  29. )
  30. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  31. count, err := d.ArchiveCount(c, tids, bs)
  32. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  33. ctx.So(err, convey.ShouldBeNil)
  34. ctx.So(count, convey.ShouldNotBeNil)
  35. })
  36. })
  37. })
  38. }
  39. func TestAcademySearchArchive(t *testing.T) {
  40. convey.Convey("SearchArchive", t, func(ctx convey.C) {
  41. var (
  42. c = context.Background()
  43. tidsMap map[int][]int64
  44. bs = int(0)
  45. )
  46. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  47. res, err := d.SearchArchive(c, tidsMap, bs)
  48. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  49. ctx.So(err, convey.ShouldBeNil)
  50. ctx.So(res, convey.ShouldNotBeNil)
  51. })
  52. })
  53. })
  54. }
  55. func TestAcademyArchiveTagsByOids(t *testing.T) {
  56. convey.Convey("ArchiveTagsByOids", t, func(ctx convey.C) {
  57. var (
  58. c = context.Background()
  59. oids = []int64{1, 2}
  60. )
  61. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  62. res, err := d.ArchiveTagsByOids(c, oids)
  63. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  64. ctx.So(err, convey.ShouldBeNil)
  65. ctx.So(res, convey.ShouldNotBeNil)
  66. })
  67. })
  68. })
  69. }