api_test.go 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. package order
  2. import (
  3. "context"
  4. "strings"
  5. "testing"
  6. "github.com/smartystreets/goconvey/convey"
  7. gock "gopkg.in/h2non/gock.v1"
  8. )
  9. func httpMock(method, url string) *gock.Request {
  10. r := gock.New(url)
  11. r.Method = strings.ToUpper(method)
  12. return r
  13. }
  14. func TestOrderExecuteOrders(t *testing.T) {
  15. convey.Convey("ExecuteOrders", t, func(ctx convey.C) {
  16. var (
  17. c = context.Background()
  18. mid = int64(2089809)
  19. ip = "127.0.0.1"
  20. )
  21. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  22. defer gock.OffAll()
  23. httpMock("GET", d.executeOrdersURI).Reply(200).JSON(`{"code": 0,"message": "0", "ttl": 1,"data":"{}"}`)
  24. _, err := d.ExecuteOrders(c, mid, ip)
  25. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  26. ctx.So(err, convey.ShouldBeNil)
  27. })
  28. })
  29. })
  30. }
  31. func TestOrderUps(t *testing.T) {
  32. convey.Convey("Ups", t, func(ctx convey.C) {
  33. var (
  34. c = context.Background()
  35. )
  36. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  37. defer gock.OffAll()
  38. httpMock("GET", d.upsURI).Reply(200).JSON(`
  39. {
  40. "code": 0,
  41. "message": "ok",
  42. "requestId": "46aab0b0157111e9bca70a36f8bfcc85",
  43. "ts": 1547191187259,
  44. "data": [
  45. 2089809
  46. ]
  47. }`)
  48. _, err := d.Ups(c)
  49. ctx.Convey("Then err should be nil.ups should not be nil.", func(ctx convey.C) {
  50. ctx.So(err, convey.ShouldBeNil)
  51. })
  52. })
  53. })
  54. }
  55. func TestOrderOrderByAid(t *testing.T) {
  56. convey.Convey("OrderByAid", t, func(ctx convey.C) {
  57. var (
  58. c = context.Background()
  59. aid = int64(10111835)
  60. )
  61. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  62. defer gock.OffAll()
  63. httpMock("GET", d.getOrderByAidURI).Reply(200).JSON(`
  64. {
  65. "code": 0,
  66. "message": "ok",
  67. "requestId": "cbf35e10157211e9bca70a36f8bfcc85",
  68. "ts": 1547191840369,
  69. "data": {
  70. "execute_order_id": 13,
  71. "business_order_id": 6,
  72. "business_order_name": "这是一个测试项目",
  73. "id_code": 10002824,
  74. "game_base_id": 0,
  75. "game_name": ""
  76. }
  77. }`)
  78. _, _, _, err := d.OrderByAid(c, aid)
  79. ctx.Convey("Then err should be nil.orderID,orderName,gameBaseID should not be nil.", func(ctx convey.C) {
  80. ctx.So(err, convey.ShouldBeNil)
  81. })
  82. })
  83. })
  84. }
  85. func TestOrderUnbind(t *testing.T) {
  86. convey.Convey("Unbind", t, func(ctx convey.C) {
  87. var (
  88. c = context.Background()
  89. mid = int64(2089809)
  90. aid = int64(10111835)
  91. ip = "127.0.0.1"
  92. )
  93. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  94. defer gock.OffAll()
  95. httpMock("POST", d.archiveStatusURI).Reply(200).JSON(`{"code": 0,"message": "0", "ttl": 1,"data":"{}"}`)
  96. err := d.Unbind(c, mid, aid, ip)
  97. ctx.Convey("Then err should be nil.", func(ctx convey.C) {
  98. ctx.So(err, convey.ShouldBeNil)
  99. })
  100. })
  101. })
  102. }
  103. func TestOrderOasis(t *testing.T) {
  104. convey.Convey("Oasis", t, func(ctx convey.C) {
  105. var (
  106. c = context.Background()
  107. mid = int64(2089809)
  108. ip = "127.0.0.1"
  109. )
  110. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  111. defer gock.OffAll()
  112. httpMock("GET", d.oasisURI).Reply(200).JSON(`
  113. {
  114. "code": 0,
  115. "message": "ok",
  116. "requestId": "14909c20157111e9bca70a36f8bfcc85",
  117. "ts": 1547191103202,
  118. "data": {
  119. "state": 1,
  120. "running_execute_order_count": 0,
  121. "total_execute_order_count": 0
  122. }
  123. }`)
  124. _, err := d.Oasis(c, mid, ip)
  125. ctx.Convey("Then err should be nil.oa should not be nil.", func(ctx convey.C) {
  126. ctx.So(err, convey.ShouldBeNil)
  127. })
  128. })
  129. })
  130. }
  131. func TestOrderLaunchTime(t *testing.T) {
  132. convey.Convey("LaunchTime", t, func(ctx convey.C) {
  133. var (
  134. c = context.Background()
  135. orderID = int64(15)
  136. ip = "127.0.0.1"
  137. )
  138. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  139. defer gock.OffAll()
  140. httpMock("GET", d.launchTimeURI).Reply(200).JSON(`
  141. {
  142. "code": 0,
  143. "message": "ok",
  144. "requestId": "75839970157011e9bca70a36f8bfcc85",
  145. "ts": 1547190836359,
  146. "data": {
  147. "begin_date": 1547127000
  148. }
  149. }
  150. `)
  151. _, err := d.LaunchTime(c, orderID, ip)
  152. ctx.Convey("Then err should be nil.beginDate,endDate should not be nil.", func(ctx convey.C) {
  153. ctx.So(err, convey.ShouldBeNil)
  154. })
  155. })
  156. })
  157. }
  158. func TestOrderUpValidate(t *testing.T) {
  159. convey.Convey("UpValidate", t, func(ctx convey.C) {
  160. var (
  161. c = context.Background()
  162. mid = int64(2089809)
  163. ip = "127.0.0.1"
  164. )
  165. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  166. defer gock.OffAll()
  167. httpMock("GET", d.upValidateURI).Reply(200).JSON(`{"code": 0,"message": "0", "ttl": 1,"data":"{}"}`)
  168. _, err := d.UpValidate(c, mid, ip)
  169. ctx.Convey("Then err should be nil.uv should not be nil.", func(ctx convey.C) {
  170. ctx.So(err, convey.ShouldNotBeNil)
  171. })
  172. })
  173. })
  174. }
  175. func TestOrderGrowAccountState(t *testing.T) {
  176. convey.Convey("GrowAccountState", t, func(ctx convey.C) {
  177. var (
  178. c = context.Background()
  179. mid = int64(2089809)
  180. ty = int(3)
  181. )
  182. ctx.Convey("When everything goes positive", func(ctx convey.C) {
  183. defer gock.OffAll()
  184. httpMock("GET", d.accountStateURI).Reply(200).JSON(`{"code": 0,"message": "0", "ttl": 1,"data":"{}"}`)
  185. _, err := d.GrowAccountState(c, mid, ty)
  186. ctx.Convey("Then err should be nil.result should not be nil.", func(ctx convey.C) {
  187. ctx.So(err, convey.ShouldEqual, err)
  188. })
  189. })
  190. })
  191. }