pendant_test.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. package usersuit
  2. import (
  3. "context"
  4. "fmt"
  5. "reflect"
  6. "testing"
  7. usmdl "go-common/app/service/main/usersuit/model"
  8. usrpc "go-common/app/service/main/usersuit/rpc/client"
  9. "github.com/bouk/monkey"
  10. . "github.com/smartystreets/goconvey/convey"
  11. )
  12. func TestService_Equip(t *testing.T) {
  13. // 1)背包里只要存在挂件,且来源是背包(不论挂件是否为大会员的)都能佩戴 2)背包里不存在挂件,但来源是大会员挂件,也可以佩戴,反之报错,用例如下:
  14. Convey("Equip interface", t, func() {
  15. var (
  16. c = context.Background()
  17. )
  18. // 穿戴一个非vip挂件,但是挂件来源是vip,报错
  19. Convey(" wear vip pendant", t, func() {
  20. var ArgEquip = &usmdl.ArgEquip{
  21. Mid: 111001965,
  22. Pid: 98,
  23. Status: 2, //1 卸载 2 佩戴
  24. Source: 2, // 0 未知 1背包 2 vip
  25. }
  26. guard := monkey.PatchInstanceMethod(reflect.TypeOf(s.usRPC), "Equip", func(_ *usrpc.Service2, _ context.Context, _ *usmdl.ArgEquip) error {
  27. return fmt.Errorf("wear not vip pendant,but source is EquipFromVip")
  28. })
  29. defer guard.Unpatch()
  30. err := s.usRPC.Equip(c, ArgEquip)
  31. Convey("the pendant is not vip pendant,then err should not be nil", t, func() {
  32. So(err, ShouldNotBeNil)
  33. })
  34. })
  35. // 穿戴一个vip挂件,但是挂件来源是背包(前提:背包里存在该挂件),正确
  36. Convey(" wear vip pendant", t, func() {
  37. var ArgEquip = &usmdl.ArgEquip{
  38. Mid: 111001965,
  39. Pid: 102,
  40. Status: 2, //1 卸载 2 佩戴
  41. Source: 1, // 0 未知 1背包 2 vip
  42. }
  43. guard := monkey.PatchInstanceMethod(reflect.TypeOf(s.usRPC), "Equip", func(_ *usrpc.Service2, _ context.Context, _ *usmdl.ArgEquip) error {
  44. return nil
  45. })
  46. defer guard.Unpatch()
  47. err := s.usRPC.Equip(c, ArgEquip)
  48. Convey("wear vip pendant and this pendant exist in package, then err should be nil", t, func() {
  49. So(err, ShouldBeNil)
  50. })
  51. })
  52. // 穿戴挂件与来源一致 :vip挂件
  53. Convey(" wear vip pendant", t, func() {
  54. var ArgEquip = &usmdl.ArgEquip{
  55. Mid: 111001965,
  56. Pid: 103,
  57. Status: 2, //1 卸载 2 佩戴
  58. Source: 2, // 0 未知 1背包 2 vip
  59. }
  60. guard := monkey.PatchInstanceMethod(reflect.TypeOf(s.usRPC), "Equip", func(_ *usrpc.Service2, _ context.Context, _ *usmdl.ArgEquip) error {
  61. return nil
  62. })
  63. defer guard.Unpatch()
  64. err := s.usRPC.Equip(c, ArgEquip)
  65. Convey("the pendant is vip pendant and source is EquipFromVip,then err should be nil", t, func() {
  66. So(err, ShouldBeNil)
  67. })
  68. })
  69. // 穿戴挂件与来源一致 :背包挂件(背包存在该挂件)
  70. Convey(" wear vip pendant", t, func() {
  71. var ArgEquip = &usmdl.ArgEquip{
  72. Mid: 111001965,
  73. Pid: 98,
  74. Status: 2, //1 卸载 2 佩戴
  75. Source: 1, // 0 未知 1背包 2 vip
  76. }
  77. guard := monkey.PatchInstanceMethod(reflect.TypeOf(s.usRPC), "Equip", func(_ *usrpc.Service2, _ context.Context, _ *usmdl.ArgEquip) error {
  78. return nil
  79. })
  80. defer guard.Unpatch()
  81. err := s.usRPC.Equip(c, ArgEquip)
  82. Convey("wear a pkg pendant and package exist the pendant and source is EquipFromPackage, then err should be nil", t, func() {
  83. So(err, ShouldBeNil)
  84. })
  85. })
  86. // 穿戴一个背包里不存在的挂件,但是挂件来源是:背包(非vip挂件),报错
  87. Convey(" wear vip pendant", t, func() {
  88. var ArgEquip = &usmdl.ArgEquip{
  89. Mid: 111001965,
  90. Pid: 99,
  91. Status: 2, //1 卸载 2 佩戴
  92. Source: 1, // 0 未知 1背包 2 vip
  93. }
  94. guard := monkey.PatchInstanceMethod(reflect.TypeOf(s.usRPC), "Equip", func(_ *usrpc.Service2, _ context.Context, _ *usmdl.ArgEquip) error {
  95. return fmt.Errorf("pendant is not exist, err_code: 64101")
  96. })
  97. defer guard.Unpatch()
  98. err := s.usRPC.Equip(c, ArgEquip)
  99. Convey("wear a pendant which is not exist in package and source is EquipFromPackage, then err should not be nil", t, func() {
  100. So(err, ShouldNotBeNil)
  101. })
  102. })
  103. // 卸下挂件(挂件存在),不会受到 source 的影响
  104. Convey(" take off pkg pendant", t, func() {
  105. var ArgEquip = &usmdl.ArgEquip{
  106. Mid: 111001965, Pid: 98, Status: 1, Source: 2,
  107. }
  108. guard := monkey.PatchInstanceMethod(reflect.TypeOf(s.usRPC), "Equip", func(_ *usrpc.Service2, _ context.Context, _ *usmdl.ArgEquip) error {
  109. return nil
  110. })
  111. defer guard.Unpatch()
  112. err := s.usRPC.Equip(c, ArgEquip)
  113. Convey("take off pendant is not be affected by source, then err should not be nil", t, func() {
  114. So(err, ShouldBeNil)
  115. })
  116. })
  117. Convey(" take off vip pendant", t, func() {
  118. var ArgEquip = &usmdl.ArgEquip{
  119. Mid: 111001965, Pid: 102, Status: 1, Source: 2,
  120. }
  121. guard := monkey.PatchInstanceMethod(reflect.TypeOf(s.usRPC), "Equip", func(_ *usrpc.Service2, _ context.Context, _ *usmdl.ArgEquip) error {
  122. return nil
  123. })
  124. defer guard.Unpatch()
  125. err := s.usRPC.Equip(c, ArgEquip)
  126. Convey("take off pendant is not be affected by source, then err should not be nil", t, func() {
  127. So(err, ShouldBeNil)
  128. })
  129. })
  130. })
  131. }
  132. //func TestService_Equip(t *testing.T) {
  133. // Convey("Equip interface", t, func() {
  134. // So(s.Equip(context.Background(), 1, 1, 2, 1), ShouldBeNil)
  135. // })
  136. //}
  137. func TestService_Equipment(t *testing.T) {
  138. Convey("Equipment interface", t, func() {
  139. equip, err := s.Equipment(context.Background(), 1)
  140. So(err, ShouldBeNil)
  141. So(equip, ShouldNotBeEmpty)
  142. })
  143. }
  144. func TestService_Pendant(t *testing.T) {
  145. Convey("Pendant interface", t, func() {
  146. pendant, err := s.Pendant(context.Background(), 1)
  147. So(err, ShouldBeNil)
  148. So(pendant, ShouldNotBeEmpty)
  149. })
  150. }
  151. func TestService_GroupEntry(t *testing.T) {
  152. Convey("GroupEntry interface", t, func() {
  153. groups, err := s.GroupEntry(context.Background(), 1)
  154. So(err, ShouldBeNil)
  155. So(groups, ShouldNotBeEmpty)
  156. })
  157. }
  158. func TestService_GroupVIP(t *testing.T) {
  159. Convey("GroupVIP interface", t, func() {
  160. vips, err := s.GroupVIP(context.Background(), 1)
  161. So(err, ShouldBeNil)
  162. So(vips, ShouldNotBeEmpty)
  163. })
  164. }
  165. func TestService_VipGet(t *testing.T) {
  166. Convey("VipGet interface", t, func() {
  167. So(s.VipGet(context.Background(), 1, 1, 2), ShouldBeNil)
  168. })
  169. }
  170. func TestService_CheckOrder(t *testing.T) {
  171. Convey("CheckOrder interface", t, func() {
  172. So(s.CheckOrder(context.Background(), 1, "lalala"), ShouldBeNil)
  173. })
  174. }
  175. func TestService_My(t *testing.T) {
  176. Convey("My interface", t, func() {
  177. my, err := s.My(context.Background(), 1)
  178. So(err, ShouldBeNil)
  179. So(my, ShouldNotBeEmpty)
  180. })
  181. }
  182. func TestService_MyHistory(t *testing.T) {
  183. Convey("MyHistory interface", t, func() {
  184. res, err := s.MyHistory(context.Background(), 1, 1)
  185. So(err, ShouldBeNil)
  186. So(res, ShouldNotBeEmpty)
  187. })
  188. }