stripe 3.8.2 → 5.45.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (214) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +424 -1
  3. data/CODE_OF_CONDUCT.md +77 -0
  4. data/Gemfile +15 -20
  5. data/README.md +201 -58
  6. data/Rakefile +12 -9
  7. data/VERSION +1 -1
  8. data/bin/stripe-console +3 -1
  9. data/lib/stripe/api_operations/create.rb +3 -1
  10. data/lib/stripe/api_operations/delete.rb +30 -2
  11. data/lib/stripe/api_operations/list.rb +3 -12
  12. data/lib/stripe/api_operations/nested_resource.rb +40 -28
  13. data/lib/stripe/api_operations/request.rb +83 -9
  14. data/lib/stripe/api_operations/save.rb +19 -7
  15. data/lib/stripe/api_resource.rb +65 -4
  16. data/lib/stripe/connection_manager.rb +200 -0
  17. data/lib/stripe/error_object.rb +93 -0
  18. data/lib/stripe/errors.rb +47 -19
  19. data/lib/stripe/instrumentation.rb +84 -0
  20. data/lib/stripe/list_object.rb +43 -7
  21. data/lib/stripe/multipart_encoder.rb +131 -0
  22. data/lib/stripe/oauth.rb +14 -7
  23. data/lib/stripe/object_types.rb +110 -0
  24. data/lib/stripe/{account.rb → resources/account.rb} +60 -28
  25. data/lib/stripe/resources/account_link.rb +10 -0
  26. data/lib/stripe/resources/alipay_account.rb +34 -0
  27. data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +4 -1
  28. data/lib/stripe/resources/application_fee.rb +14 -0
  29. data/lib/stripe/resources/application_fee_refund.rb +31 -0
  30. data/lib/stripe/resources/balance.rb +8 -0
  31. data/lib/stripe/resources/balance_transaction.rb +10 -0
  32. data/lib/stripe/resources/bank_account.rb +43 -0
  33. data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
  34. data/lib/stripe/resources/billing_portal/session.rb +12 -0
  35. data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +6 -6
  36. data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
  37. data/lib/stripe/resources/capability.rb +34 -0
  38. data/lib/stripe/{card.rb → resources/card.rb} +15 -4
  39. data/lib/stripe/resources/charge.rb +23 -0
  40. data/lib/stripe/resources/checkout/session.rb +27 -0
  41. data/lib/stripe/resources/country_spec.rb +10 -0
  42. data/lib/stripe/{coupon.rb → resources/coupon.rb} +5 -2
  43. data/lib/stripe/resources/credit_note.rb +33 -0
  44. data/lib/stripe/resources/credit_note_line_item.rb +8 -0
  45. data/lib/stripe/resources/customer.rb +52 -0
  46. data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
  47. data/lib/stripe/resources/discount.rb +8 -0
  48. data/lib/stripe/resources/dispute.rb +22 -0
  49. data/lib/stripe/resources/ephemeral_key.rb +20 -0
  50. data/lib/stripe/resources/event.rb +10 -0
  51. data/lib/stripe/resources/exchange_rate.rb +10 -0
  52. data/lib/stripe/resources/file.rb +36 -0
  53. data/lib/stripe/resources/file_link.rb +12 -0
  54. data/lib/stripe/resources/identity/verification_report.rb +12 -0
  55. data/lib/stripe/resources/identity/verification_session.rb +35 -0
  56. data/lib/stripe/resources/invoice.rb +74 -0
  57. data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +5 -2
  58. data/lib/stripe/resources/invoice_line_item.rb +8 -0
  59. data/lib/stripe/resources/issuing/authorization.rb +34 -0
  60. data/lib/stripe/resources/issuing/card.rb +25 -0
  61. data/lib/stripe/resources/issuing/card_details.rb +10 -0
  62. data/lib/stripe/resources/issuing/cardholder.rb +14 -0
  63. data/lib/stripe/resources/issuing/dispute.rb +25 -0
  64. data/lib/stripe/resources/issuing/transaction.rb +13 -0
  65. data/lib/stripe/resources/line_item.rb +8 -0
  66. data/lib/stripe/resources/login_link.rb +15 -0
  67. data/lib/stripe/resources/mandate.rb +8 -0
  68. data/lib/stripe/resources/order.rb +33 -0
  69. data/lib/stripe/resources/order_return.rb +10 -0
  70. data/lib/stripe/resources/payment_intent.rb +53 -0
  71. data/lib/stripe/resources/payment_link.rb +23 -0
  72. data/lib/stripe/resources/payment_method.rb +33 -0
  73. data/lib/stripe/resources/payout.rb +33 -0
  74. data/lib/stripe/resources/person.rb +32 -0
  75. data/lib/stripe/{plan.rb → resources/plan.rb} +4 -1
  76. data/lib/stripe/resources/price.rb +12 -0
  77. data/lib/stripe/{product.rb → resources/product.rb} +6 -3
  78. data/lib/stripe/resources/promotion_code.rb +12 -0
  79. data/lib/stripe/resources/quote.rb +105 -0
  80. data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
  81. data/lib/stripe/resources/radar/value_list.rb +15 -0
  82. data/lib/stripe/resources/radar/value_list_item.rb +14 -0
  83. data/lib/stripe/{recipient.rb → resources/recipient.rb} +5 -6
  84. data/lib/stripe/resources/recipient_transfer.rb +7 -0
  85. data/lib/stripe/{refund.rb → resources/refund.rb} +4 -1
  86. data/lib/stripe/resources/reporting/report_run.rb +13 -0
  87. data/lib/stripe/resources/reporting/report_type.rb +13 -0
  88. data/lib/stripe/resources/reversal.rb +30 -0
  89. data/lib/stripe/resources/review.rb +21 -0
  90. data/lib/stripe/resources/setup_attempt.rb +10 -0
  91. data/lib/stripe/resources/setup_intent.rb +43 -0
  92. data/lib/stripe/resources/shipping_rate.rb +12 -0
  93. data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
  94. data/lib/stripe/{sku.rb → resources/sku.rb} +6 -3
  95. data/lib/stripe/resources/source.rb +47 -0
  96. data/lib/stripe/resources/source_transaction.rb +8 -0
  97. data/lib/stripe/resources/subscription.rb +26 -0
  98. data/lib/stripe/resources/subscription_item.rb +26 -0
  99. data/lib/stripe/resources/subscription_schedule.rb +33 -0
  100. data/lib/stripe/resources/tax_code.rb +10 -0
  101. data/lib/stripe/resources/tax_id.rb +27 -0
  102. data/lib/stripe/resources/tax_rate.rb +12 -0
  103. data/lib/stripe/resources/terminal/connection_token.rb +12 -0
  104. data/lib/stripe/resources/terminal/location.rb +15 -0
  105. data/lib/stripe/resources/terminal/reader.rb +15 -0
  106. data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
  107. data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +4 -1
  108. data/lib/stripe/resources/token.rb +10 -0
  109. data/lib/stripe/resources/topup.rb +23 -0
  110. data/lib/stripe/resources/transfer.rb +27 -0
  111. data/lib/stripe/resources/usage_record.rb +8 -0
  112. data/lib/stripe/resources/usage_record_summary.rb +8 -0
  113. data/lib/stripe/resources/webhook_endpoint.rb +13 -0
  114. data/lib/stripe/resources.rb +93 -0
  115. data/lib/stripe/singleton_api_resource.rb +8 -2
  116. data/lib/stripe/stripe_client.rb +712 -233
  117. data/lib/stripe/stripe_configuration.rb +194 -0
  118. data/lib/stripe/stripe_object.rb +180 -67
  119. data/lib/stripe/stripe_response.rb +89 -27
  120. data/lib/stripe/util.rb +87 -168
  121. data/lib/stripe/version.rb +3 -1
  122. data/lib/stripe/webhook.rb +45 -10
  123. data/lib/stripe.rb +47 -160
  124. data/stripe.gemspec +27 -8
  125. metadata +112 -178
  126. data/.gitattributes +0 -4
  127. data/.github/ISSUE_TEMPLATE.md +0 -5
  128. data/.gitignore +0 -6
  129. data/.rubocop.yml +0 -20
  130. data/.rubocop_todo.yml +0 -60
  131. data/.travis.yml +0 -38
  132. data/lib/stripe/alipay_account.rb +0 -25
  133. data/lib/stripe/application_fee.rb +0 -25
  134. data/lib/stripe/application_fee_refund.rb +0 -20
  135. data/lib/stripe/balance.rb +0 -5
  136. data/lib/stripe/balance_transaction.rb +0 -11
  137. data/lib/stripe/bank_account.rb +0 -30
  138. data/lib/stripe/bitcoin_transaction.rb +0 -13
  139. data/lib/stripe/charge.rb +0 -82
  140. data/lib/stripe/country_spec.rb +0 -11
  141. data/lib/stripe/customer.rb +0 -88
  142. data/lib/stripe/dispute.rb +0 -17
  143. data/lib/stripe/ephemeral_key.rb +0 -18
  144. data/lib/stripe/event.rb +0 -7
  145. data/lib/stripe/exchange_rate.rb +0 -11
  146. data/lib/stripe/file_upload.rb +0 -35
  147. data/lib/stripe/invoice.rb +0 -30
  148. data/lib/stripe/invoice_line_item.rb +0 -5
  149. data/lib/stripe/login_link.rb +0 -9
  150. data/lib/stripe/order.rb +0 -35
  151. data/lib/stripe/order_return.rb +0 -11
  152. data/lib/stripe/payout.rb +0 -18
  153. data/lib/stripe/recipient_transfer.rb +0 -5
  154. data/lib/stripe/reversal.rb +0 -20
  155. data/lib/stripe/source.rb +0 -36
  156. data/lib/stripe/source_transaction.rb +0 -5
  157. data/lib/stripe/subscription.rb +0 -43
  158. data/lib/stripe/subscription_item.rb +0 -14
  159. data/lib/stripe/token.rb +0 -7
  160. data/lib/stripe/transfer.rb +0 -21
  161. data/test/api_stub_helpers.rb +0 -0
  162. data/test/stripe/account_external_accounts_operations_test.rb +0 -66
  163. data/test/stripe/account_login_links_operations_test.rb +0 -19
  164. data/test/stripe/account_test.rb +0 -190
  165. data/test/stripe/alipay_account_test.rb +0 -35
  166. data/test/stripe/api_operations_test.rb +0 -76
  167. data/test/stripe/api_resource_test.rb +0 -522
  168. data/test/stripe/apple_pay_domain_test.rb +0 -31
  169. data/test/stripe/application_fee_refund_test.rb +0 -35
  170. data/test/stripe/application_fee_refunds_operations_test.rb +0 -54
  171. data/test/stripe/application_fee_test.rb +0 -12
  172. data/test/stripe/balance_test.rb +0 -11
  173. data/test/stripe/bank_account_test.rb +0 -34
  174. data/test/stripe/charge_test.rb +0 -57
  175. data/test/stripe/country_spec_test.rb +0 -18
  176. data/test/stripe/coupon_test.rb +0 -42
  177. data/test/stripe/customer_card_test.rb +0 -42
  178. data/test/stripe/customer_sources_operations_test.rb +0 -66
  179. data/test/stripe/customer_test.rb +0 -113
  180. data/test/stripe/dispute_test.rb +0 -40
  181. data/test/stripe/ephemeral_key_test.rb +0 -84
  182. data/test/stripe/errors_test.rb +0 -18
  183. data/test/stripe/exchange_rate_test.rb +0 -18
  184. data/test/stripe/file_upload_test.rb +0 -83
  185. data/test/stripe/invoice_item_test.rb +0 -53
  186. data/test/stripe/invoice_line_item_test.rb +0 -6
  187. data/test/stripe/invoice_test.rb +0 -111
  188. data/test/stripe/list_object_test.rb +0 -154
  189. data/test/stripe/login_link_test.rb +0 -35
  190. data/test/stripe/oauth_test.rb +0 -77
  191. data/test/stripe/order_return_test.rb +0 -19
  192. data/test/stripe/order_test.rb +0 -57
  193. data/test/stripe/payout_test.rb +0 -48
  194. data/test/stripe/plan_test.rb +0 -50
  195. data/test/stripe/product_test.rb +0 -45
  196. data/test/stripe/recipient_test.rb +0 -47
  197. data/test/stripe/refund_test.rb +0 -37
  198. data/test/stripe/reversal_test.rb +0 -41
  199. data/test/stripe/sku_test.rb +0 -48
  200. data/test/stripe/source_test.rb +0 -84
  201. data/test/stripe/source_transaction_test.rb +0 -28
  202. data/test/stripe/stripe_client_test.rb +0 -728
  203. data/test/stripe/stripe_object_test.rb +0 -448
  204. data/test/stripe/stripe_response_test.rb +0 -47
  205. data/test/stripe/subscription_item_test.rb +0 -52
  206. data/test/stripe/subscription_test.rb +0 -104
  207. data/test/stripe/three_d_secure_test.rb +0 -21
  208. data/test/stripe/transfer_reversals_operations_test.rb +0 -55
  209. data/test/stripe/transfer_test.rb +0 -41
  210. data/test/stripe/util_test.rb +0 -432
  211. data/test/stripe/webhook_test.rb +0 -94
  212. data/test/stripe_test.rb +0 -59
  213. data/test/test_data.rb +0 -59
  214. data/test/test_helper.rb +0 -60
@@ -1,111 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class InvoiceTest < Test::Unit::TestCase
5
- should "be listable" do
6
- invoices = Stripe::Invoice.list
7
- assert_requested :get, "#{Stripe.api_base}/v1/invoices"
8
- assert invoices.data.is_a?(Array)
9
- assert invoices.first.is_a?(Stripe::Invoice)
10
- end
11
-
12
- should "be retrievable" do
13
- invoice = Stripe::Invoice.retrieve("in_123")
14
- assert_requested :get, "#{Stripe.api_base}/v1/invoices/in_123"
15
- assert invoice.is_a?(Stripe::Invoice)
16
- end
17
-
18
- should "be creatable" do
19
- invoice = Stripe::Invoice.create(
20
- customer: "cus_123"
21
- )
22
- assert_requested :post, "#{Stripe.api_base}/v1/invoices"
23
- assert invoice.is_a?(Stripe::Invoice)
24
- end
25
-
26
- should "be saveable" do
27
- invoice = Stripe::Invoice.retrieve("in_123")
28
- invoice.metadata["key"] = "value"
29
- invoice.save
30
- assert_requested :post, "#{Stripe.api_base}/v1/invoices/#{invoice.id}"
31
- end
32
-
33
- should "be updateable" do
34
- invoice = Stripe::Invoice.update("in_123", metadata: { key: "value" })
35
- assert_requested :post, "#{Stripe.api_base}/v1/invoices/in_123"
36
- assert invoice.is_a?(Stripe::Invoice)
37
- end
38
-
39
- context "#pay" do
40
- should "pay invoice" do
41
- invoice = Stripe::Invoice.retrieve("in_123")
42
- invoice = invoice.pay
43
- assert_requested :post,
44
- "#{Stripe.api_base}/v1/invoices/#{invoice.id}/pay"
45
- assert invoice.is_a?(Stripe::Invoice)
46
- end
47
-
48
- should "pay invoice with a specific source" do
49
- invoice = Stripe::Invoice.retrieve("in_123")
50
- invoice = invoice.pay(
51
- source: "src_123"
52
- )
53
- assert_requested :post,
54
- "#{Stripe.api_base}/v1/invoices/#{invoice.id}/pay",
55
- body: {
56
- source: "src_123",
57
- }
58
- assert invoice.is_a?(Stripe::Invoice)
59
- end
60
- end
61
-
62
- context "#upcoming" do
63
- should "retrieve upcoming invoices" do
64
- invoice = Stripe::Invoice.upcoming(
65
- customer: "cus_123",
66
- subscription: "sub_123"
67
- )
68
- assert_requested :get, "#{Stripe.api_base}/v1/invoices/upcoming",
69
- query: {
70
- customer: "cus_123",
71
- subscription: "sub_123",
72
- }
73
- assert invoice.is_a?(Stripe::Invoice)
74
- end
75
-
76
- should "retrieve upcoming invoices with items" do
77
- items = [{
78
- plan: "gold",
79
- quantity: 2,
80
- },]
81
-
82
- invoice = Stripe::Invoice.upcoming(
83
- customer: "cus_123",
84
- subscription_items: items
85
- )
86
-
87
- assert_requested :get, "#{Stripe.api_base}/v1/invoices/upcoming",
88
- query: {
89
- customer: "cus_123",
90
- subscription_items: [
91
- { plan: "gold", quantity: "2" },
92
- ],
93
- }
94
- assert invoice.is_a?(Stripe::Invoice)
95
- end
96
-
97
- should "be callable with an empty string" do
98
- invoice = Stripe::Invoice.upcoming(
99
- coupon: "",
100
- customer: "cus_123"
101
- )
102
- assert_requested :get, "#{Stripe.api_base}/v1/invoices/upcoming",
103
- query: {
104
- coupon: "",
105
- customer: "cus_123",
106
- }
107
- assert invoice.is_a?(Stripe::Invoice)
108
- end
109
- end
110
- end
111
- end
@@ -1,154 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class ListObjectTest < Test::Unit::TestCase
5
- should "provide .empty_list" do
6
- list = Stripe::ListObject.empty_list
7
- assert list.empty?
8
- end
9
-
10
- should "provide #count via enumerable" do
11
- list = Stripe::ListObject.construct_from(data: [{ object: "charge" }])
12
- assert_equal 1, list.count
13
- end
14
-
15
- should "provide #each" do
16
- arr = [
17
- { id: 1 },
18
- { id: 2 },
19
- { id: 3 },
20
- ]
21
- expected = Util.convert_to_stripe_object(arr, {})
22
- list = Stripe::ListObject.construct_from(data: arr)
23
- assert_equal expected, list.each.to_a
24
- end
25
-
26
- should "provide #auto_paging_each" do
27
- arr = [
28
- { id: 1 },
29
- { id: 2 },
30
- { id: 3 },
31
- ]
32
- expected = Util.convert_to_stripe_object(arr, {})
33
-
34
- list = TestListObject.construct_from(data: [{ id: 1 }],
35
- has_more: true,
36
- url: "/things")
37
- stub_request(:get, "#{Stripe.api_base}/things")
38
- .with(query: { starting_after: "1" })
39
- .to_return(body: JSON.generate(data: [{ id: 2 }, { id: 3 }], has_more: false))
40
-
41
- assert_equal expected, list.auto_paging_each.to_a
42
- end
43
-
44
- should "provide #auto_paging_each that responds to a block" do
45
- arr = [
46
- { id: 1 },
47
- { id: 2 },
48
- { id: 3 },
49
- ]
50
- expected = Util.convert_to_stripe_object(arr, {})
51
-
52
- list = TestListObject.construct_from(data: [{ id: 1 }],
53
- has_more: true,
54
- url: "/things")
55
- stub_request(:get, "#{Stripe.api_base}/things")
56
- .with(query: { starting_after: "1" })
57
- .to_return(body: JSON.generate(data: [{ id: 2 }, { id: 3 }], has_more: false))
58
-
59
- actual = []
60
- list.auto_paging_each do |obj|
61
- actual << obj
62
- end
63
-
64
- assert_equal expected, actual
65
- end
66
-
67
- should "provide #empty?" do
68
- list = Stripe::ListObject.construct_from(data: [])
69
- assert list.empty?
70
- list = Stripe::ListObject.construct_from(data: [{}])
71
- refute list.empty?
72
- end
73
-
74
- #
75
- # next_page
76
- #
77
-
78
- should "fetch a next page through #next_page" do
79
- list = TestListObject.construct_from(data: [{ id: 1 }],
80
- has_more: true,
81
- url: "/things")
82
- stub_request(:get, "#{Stripe.api_base}/things")
83
- .with(query: { starting_after: "1" })
84
- .to_return(body: JSON.generate(data: [{ id: 2 }], has_more: false))
85
- next_list = list.next_page
86
- refute next_list.empty?
87
- end
88
-
89
- should "fetch a next page through #next_page and respect limit" do
90
- list = TestListObject.construct_from(data: [{ id: 1 }],
91
- has_more: true,
92
- url: "/things")
93
- list.filters = { expand: ["data.source"], limit: 3 }
94
- stub_request(:get, "#{Stripe.api_base}/things")
95
- .with(query: { "expand[]" => "data.source", "limit" => "3", "starting_after" => "1" })
96
- .to_return(body: JSON.generate(data: [{ id: 2 }], has_more: false))
97
- next_list = list.next_page
98
- assert_equal({ expand: ["data.source"], limit: 3 }, next_list.filters)
99
- end
100
-
101
- should "fetch an empty page through #next_page" do
102
- list = TestListObject.construct_from(data: [{ id: 1 }],
103
- has_more: false,
104
- url: "/things")
105
- next_list = list.next_page
106
- assert_equal Stripe::ListObject.empty_list, next_list
107
- end
108
-
109
- #
110
- # previous_page
111
- #
112
-
113
- should "fetch a next page through #previous_page" do
114
- list = TestListObject.construct_from(data: [{ id: 2 }],
115
- url: "/things")
116
- stub_request(:get, "#{Stripe.api_base}/things")
117
- .with(query: { ending_before: "2" })
118
- .to_return(body: JSON.generate(data: [{ id: 1 }]))
119
- next_list = list.previous_page
120
- refute next_list.empty?
121
- end
122
-
123
- should "fetch a next page through #previous_page and respect limit" do
124
- list = TestListObject.construct_from(data: [{ id: 2 }],
125
- url: "/things")
126
- list.filters = { expand: ["data.source"], limit: 3 }
127
- stub_request(:get, "#{Stripe.api_base}/things")
128
- .with(query: { "expand[]" => "data.source", "limit" => "3", "ending_before" => "2" })
129
- .to_return(body: JSON.generate(data: [{ id: 1 }]))
130
- next_list = list.previous_page
131
- assert_equal({ expand: ["data.source"], limit: 3 }, next_list.filters)
132
- end
133
-
134
- #
135
- # backward compatibility
136
- #
137
-
138
- # note that the name #all is deprecated, as is using it fetch the next page
139
- # in a list
140
- should "be able to retrieve full lists given a listobject" do
141
- c = Stripe::Charge.all
142
- assert c.is_a?(Stripe::ListObject)
143
- assert_equal("/v1/charges", c.resource_url)
144
- all = c.all
145
- assert all.is_a?(Stripe::ListObject)
146
- assert_equal("/v1/charges", all.resource_url)
147
- assert all.data.is_a?(Array)
148
- end
149
- end
150
- end
151
-
152
- # A helper class with a URL that allows us to try out pagination.
153
- class TestListObject < Stripe::ListObject
154
- end
@@ -1,35 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class LoginLinkTest < Test::Unit::TestCase
5
- setup do
6
- account_fixture = {
7
- "id" => "acct_123",
8
- "object" => "account",
9
- "login_links" => {
10
- "data" => [],
11
- "has_more" => false,
12
- "object" => "list",
13
- "url" => "/v1/accounts/acct_123/login_links",
14
- },
15
- }
16
- @account = Stripe::Account.construct_from(account_fixture)
17
- end
18
-
19
- should "not be retrievable" do
20
- assert_raises NotImplementedError do
21
- Stripe::LoginLink.retrieve("foo")
22
- end
23
- end
24
-
25
- should "be creatable" do
26
- stub_request(:post, "#{Stripe.api_base}/v1/accounts/#{@account.id}/login_links")
27
- .to_return(body: JSON.generate(object: "login_link"))
28
-
29
- login_link = @account.login_links.create
30
- assert_requested :post,
31
- "#{Stripe.api_base}/v1/accounts/#{@account.id}/login_links"
32
- assert login_link.is_a?(Stripe::LoginLink)
33
- end
34
- end
35
- end
@@ -1,77 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class OAuthTest < Test::Unit::TestCase
5
- setup do
6
- Stripe.client_id = "ca_test"
7
- end
8
-
9
- teardown do
10
- Stripe.client_id = nil
11
- end
12
-
13
- context ".authorize_url" do
14
- should "return the authorize URL" do
15
- uri_str = OAuth.authorize_url(scope: "read_write",
16
- state: "csrf_token",
17
- stripe_user: {
18
- email: "test@example.com",
19
- url: "https://example.com/profile/test",
20
- country: "US",
21
- })
22
-
23
- uri = URI.parse(uri_str)
24
- params = CGI.parse(uri.query)
25
-
26
- assert_equal("https", uri.scheme)
27
- assert_equal("connect.stripe.com", uri.host)
28
- assert_equal("/oauth/authorize", uri.path)
29
-
30
- assert_equal(["ca_test"], params["client_id"])
31
- assert_equal(["read_write"], params["scope"])
32
- assert_equal(["test@example.com"], params["stripe_user[email]"])
33
- assert_equal(["https://example.com/profile/test"], params["stripe_user[url]"])
34
- assert_equal(["US"], params["stripe_user[country]"])
35
- end
36
- end
37
-
38
- context ".token" do
39
- should "exchange a code for an access token" do
40
- # The OpenAPI fixtures don't cover the OAuth endpoints, so we just
41
- # stub the request manually.
42
- stub_request(:post, "#{Stripe.connect_base}/oauth/token")
43
- .with(body: {
44
- "grant_type" => "authorization_code",
45
- "code" => "this_is_an_authorization_code",
46
- })
47
- .to_return(body: JSON.generate(access_token: "sk_access_token",
48
- scope: "read_only",
49
- livemode: false,
50
- token_type: "bearer",
51
- refresh_token: "sk_refresh_token",
52
- stripe_user_id: "acct_test",
53
- stripe_publishable_key: "pk_test"))
54
-
55
- resp = OAuth.token(grant_type: "authorization_code",
56
- code: "this_is_an_authorization_code")
57
- assert_equal("sk_access_token", resp.access_token)
58
- end
59
- end
60
-
61
- context ".deauthorize" do
62
- should "deauthorize an account" do
63
- # The OpenAPI fixtures don't cover the OAuth endpoints, so we just
64
- # stub the request manually.
65
- stub_request(:post, "#{Stripe.connect_base}/oauth/deauthorize")
66
- .with(body: {
67
- "client_id" => "ca_test",
68
- "stripe_user_id" => "acct_test_deauth",
69
- })
70
- .to_return(body: JSON.generate(stripe_user_id: "acct_test_deauth"))
71
-
72
- resp = OAuth.deauthorize(stripe_user_id: "acct_test_deauth")
73
- assert_equal("acct_test_deauth", resp.stripe_user_id)
74
- end
75
- end
76
- end
77
- end
@@ -1,19 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class OrderReturnTest < Test::Unit::TestCase
5
- should "be listable" do
6
- order_returns = Stripe::OrderReturn.list
7
- assert_requested :get, "#{Stripe.api_base}/v1/order_returns"
8
- assert order_returns.data.is_a?(Array)
9
- assert order_returns.data[0].is_a?(Stripe::OrderReturn)
10
- end
11
-
12
- should "be retrievable" do
13
- order_return = Stripe::OrderReturn.retrieve("orret_123")
14
- assert_requested :get,
15
- "#{Stripe.api_base}/v1/order_returns/orret_123"
16
- assert order_return.is_a?(Stripe::OrderReturn)
17
- end
18
- end
19
- end
@@ -1,57 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class OrderTest < Test::Unit::TestCase
5
- should "be listable" do
6
- orders = Stripe::Order.list
7
- assert_requested :get, "#{Stripe.api_base}/v1/orders"
8
- assert orders.data.is_a?(Array)
9
- assert orders.first.is_a?(Stripe::Order)
10
- end
11
-
12
- should "be retrievable" do
13
- order = Stripe::Order.retrieve("or_123")
14
- assert_requested :get, "#{Stripe.api_base}/v1/orders/or_123"
15
- assert order.is_a?(Stripe::Order)
16
- end
17
-
18
- should "be creatable" do
19
- order = Stripe::Order.create(
20
- currency: "USD"
21
- )
22
- assert_requested :post, "#{Stripe.api_base}/v1/orders"
23
- assert order.is_a?(Stripe::Order)
24
- end
25
-
26
- should "be saveable" do
27
- order = Stripe::Order.retrieve("or_123")
28
- order.metadata["key"] = "value"
29
- order.save
30
- assert_requested :post, "#{Stripe.api_base}/v1/orders/#{order.id}"
31
- end
32
-
33
- should "be updateable" do
34
- order = Stripe::Order.update("or_123", metadata: { key: "value" })
35
- assert_requested :post, "#{Stripe.api_base}/v1/orders/or_123"
36
- assert order.is_a?(Stripe::Order)
37
- end
38
-
39
- context "#pay" do
40
- should "pay an order" do
41
- order = Stripe::Order.retrieve("or_123")
42
- order = order.pay(token: "tok_123")
43
- assert order.is_a?(Stripe::Order)
44
- end
45
- end
46
-
47
- context "#return_order" do
48
- should "return an order" do
49
- order = Stripe::Order.retrieve("or_123")
50
- order = order.return_order(orders: [
51
- { parent: "sku_123" },
52
- ])
53
- assert order.is_a?(Stripe::OrderReturn)
54
- end
55
- end
56
- end
57
- end
@@ -1,48 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class PayoutTest < Test::Unit::TestCase
5
- should "be listable" do
6
- payouts = Stripe::Payout.list
7
- assert_requested :get, "#{Stripe.api_base}/v1/payouts"
8
- assert payouts.data.is_a?(Array)
9
- assert payouts.data[0].is_a?(Stripe::Payout)
10
- end
11
-
12
- should "be retrievable" do
13
- payout = Stripe::Payout.retrieve("tr_123")
14
- assert_requested :get, "#{Stripe.api_base}/v1/payouts/tr_123"
15
- assert payout.is_a?(Stripe::Payout)
16
- end
17
-
18
- should "be creatable" do
19
- payout = Stripe::Payout.create(
20
- amount: 100,
21
- currency: "USD"
22
- )
23
- assert_requested :post, "#{Stripe.api_base}/v1/payouts"
24
- assert payout.is_a?(Stripe::Payout)
25
- end
26
-
27
- should "be saveable" do
28
- payout = Stripe::Payout.retrieve("tr_123")
29
- payout.metadata["key"] = "value"
30
- payout.save
31
- assert_requested :post, "#{Stripe.api_base}/v1/payouts/#{payout.id}"
32
- end
33
-
34
- should "be updateable" do
35
- payout = Stripe::Payout.update("tr_123", metadata: { foo: "bar" })
36
- assert_requested :post, "#{Stripe.api_base}/v1/payouts/tr_123"
37
- assert payout.is_a?(Stripe::Payout)
38
- end
39
-
40
- context "#cancel" do
41
- should "cancel a payout" do
42
- payout = Stripe::Payout.retrieve("tr_123")
43
- payout = payout.cancel
44
- assert payout.is_a?(Stripe::Payout)
45
- end
46
- end
47
- end
48
- end
@@ -1,50 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class PlanTest < Test::Unit::TestCase
5
- should "be listable" do
6
- plans = Stripe::Plan.list
7
- assert_requested :get, "#{Stripe.api_base}/v1/plans"
8
- assert plans.data.is_a?(Array)
9
- assert plans.data[0].is_a?(Stripe::Plan)
10
- end
11
-
12
- should "be retrievable" do
13
- plan = Stripe::Plan.retrieve("sapphire-elite")
14
- assert_requested :get, "#{Stripe.api_base}/v1/plans/sapphire-elite"
15
- assert plan.is_a?(Stripe::Plan)
16
- end
17
-
18
- should "be creatable" do
19
- plan = Stripe::Plan.create(
20
- amount: 5000,
21
- interval: "month",
22
- name: "Sapphire elite",
23
- currency: "usd",
24
- id: "sapphire-elite"
25
- )
26
- assert_requested :post, "#{Stripe.api_base}/v1/plans"
27
- assert plan.is_a?(Stripe::Plan)
28
- end
29
-
30
- should "be saveable" do
31
- plan = Stripe::Plan.retrieve("sapphire-elite")
32
- plan.metadata["key"] = "value"
33
- plan.save
34
- assert_requested :post, "#{Stripe.api_base}/v1/plans/#{plan.id}"
35
- end
36
-
37
- should "be updateable" do
38
- plan = Stripe::Plan.update("sapphire-elite", metadata: { foo: "bar" })
39
- assert_requested :post, "#{Stripe.api_base}/v1/plans/sapphire-elite"
40
- assert plan.is_a?(Stripe::Plan)
41
- end
42
-
43
- should "be deletable" do
44
- plan = Stripe::Plan.retrieve("sapphire-elite")
45
- plan = plan.delete
46
- assert_requested :delete, "#{Stripe.api_base}/v1/plans/#{plan.id}"
47
- assert plan.is_a?(Stripe::Plan)
48
- end
49
- end
50
- end
@@ -1,45 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class ProductTest < Test::Unit::TestCase
5
- should "be listable" do
6
- products = Stripe::Product.list
7
- assert_requested :get, "#{Stripe.api_base}/v1/products"
8
- assert products.data.is_a?(Array)
9
- assert products.data[0].is_a?(Stripe::Product)
10
- end
11
-
12
- should "be retrievable" do
13
- product = Stripe::Product.retrieve("prod_123")
14
- assert_requested :get, "#{Stripe.api_base}/v1/products/prod_123"
15
- assert product.is_a?(Stripe::Product)
16
- end
17
-
18
- should "be creatable" do
19
- _ = Stripe::Product.create(
20
- name: "My Product"
21
- )
22
- assert_requested :post, "#{Stripe.api_base}/v1/products"
23
- end
24
-
25
- should "be saveable" do
26
- product = Stripe::Product.retrieve("prod_123")
27
- product.metadata["key"] = "value"
28
- product.save
29
- assert_requested :post, "#{Stripe.api_base}/v1/products/#{product.id}"
30
- end
31
-
32
- should "be updateable" do
33
- product = Stripe::Product.update("prod_123", metadata: { foo: "bar" })
34
- assert_requested :post, "#{Stripe.api_base}/v1/products/prod_123"
35
- assert product.is_a?(Stripe::Product)
36
- end
37
-
38
- should "be deletable" do
39
- product = Stripe::Product.retrieve("prod_123")
40
- product = product.delete
41
- assert_requested :delete, "#{Stripe.api_base}/v1/products/#{product.id}"
42
- assert product.is_a?(Stripe::Product)
43
- end
44
- end
45
- end
@@ -1,47 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class RecipientTest < Test::Unit::TestCase
5
- should "be listable" do
6
- recipients = Stripe::Recipient.list
7
- assert_requested :get, "#{Stripe.api_base}/v1/recipients"
8
- assert recipients.data.is_a?(Array)
9
- assert recipients.data[0].is_a?(Stripe::Recipient)
10
- end
11
-
12
- should "be retrievable" do
13
- recipient = Stripe::Recipient.retrieve("rp_123")
14
- assert_requested :get, "#{Stripe.api_base}/v1/recipients/rp_123"
15
- assert recipient.is_a?(Stripe::Recipient)
16
- end
17
-
18
- should "be creatable" do
19
- recipient = Stripe::Recipient.create(
20
- name: "Noah Jackson",
21
- type: "individual"
22
- )
23
- assert_requested :post, "#{Stripe.api_base}/v1/recipients"
24
- assert recipient.is_a?(Stripe::Recipient)
25
- end
26
-
27
- should "be saveable" do
28
- recipient = Stripe::Recipient.retrieve("rp_123")
29
- recipient.metadata["key"] = "value"
30
- recipient.save
31
- assert_requested :post, "#{Stripe.api_base}/v1/recipients/#{recipient.id}"
32
- end
33
-
34
- should "be updateable" do
35
- recipient = Stripe::Recipient.update("rp_123", metadata: { foo: "bar" })
36
- assert_requested :post, "#{Stripe.api_base}/v1/recipients/rp_123"
37
- assert recipient.is_a?(Stripe::Recipient)
38
- end
39
-
40
- should "be deletable" do
41
- recipient = Stripe::Recipient.retrieve("rp_123")
42
- recipient = recipient.delete
43
- assert_requested :delete, "#{Stripe.api_base}/v1/recipients/#{recipient.id}"
44
- assert recipient.is_a?(Stripe::Recipient)
45
- end
46
- end
47
- end
@@ -1,37 +0,0 @@
1
- require File.expand_path("../../test_helper", __FILE__)
2
-
3
- module Stripe
4
- class RefundTest < Test::Unit::TestCase
5
- should "be listable" do
6
- refunds = Stripe::Refund.list
7
- assert_requested :get, "#{Stripe.api_base}/v1/refunds"
8
- assert refunds.data.is_a?(Array)
9
- assert refunds.first.is_a?(Stripe::Refund)
10
- end
11
-
12
- should "be retrievable" do
13
- refund = Stripe::Refund.retrieve("re_123")
14
- assert_requested :get, "#{Stripe.api_base}/v1/refunds/re_123"
15
- assert refund.is_a?(Stripe::Refund)
16
- end
17
-
18
- should "be creatable" do
19
- refund = Stripe::Refund.create(charge: "ch_123")
20
- assert_requested :post, "#{Stripe.api_base}/v1/refunds"
21
- assert refund.is_a?(Stripe::Refund)
22
- end
23
-
24
- should "be saveable" do
25
- refund = Stripe::Refund.retrieve("re_123")
26
- refund.metadata["key"] = "value"
27
- refund.save
28
- assert_requested :post, "#{Stripe.api_base}/v1/refunds/#{refund.id}"
29
- end
30
-
31
- should "be updateable" do
32
- refund = Stripe::Refund.update("re_123", metadata: { key: "value" })
33
- assert_requested :post, "#{Stripe.api_base}/v1/refunds/re_123"
34
- assert refund.is_a?(Stripe::Refund)
35
- end
36
- end
37
- end