manager_test.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. "github.com/smartystreets/goconvey/convey"
  6. )
  7. func TestDaoManagers(t *testing.T) {
  8. convey.Convey("Managers", t, func(convCtx convey.C) {
  9. var (
  10. c = context.Background()
  11. )
  12. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  13. manMap, err := d.Managers(c)
  14. convCtx.Convey("Then err should be nil.manMap should not be nil.", func(convCtx convey.C) {
  15. convCtx.So(err, convey.ShouldBeNil)
  16. convCtx.So(manMap, convey.ShouldNotBeNil)
  17. })
  18. })
  19. })
  20. }
  21. func TestDaoManager(t *testing.T) {
  22. convey.Convey("Manager", t, func(convCtx convey.C) {
  23. var (
  24. c = context.Background()
  25. pn = int64(0)
  26. ps = int64(0)
  27. )
  28. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  29. mi, err := d.Manager(c, pn, ps)
  30. convCtx.Convey("Then err should be nil.mi should not be nil.", func(convCtx convey.C) {
  31. convCtx.So(err, convey.ShouldBeNil)
  32. convCtx.So(mi, convey.ShouldNotBeNil)
  33. })
  34. })
  35. })
  36. }
  37. func TestDaoManagerTotal(t *testing.T) {
  38. convey.Convey("ManagerTotal", t, func(convCtx convey.C) {
  39. var (
  40. c = context.Background()
  41. )
  42. convCtx.Convey("When everything goes positive", func(convCtx convey.C) {
  43. count, err := d.ManagerTotal(c)
  44. convCtx.Convey("Then err should be nil.count should not be nil.", func(convCtx convey.C) {
  45. convCtx.So(err, convey.ShouldBeNil)
  46. convCtx.So(count, convey.ShouldNotBeNil)
  47. })
  48. })
  49. })
  50. }