column_income_test.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoListColumnIncome(t *testing.T) {
  8. convey.Convey("ListColumnIncome", t, func(ctx convey.C) {
  9. var (
  10. c = context.Background()
  11. mid = int64(1001)
  12. startTime = "2018-01-01"
  13. endTime = "2019-01-01"
  14. )
  15. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  16. Exec(c, "INSERT INTO column_income(aid, mid, total_income, date) VALUES(1000, 1001, 100, '2018-06-01')")
  17. columns, err := d.ListColumnIncome(c, mid, startTime, endTime)
  18. ctx.Convey("Then err should be nil.columns should not be nil.", func(ctx convey.C) {
  19. ctx.So(err, convey.ShouldBeNil)
  20. ctx.So(columns, convey.ShouldNotBeNil)
  21. })
  22. })
  23. })
  24. }
  25. func TestDaoListColumnIncomeByID(t *testing.T) {
  26. convey.Convey("ListColumnIncomeByID", t, func(ctx convey.C) {
  27. var (
  28. c = context.Background()
  29. id = int64(1000)
  30. endTime = "2019-01-01"
  31. )
  32. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  33. Exec(c, "INSERT INTO column_income(aid, mid, total_income, date) VALUES(1000, 1001, 100, '2018-06-01')")
  34. columns, err := d.ListColumnIncomeByID(c, id, endTime)
  35. ctx.Convey("Then err should be nil.columns should not be nil.", func(ctx convey.C) {
  36. ctx.So(err, convey.ShouldBeNil)
  37. ctx.So(columns, convey.ShouldNotBeNil)
  38. })
  39. })
  40. })
  41. }
  42. func TestDaoGetColumnTitle(t *testing.T) {
  43. convey.Convey("GetColumnTitle", t, func(ctx convey.C) {
  44. var (
  45. c = context.Background()
  46. ids = []int64{1000}
  47. )
  48. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  49. Exec(c, "INSERT INTO column_income_statis(aid, title) VALUES(1000, 'test')")
  50. titles, err := d.GetColumnTitle(c, ids)
  51. ctx.Convey("Then err should be nil.titles should not be nil.", func(ctx convey.C) {
  52. ctx.So(err, convey.ShouldBeNil)
  53. ctx.So(titles, convey.ShouldNotBeNil)
  54. })
  55. })
  56. })
  57. }