card_test.go 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package account
  2. import (
  3. "context"
  4. "testing"
  5. accmdl "go-common/app/service/main/account/model"
  6. "go-common/library/ecode"
  7. "github.com/smartystreets/goconvey/convey"
  8. )
  9. func TestAccountCard3(t *testing.T) {
  10. var (
  11. c = context.Background()
  12. mid = int64(27515256)
  13. )
  14. convey.Convey("Card3", t, func(ctx convey.C) {
  15. res, err := d.Card3(c, mid)
  16. ctx.Convey("Then err should be nil.res should not be nil.", func(ctx convey.C) {
  17. ctx.So(err, convey.ShouldBeNil)
  18. ctx.So(res, convey.ShouldNotBeNil)
  19. })
  20. res, err = d.Card3(c, 777777777777)
  21. ctx.So(err, convey.ShouldEqual, ecode.AccessDenied)
  22. ctx.So(res, convey.ShouldBeNil)
  23. })
  24. }
  25. func TestAccountIsVip(t *testing.T) {
  26. var (
  27. cardFalse = &accmdl.Card{}
  28. // card.Vip.Type == 0 || card.Vip.Status == 0 || card.Vip.Status == 2 || card.Vip.Status == 3
  29. cardTrue = &accmdl.Card{
  30. Vip: accmdl.VipInfo{
  31. Type: 1,
  32. Status: 1,
  33. },
  34. }
  35. )
  36. convey.Convey("IsVip", t, func(ctx convey.C) {
  37. p1 := IsVip(cardFalse)
  38. ctx.Convey("Then p1 should be false.", func(ctx convey.C) {
  39. ctx.So(p1, convey.ShouldBeFalse)
  40. })
  41. p2 := IsVip(cardTrue)
  42. ctx.Convey("Then p2 should be true.", func(ctx convey.C) {
  43. ctx.So(p2, convey.ShouldBeTrue)
  44. })
  45. })
  46. }