bgm_test.go 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoBGMCount(t *testing.T) {
  8. convey.Convey("BGMCount", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. mid = int64(1001)
  12. )
  13. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  14. Exec(c, "INSERT INTO background_music(sid, mid) VALUES(1000, 1001)")
  15. count, err := d.BGMCount(c, mid)
  16. ctx.Convey("Then err should be nil.count should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. ctx.So(count, convey.ShouldNotBeNil)
  19. })
  20. })
  21. })
  22. }
  23. func TestDaoGetBgmTitle(t *testing.T) {
  24. convey.Convey("GetBgmTitle", t, func(ctx convey.C) {
  25. var (
  26. c = context.Background()
  27. ids = []int64{1001}
  28. )
  29. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  30. Exec(c, "INSERT INTO background_music(sid, mid, title) VALUES(1001, 1001, 'test')")
  31. titles, err := d.GetBgmTitle(c, ids)
  32. ctx.Convey("Then err should be nil.titles should not be nil.", func(ctx convey.C) {
  33. ctx.So(err, convey.ShouldBeNil)
  34. ctx.So(titles, convey.ShouldNotBeNil)
  35. })
  36. })
  37. })
  38. }
  39. func TestDaoListBgmIncome(t *testing.T) {
  40. convey.Convey("ListBgmIncome", t, func(ctx convey.C) {
  41. var (
  42. c = context.Background()
  43. mid = int64(1001)
  44. startTime = "2018-01-01"
  45. endTime = "2019-01-01"
  46. )
  47. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  48. Exec(c, "INSERT INTO bgm_income(sid, mid, total_income, date) VALUES(1000, 1001, 100, '2018-06-01')")
  49. bgms, err := d.ListBgmIncome(c, mid, startTime, endTime)
  50. ctx.Convey("Then err should be nil.bgms should not be nil.", func(ctx convey.C) {
  51. ctx.So(err, convey.ShouldBeNil)
  52. ctx.So(bgms, convey.ShouldNotBeNil)
  53. })
  54. })
  55. })
  56. }
  57. func TestDaoListBgmIncomeByID(t *testing.T) {
  58. convey.Convey("ListBgmIncomeByID", t, func(ctx convey.C) {
  59. var (
  60. c = context.Background()
  61. id = int64(1000)
  62. endTime = "2019-01-01"
  63. )
  64. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  65. Exec(c, "INSERT INTO bgm_income(sid, mid, total_income, date) VALUES(1000, 1001, 100, '2018-06-01')")
  66. bgms, err := d.ListBgmIncomeByID(c, id, endTime)
  67. ctx.Convey("Then err should be nil.bgms should not be nil.", func(ctx convey.C) {
  68. ctx.So(err, convey.ShouldBeNil)
  69. ctx.So(bgms, convey.ShouldNotBeNil)
  70. })
  71. })
  72. })
  73. }