card_test.go 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. package card
  2. import (
  3. "context"
  4. "flag"
  5. "testing"
  6. "go-common/app/interface/main/account/conf"
  7. v1 "go-common/app/service/main/card/api/grpc/v1"
  8. . "github.com/smartystreets/goconvey/convey"
  9. )
  10. var (
  11. s *Service
  12. c = context.Background()
  13. )
  14. func init() {
  15. flag.Set("conf", "../../cmd/account-interface-example.toml")
  16. var err error
  17. if err = conf.Init(); err != nil {
  18. panic(err)
  19. }
  20. s = New(conf.Conf)
  21. }
  22. // go test -test.v -test.run TestServiceUserCard
  23. func TestServiceUserCard(t *testing.T) {
  24. Convey("TestServiceUserCard", t, func() {
  25. res, err := s.UserCard(c, 1)
  26. t.Logf("%v", res)
  27. So(err, ShouldBeNil)
  28. })
  29. }
  30. // go test -test.v -test.run TestServiceCard
  31. func TestServiceCard(t *testing.T) {
  32. Convey("TestServiceCard", t, func() {
  33. res, err := s.Card(c, 1)
  34. t.Logf("%v", res)
  35. So(err, ShouldBeNil)
  36. })
  37. }
  38. // go test -test.v -test.run TestCardHots
  39. func TestCardHots(t *testing.T) {
  40. Convey("TestCardHots", t, func() {
  41. res, err := s.CardHots(c)
  42. t.Logf("%v", res)
  43. So(err, ShouldBeNil)
  44. })
  45. }
  46. // go test -test.v -test.run TestAllGroup
  47. func TestAllGroup(t *testing.T) {
  48. Convey("TestAllGroup", t, func() {
  49. res, err := s.AllGroup(c, 1)
  50. t.Logf("%v", res)
  51. So(err, ShouldBeNil)
  52. })
  53. }
  54. // go test -test.v -test.run TestCardsByGid
  55. func TestCardsByGid(t *testing.T) {
  56. Convey("TestCardsByGid", t, func() {
  57. res, err := s.CardsByGid(c, 1)
  58. t.Logf("%v", res)
  59. So(err, ShouldBeNil)
  60. })
  61. }
  62. // go test -test.v -test.run TestEquip
  63. func TestEquip(t *testing.T) {
  64. Convey("TestEquip", t, func() {
  65. err := s.Equip(c, &v1.ModelArgEquip{
  66. Mid: 2,
  67. CardId: 1,
  68. })
  69. So(err, ShouldBeNil)
  70. })
  71. }
  72. // go test -test.v -test.run TestDemount
  73. func TestDemount(t *testing.T) {
  74. Convey("TestDemount", t, func() {
  75. err := s.Demount(c, 2)
  76. So(err, ShouldBeNil)
  77. })
  78. }