music_test.go 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package music
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestMusicCategorys(t *testing.T) {
  8. var (
  9. c = context.TODO()
  10. ids = []int64{10, 11, 12}
  11. )
  12. convey.Convey("Categorys", t, func(ctx convey.C) {
  13. res, resMap, err := d.Categorys(c, ids)
  14. ctx.Convey("Then err should be nil.res,resMap should not be nil.", func(ctx convey.C) {
  15. ctx.So(err, convey.ShouldBeNil)
  16. ctx.So(resMap, convey.ShouldNotBeNil)
  17. ctx.So(res, convey.ShouldNotBeNil)
  18. })
  19. })
  20. }
  21. func TestMusicMCategorys(t *testing.T) {
  22. var (
  23. c = context.TODO()
  24. )
  25. convey.Convey("MCategorys", t, func(ctx convey.C) {
  26. res, err := d.MCategorys(c)
  27. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  28. ctx.So(err, convey.ShouldBeNil)
  29. ctx.So(res, convey.ShouldNotBeNil)
  30. })
  31. })
  32. }
  33. func TestMusicMusic(t *testing.T) {
  34. var (
  35. c = context.TODO()
  36. sids = []int64{1, 2, 3, 4, 5, 6}
  37. )
  38. convey.Convey("Music", t, func(ctx convey.C) {
  39. res, err := d.Music(c, sids)
  40. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  41. ctx.So(err, convey.ShouldBeNil)
  42. ctx.So(res, convey.ShouldNotBeNil)
  43. })
  44. })
  45. }