mission_group_test.go 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package like
  2. import (
  3. "context"
  4. l "go-common/app/interface/main/activity/model/like"
  5. "testing"
  6. "fmt"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestLikeRawLikeMissionBuff(t *testing.T) {
  10. convey.Convey("RawLikeMissionBuff", t, func(ctx convey.C) {
  11. var (
  12. c = context.Background()
  13. sid = int64(0)
  14. mid = int64(0)
  15. )
  16. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  17. ID, err := d.RawLikeMissionBuff(c, sid, mid)
  18. ctx.Convey("Then err should be nil.ID should not be nil.", func(ctx convey.C) {
  19. ctx.So(err, convey.ShouldBeNil)
  20. ctx.So(ID, convey.ShouldNotBeNil)
  21. })
  22. })
  23. })
  24. }
  25. func TestLikeMissionGroupAdd(t *testing.T) {
  26. convey.Convey("MissionGroupAdd", t, func(ctx convey.C) {
  27. var (
  28. c = context.Background()
  29. group = &l.MissionGroup{}
  30. )
  31. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  32. misID, err := d.MissionGroupAdd(c, group)
  33. ctx.Convey("Then err should be nil.misID should not be nil.", func(ctx convey.C) {
  34. ctx.So(err, convey.ShouldBeNil)
  35. ctx.So(misID, convey.ShouldNotBeNil)
  36. })
  37. })
  38. })
  39. }
  40. func TestLikeRawMissionGroupItems(t *testing.T) {
  41. convey.Convey("RawMissionGroupItems", t, func(ctx convey.C) {
  42. var (
  43. c = context.Background()
  44. lids = []int64{1, 2}
  45. )
  46. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  47. res, err := d.RawMissionGroupItems(c, lids)
  48. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  49. ctx.So(err, convey.ShouldBeNil)
  50. fmt.Printf("%+v", res)
  51. })
  52. })
  53. })
  54. }