stripe 4.10.0 → 5.55.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (258) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +316 -1
  3. data/CODE_OF_CONDUCT.md +77 -0
  4. data/Gemfile +10 -14
  5. data/Makefile +7 -0
  6. data/README.md +186 -62
  7. data/Rakefile +8 -7
  8. data/VERSION +1 -1
  9. data/lib/stripe/api_operations/create.rb +1 -1
  10. data/lib/stripe/api_operations/delete.rb +28 -2
  11. data/lib/stripe/api_operations/list.rb +1 -12
  12. data/lib/stripe/api_operations/nested_resource.rb +38 -28
  13. data/lib/stripe/api_operations/request.rb +81 -9
  14. data/lib/stripe/api_operations/save.rb +8 -7
  15. data/lib/stripe/api_operations/search.rb +19 -0
  16. data/lib/stripe/api_resource.rb +45 -3
  17. data/lib/stripe/api_resource_test_helpers.rb +47 -0
  18. data/lib/stripe/connection_manager.rb +200 -0
  19. data/lib/stripe/error_object.rb +93 -0
  20. data/lib/stripe/errors.rb +31 -10
  21. data/lib/stripe/instrumentation.rb +84 -0
  22. data/lib/stripe/list_object.rb +41 -7
  23. data/lib/stripe/multipart_encoder.rb +131 -0
  24. data/lib/stripe/oauth.rb +8 -6
  25. data/lib/stripe/object_types.rb +119 -0
  26. data/lib/stripe/{account.rb → resources/account.rb} +48 -30
  27. data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
  28. data/lib/stripe/resources/alipay_account.rb +34 -0
  29. data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
  30. data/lib/stripe/resources/application_fee.rb +14 -0
  31. data/lib/stripe/resources/application_fee_refund.rb +31 -0
  32. data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
  33. data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
  34. data/lib/stripe/resources/bank_account.rb +43 -0
  35. data/lib/stripe/{issuing/dispute.rb → resources/billing_portal/configuration.rb} +4 -3
  36. data/lib/stripe/resources/billing_portal/session.rb +12 -0
  37. data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +4 -3
  38. data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
  39. data/lib/stripe/resources/capability.rb +34 -0
  40. data/lib/stripe/{card.rb → resources/card.rb} +13 -4
  41. data/lib/stripe/resources/cash_balance.rb +22 -0
  42. data/lib/stripe/resources/charge.rb +32 -0
  43. data/lib/stripe/resources/checkout/session.rb +27 -0
  44. data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
  45. data/lib/stripe/{coupon.rb → resources/coupon.rb} +3 -2
  46. data/lib/stripe/resources/credit_note.rb +33 -0
  47. data/lib/stripe/resources/credit_note_line_item.rb +8 -0
  48. data/lib/stripe/resources/customer.rb +74 -0
  49. data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
  50. data/lib/stripe/resources/discount.rb +8 -0
  51. data/lib/stripe/resources/dispute.rb +22 -0
  52. data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +6 -2
  53. data/lib/stripe/{event.rb → resources/event.rb} +2 -1
  54. data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
  55. data/lib/stripe/resources/file.rb +36 -0
  56. data/lib/stripe/{file_link.rb → resources/file_link.rb} +3 -2
  57. data/lib/stripe/resources/financial_connections/account.rb +31 -0
  58. data/lib/stripe/resources/financial_connections/account_owner.rb +10 -0
  59. data/lib/stripe/resources/financial_connections/account_ownership.rb +10 -0
  60. data/lib/stripe/resources/financial_connections/session.rb +12 -0
  61. data/lib/stripe/resources/funding_instructions.rb +16 -0
  62. data/lib/stripe/resources/identity/verification_report.rb +12 -0
  63. data/lib/stripe/resources/identity/verification_session.rb +35 -0
  64. data/lib/stripe/resources/invoice.rb +83 -0
  65. data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +3 -2
  66. data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +2 -1
  67. data/lib/stripe/resources/issuing/authorization.rb +34 -0
  68. data/lib/stripe/resources/issuing/card.rb +25 -0
  69. data/lib/stripe/resources/issuing/card_details.rb +10 -0
  70. data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +3 -2
  71. data/lib/stripe/resources/issuing/dispute.rb +25 -0
  72. data/lib/stripe/{issuing → resources/issuing}/transaction.rb +3 -2
  73. data/lib/stripe/resources/line_item.rb +8 -0
  74. data/lib/stripe/resources/login_link.rb +15 -0
  75. data/lib/stripe/resources/mandate.rb +8 -0
  76. data/lib/stripe/resources/order.rb +33 -0
  77. data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
  78. data/lib/stripe/resources/payment_intent.rb +82 -0
  79. data/lib/stripe/resources/payment_link.rb +23 -0
  80. data/lib/stripe/resources/payment_method.rb +33 -0
  81. data/lib/stripe/resources/payout.rb +33 -0
  82. data/lib/stripe/{person.rb → resources/person.rb} +9 -3
  83. data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
  84. data/lib/stripe/resources/price.rb +21 -0
  85. data/lib/stripe/resources/product.rb +22 -0
  86. data/lib/stripe/resources/promotion_code.rb +12 -0
  87. data/lib/stripe/resources/quote.rb +105 -0
  88. data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
  89. data/lib/stripe/{radar → resources/radar}/value_list.rb +3 -2
  90. data/lib/stripe/{radar → resources/radar}/value_list_item.rb +3 -2
  91. data/lib/stripe/{recipient.rb → resources/recipient.rb} +3 -6
  92. data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
  93. data/lib/stripe/resources/refund.rb +42 -0
  94. data/lib/stripe/{reporting → resources/reporting}/report_run.rb +3 -2
  95. data/lib/stripe/{reporting → resources/reporting}/report_type.rb +3 -2
  96. data/lib/stripe/resources/reversal.rb +30 -0
  97. data/lib/stripe/resources/review.rb +21 -0
  98. data/lib/stripe/resources/setup_attempt.rb +10 -0
  99. data/lib/stripe/resources/setup_intent.rb +43 -0
  100. data/lib/stripe/{product.rb → resources/shipping_rate.rb} +4 -4
  101. data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +3 -2
  102. data/lib/stripe/{sku.rb → resources/sku.rb} +4 -3
  103. data/lib/stripe/resources/source.rb +47 -0
  104. data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +2 -1
  105. data/lib/stripe/resources/subscription.rb +35 -0
  106. data/lib/stripe/resources/subscription_item.rb +26 -0
  107. data/lib/stripe/resources/subscription_schedule.rb +33 -0
  108. data/lib/stripe/resources/tax_code.rb +10 -0
  109. data/lib/stripe/resources/tax_id.rb +27 -0
  110. data/lib/stripe/{refund.rb → resources/tax_rate.rb} +3 -2
  111. data/lib/stripe/{terminal/reader.rb → resources/terminal/configuration.rb} +3 -2
  112. data/lib/stripe/resources/terminal/connection_token.rb +12 -0
  113. data/lib/stripe/{terminal → resources/terminal}/location.rb +3 -2
  114. data/lib/stripe/resources/terminal/reader.rb +75 -0
  115. data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
  116. data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
  117. data/lib/stripe/{token.rb → resources/token.rb} +2 -1
  118. data/lib/stripe/resources/topup.rb +23 -0
  119. data/lib/stripe/resources/transfer.rb +27 -0
  120. data/lib/stripe/resources/usage_record.rb +8 -0
  121. data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +2 -1
  122. data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +3 -2
  123. data/lib/stripe/resources.rb +100 -0
  124. data/lib/stripe/search_result_object.rb +86 -0
  125. data/lib/stripe/singleton_api_resource.rb +3 -1
  126. data/lib/stripe/stripe_client.rb +661 -266
  127. data/lib/stripe/stripe_configuration.rb +194 -0
  128. data/lib/stripe/stripe_object.rb +80 -61
  129. data/lib/stripe/stripe_response.rb +87 -27
  130. data/lib/stripe/util.rb +128 -117
  131. data/lib/stripe/version.rb +1 -1
  132. data/lib/stripe/webhook.rb +43 -10
  133. data/lib/stripe.rb +46 -197
  134. data/stripe.gemspec +24 -8
  135. metadata +123 -283
  136. data/.gitattributes +0 -4
  137. data/.github/ISSUE_TEMPLATE.md +0 -5
  138. data/.gitignore +0 -8
  139. data/.rubocop.yml +0 -32
  140. data/.rubocop_todo.yml +0 -50
  141. data/.travis.yml +0 -42
  142. data/lib/stripe/alipay_account.rb +0 -27
  143. data/lib/stripe/application_fee.rb +0 -23
  144. data/lib/stripe/application_fee_refund.rb +0 -22
  145. data/lib/stripe/bank_account.rb +0 -32
  146. data/lib/stripe/bitcoin_transaction.rb +0 -15
  147. data/lib/stripe/charge.rb +0 -84
  148. data/lib/stripe/checkout/session.rb +0 -11
  149. data/lib/stripe/customer.rb +0 -90
  150. data/lib/stripe/dispute.rb +0 -19
  151. data/lib/stripe/file.rb +0 -37
  152. data/lib/stripe/invoice.rb +0 -48
  153. data/lib/stripe/issuer_fraud_record.rb +0 -9
  154. data/lib/stripe/issuing/authorization.rb +0 -22
  155. data/lib/stripe/issuing/card.rb +0 -18
  156. data/lib/stripe/issuing/card_details.rb +0 -9
  157. data/lib/stripe/login_link.rb +0 -11
  158. data/lib/stripe/order.rb +0 -31
  159. data/lib/stripe/payment_intent.rb +0 -26
  160. data/lib/stripe/payment_method.rb +0 -23
  161. data/lib/stripe/payout.rb +0 -20
  162. data/lib/stripe/reversal.rb +0 -22
  163. data/lib/stripe/review.rb +0 -14
  164. data/lib/stripe/source.rb +0 -38
  165. data/lib/stripe/subscription.rb +0 -25
  166. data/lib/stripe/subscription_item.rb +0 -17
  167. data/lib/stripe/subscription_schedule.rb +0 -32
  168. data/lib/stripe/subscription_schedule_revision.rb +0 -25
  169. data/lib/stripe/terminal/connection_token.rb +0 -11
  170. data/lib/stripe/topup.rb +0 -16
  171. data/lib/stripe/transfer.rb +0 -23
  172. data/lib/stripe/usage_record.rb +0 -14
  173. data/test/api_stub_helpers.rb +0 -1
  174. data/test/openapi/README.md +0 -9
  175. data/test/stripe/account_external_accounts_operations_test.rb +0 -69
  176. data/test/stripe/account_link_test.rb +0 -18
  177. data/test/stripe/account_login_links_operations_test.rb +0 -21
  178. data/test/stripe/account_persons_operations_test.rb +0 -70
  179. data/test/stripe/account_test.rb +0 -256
  180. data/test/stripe/alipay_account_test.rb +0 -37
  181. data/test/stripe/api_operations_test.rb +0 -81
  182. data/test/stripe/api_resource_test.rb +0 -526
  183. data/test/stripe/apple_pay_domain_test.rb +0 -33
  184. data/test/stripe/application_fee_refund_test.rb +0 -37
  185. data/test/stripe/application_fee_refunds_operations_test.rb +0 -56
  186. data/test/stripe/application_fee_test.rb +0 -14
  187. data/test/stripe/balance_test.rb +0 -13
  188. data/test/stripe/bank_account_test.rb +0 -36
  189. data/test/stripe/charge_test.rb +0 -59
  190. data/test/stripe/checkout/session_test.rb +0 -41
  191. data/test/stripe/country_spec_test.rb +0 -20
  192. data/test/stripe/coupon_test.rb +0 -51
  193. data/test/stripe/customer_card_test.rb +0 -42
  194. data/test/stripe/customer_sources_operations_test.rb +0 -64
  195. data/test/stripe/customer_test.rb +0 -115
  196. data/test/stripe/dispute_test.rb +0 -42
  197. data/test/stripe/ephemeral_key_test.rb +0 -86
  198. data/test/stripe/errors_test.rb +0 -20
  199. data/test/stripe/exchange_rate_test.rb +0 -20
  200. data/test/stripe/file_link_test.rb +0 -41
  201. data/test/stripe/file_test.rb +0 -73
  202. data/test/stripe/file_upload_test.rb +0 -76
  203. data/test/stripe/invoice_item_test.rb +0 -55
  204. data/test/stripe/invoice_line_item_test.rb +0 -8
  205. data/test/stripe/invoice_test.rb +0 -161
  206. data/test/stripe/issuer_fraud_record_test.rb +0 -20
  207. data/test/stripe/issuing/authorization_test.rb +0 -50
  208. data/test/stripe/issuing/card_test.rb +0 -53
  209. data/test/stripe/issuing/cardholder_test.rb +0 -53
  210. data/test/stripe/issuing/dispute_test.rb +0 -45
  211. data/test/stripe/issuing/transaction_test.rb +0 -48
  212. data/test/stripe/list_object_test.rb +0 -156
  213. data/test/stripe/login_link_test.rb +0 -37
  214. data/test/stripe/oauth_test.rb +0 -88
  215. data/test/stripe/order_return_test.rb +0 -21
  216. data/test/stripe/order_test.rb +0 -57
  217. data/test/stripe/payment_intent_test.rb +0 -80
  218. data/test/stripe/payment_method_test.rb +0 -66
  219. data/test/stripe/payout_test.rb +0 -50
  220. data/test/stripe/person_test.rb +0 -46
  221. data/test/stripe/plan_test.rb +0 -92
  222. data/test/stripe/product_test.rb +0 -49
  223. data/test/stripe/radar/value_list_item_test.rb +0 -38
  224. data/test/stripe/radar/value_list_test.rb +0 -51
  225. data/test/stripe/recipient_test.rb +0 -49
  226. data/test/stripe/refund_test.rb +0 -39
  227. data/test/stripe/reporting/report_run_test.rb +0 -33
  228. data/test/stripe/reporting/report_type_test.rb +0 -22
  229. data/test/stripe/reversal_test.rb +0 -43
  230. data/test/stripe/review_test.rb +0 -27
  231. data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
  232. data/test/stripe/sku_test.rb +0 -50
  233. data/test/stripe/source_test.rb +0 -86
  234. data/test/stripe/source_transaction_test.rb +0 -19
  235. data/test/stripe/stripe_client_test.rb +0 -823
  236. data/test/stripe/stripe_object_test.rb +0 -525
  237. data/test/stripe/stripe_response_test.rb +0 -49
  238. data/test/stripe/subscription_item_test.rb +0 -53
  239. data/test/stripe/subscription_schedule_revision_test.rb +0 -37
  240. data/test/stripe/subscription_schedule_revisions_operations_test.rb +0 -35
  241. data/test/stripe/subscription_schedule_test.rb +0 -64
  242. data/test/stripe/subscription_test.rb +0 -60
  243. data/test/stripe/terminal/connection_token_test.rb +0 -16
  244. data/test/stripe/terminal/location_test.rb +0 -58
  245. data/test/stripe/terminal/reader_test.rb +0 -52
  246. data/test/stripe/three_d_secure_test.rb +0 -23
  247. data/test/stripe/topup_test.rb +0 -54
  248. data/test/stripe/transfer_reversals_operations_test.rb +0 -57
  249. data/test/stripe/transfer_test.rb +0 -43
  250. data/test/stripe/usage_record_summary_test.rb +0 -19
  251. data/test/stripe/usage_record_test.rb +0 -28
  252. data/test/stripe/util_test.rb +0 -402
  253. data/test/stripe/webhook_endpoint_test.rb +0 -42
  254. data/test/stripe/webhook_test.rb +0 -96
  255. data/test/stripe_mock.rb +0 -77
  256. data/test/stripe_test.rb +0 -63
  257. data/test/test_data.rb +0 -61
  258. data/test/test_helper.rb +0 -73
@@ -1,32 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class SubscriptionSchedule < APIResource
5
- extend Stripe::APIOperations::List
6
- extend Stripe::APIOperations::Create
7
- include Stripe::APIOperations::Save
8
- extend Stripe::APIOperations::NestedResource
9
-
10
- OBJECT_NAME = "subscription_schedule".freeze
11
-
12
- nested_resource_class_methods :revision,
13
- operations: %i[retrieve list]
14
-
15
- def cancel(params = {}, opts = {})
16
- url = resource_url + "/cancel"
17
- resp, opts = request(:post, url, params, opts)
18
- initialize_from(resp.data, opts)
19
- end
20
-
21
- def release(params = {}, opts = {})
22
- url = resource_url + "/release"
23
- resp, opts = request(:post, url, params, opts)
24
- initialize_from(resp.data, opts)
25
- end
26
-
27
- def revisions(params = {}, opts = {})
28
- resp, opts = request(:get, resource_url + "/revisions", params, Util.normalize_opts(opts))
29
- Util.convert_to_stripe_object(resp.data, opts)
30
- end
31
- end
32
- end
@@ -1,25 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class SubscriptionScheduleRevision < APIResource
5
- extend Stripe::APIOperations::List
6
-
7
- OBJECT_NAME = "subscription_schedule_revision".freeze
8
-
9
- def resource_url
10
- if !respond_to?(:schedule) || schedule.nil?
11
- raise NotImplementedError,
12
- "Subscription Schedule Revisions cannot be accessed without a Subscription Schedule ID."
13
- end
14
- "#{SubscriptionSchedule.resource_url}/#{CGI.escape(schedule)}/revisions/#{CGI.escape(id)}"
15
- end
16
-
17
- def self.retrieve(_id, _opts = {})
18
- raise NotImplementedError, "Subscription Schedule Revisions cannot be retrieved without a Subscription Schedule ID. Retrieve it using schedule.revisions.retrieve('revision_id')"
19
- end
20
-
21
- def self.list(_id, _opts = {})
22
- raise NotImplementedError, "Subscription Schedule Revisions cannot be listed without a Subscription Schedule ID. List those using schedule.revisions"
23
- end
24
- end
25
- end
@@ -1,11 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- module Terminal
5
- class ConnectionToken < Stripe::APIResource
6
- extend Stripe::APIOperations::Create
7
-
8
- OBJECT_NAME = "terminal.connection_token".freeze
9
- end
10
- end
11
- end
data/lib/stripe/topup.rb DELETED
@@ -1,16 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class Topup < APIResource
5
- extend Stripe::APIOperations::List
6
- extend Stripe::APIOperations::Create
7
- include Stripe::APIOperations::Save
8
-
9
- OBJECT_NAME = "topup".freeze
10
-
11
- def cancel
12
- resp, api_key = request(:post, resource_url + "/cancel")
13
- initialize_from(resp.data, api_key)
14
- end
15
- end
16
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class Transfer < APIResource
5
- extend Stripe::APIOperations::List
6
- extend Stripe::APIOperations::Create
7
- include Stripe::APIOperations::Save
8
- extend Stripe::APIOperations::NestedResource
9
-
10
- OBJECT_NAME = "transfer".freeze
11
-
12
- nested_resource_class_methods :reversal, operations: %i[create retrieve update list]
13
-
14
- def cancel
15
- resp, api_key = request(:post, cancel_url)
16
- initialize_from(resp.data, api_key)
17
- end
18
-
19
- def cancel_url
20
- resource_url + "/cancel"
21
- end
22
- end
23
- end
@@ -1,14 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class UsageRecord < APIResource
5
- def self.create(params = {}, opts = {})
6
- raise(ArgumentError, "Params must have a subscription_item key") unless params.key?(:subscription_item)
7
- req_params = params.clone.delete_if { |key, _value| key == :subscription_item }
8
- resp, opts = request(:post, "/v1/subscription_items/#{params[:subscription_item]}/usage_records", req_params, opts)
9
- Util.convert_to_stripe_object(resp.data, opts)
10
- end
11
-
12
- OBJECT_NAME = "usage_record".freeze
13
- end
14
- end
@@ -1 +0,0 @@
1
- # frozen_string_literal: true
@@ -1,9 +0,0 @@
1
- ## Using custom OpenAPI specification and fixtures files
2
-
3
- You can place custom OpenAPI specification and fixtures files in this
4
- directory. The files must be in JSON format, and must be named `spec3.json`
5
- and `fixtures3.json` respectively.
6
-
7
- If those files are present, the test suite will start its own stripe-mock
8
- process on a random available port. In order for this to work, `stripe-mock`
9
- must be on the `PATH` in the environment used to run the test suite.
@@ -1,69 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../../test_helper", __FILE__)
4
-
5
- module Stripe
6
- class AccountExternalAccountsOperationsTest < Test::Unit::TestCase
7
- setup do
8
- @account_id = "acct_123"
9
- @external_account_id = "ba_123"
10
- end
11
-
12
- context "#create_external_account" do
13
- should "create an external account" do
14
- external_account = Stripe::Account.create_external_account(
15
- @account_id,
16
- external_account: "btok_123"
17
- )
18
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{@account_id}/external_accounts"
19
- assert external_account.is_a?(Stripe::BankAccount)
20
- end
21
- end
22
-
23
- context "#retrieve_external_account" do
24
- should "retrieve an external account" do
25
- external_account = Stripe::Account.retrieve_external_account(
26
- @account_id,
27
- @external_account_id
28
- )
29
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/#{@account_id}/external_accounts/#{@external_account_id}"
30
- assert external_account.is_a?(Stripe::BankAccount)
31
- end
32
- end
33
-
34
- context "#update_external_account" do
35
- should "update an external account" do
36
- external_account = Stripe::Account.update_external_account(
37
- @account_id,
38
- @external_account_id,
39
- metadata: { foo: "bar" }
40
- )
41
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{@account_id}/external_accounts/#{@external_account_id}"
42
- assert external_account.is_a?(Stripe::BankAccount)
43
- end
44
- end
45
-
46
- context "#delete_external_account" do
47
- should "delete an external_account" do
48
- external_account = Stripe::Account.delete_external_account(
49
- @account_id,
50
- @external_account_id
51
- )
52
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/#{@account_id}/external_accounts/#{@external_account_id}"
53
- assert external_account.deleted
54
- assert_equal @external_account_id, external_account.id
55
- end
56
- end
57
-
58
- context "#list_external_accounts" do
59
- should "list the account's external accounts" do
60
- external_accounts = Stripe::Account.list_external_accounts(
61
- @account_id
62
- )
63
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/#{@account_id}/external_accounts"
64
- assert external_accounts.is_a?(Stripe::ListObject)
65
- assert external_accounts.data.is_a?(Array)
66
- end
67
- end
68
- end
69
- end
@@ -1,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../../test_helper", __FILE__)
4
-
5
- module Stripe
6
- class AccountLinkTest < Test::Unit::TestCase
7
- should "be creatable" do
8
- link = Stripe::AccountLink.create(
9
- account: "acct_123",
10
- failure_url: "https://stripe.com/failure",
11
- success_url: "https://stripe.com/success",
12
- type: "custom_account_verification"
13
- )
14
- assert_requested :post, "#{Stripe.api_base}/v1/account_links"
15
- assert link.is_a?(Stripe::AccountLink)
16
- end
17
- end
18
- end
@@ -1,21 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../../test_helper", __FILE__)
4
-
5
- module Stripe
6
- class AccountLoginLinksOperationsTest < Test::Unit::TestCase
7
- setup do
8
- @account_id = "acct_123"
9
- end
10
-
11
- context "#create_login_link" do
12
- should "create a login link" do
13
- login_link = Stripe::Account.create_login_link(
14
- @account_id
15
- )
16
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{@account_id}/login_links"
17
- assert login_link.is_a?(Stripe::LoginLink)
18
- end
19
- end
20
- end
21
- end
@@ -1,70 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../../test_helper", __FILE__)
4
-
5
- module Stripe
6
- class AccountPersonsOperationsTest < Test::Unit::TestCase
7
- setup do
8
- @account_id = "acct_123"
9
- @person_id = "person_123"
10
- end
11
-
12
- context "#create_person" do
13
- should "create a person" do
14
- person = Stripe::Account.create_person(
15
- @account_id,
16
- first_name: "John",
17
- last_name: "Doe"
18
- )
19
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{@account_id}/persons"
20
- assert person.is_a?(Stripe::Person)
21
- end
22
- end
23
-
24
- context "#retrieve_person" do
25
- should "retrieve a person" do
26
- person = Stripe::Account.retrieve_person(
27
- @account_id,
28
- @person_id
29
- )
30
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/#{@account_id}/persons/#{@person_id}"
31
- assert person.is_a?(Stripe::Person)
32
- end
33
- end
34
-
35
- context "#update_person" do
36
- should "update a person" do
37
- person = Stripe::Account.update_person(
38
- @account_id,
39
- @person_id,
40
- first_name: "John"
41
- )
42
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{@account_id}/persons/#{@person_id}"
43
- assert person.is_a?(Stripe::Person)
44
- end
45
- end
46
-
47
- context "#delete_person" do
48
- should "delete an person" do
49
- person = Stripe::Account.delete_person(
50
- @account_id,
51
- @person_id
52
- )
53
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/#{@account_id}/persons/#{@person_id}"
54
- assert person.deleted
55
- assert_equal @person_id, person.id
56
- end
57
- end
58
-
59
- context "#list_persons" do
60
- should "list the account's external accounts" do
61
- persons = Stripe::Account.list_persons(
62
- @account_id
63
- )
64
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/#{@account_id}/persons"
65
- assert persons.is_a?(Stripe::ListObject)
66
- assert persons.data.is_a?(Array)
67
- end
68
- end
69
- end
70
- end
@@ -1,256 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../../test_helper", __FILE__)
4
-
5
- module Stripe
6
- class AccountTest < Test::Unit::TestCase
7
- should "be listable" do
8
- accounts = Stripe::Account.list
9
- assert_requested :get, "#{Stripe.api_base}/v1/accounts"
10
- assert accounts.data.is_a?(Array)
11
- assert accounts.data[0].is_a?(Stripe::Account)
12
- end
13
-
14
- should "be retrievable using singular endpoint" do
15
- account = Stripe::Account.retrieve
16
- assert_requested :get, "#{Stripe.api_base}/v1/account"
17
- assert account.is_a?(Stripe::Account)
18
- end
19
-
20
- should "be retrievable using plural endpoint" do
21
- account = Stripe::Account.retrieve("acct_123")
22
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123"
23
- assert account.is_a?(Stripe::Account)
24
- end
25
-
26
- should "be rejectable" do
27
- account_data = { id: "acct_foo" }
28
- stub_request(:get, "#{Stripe.api_base}/v1/accounts/acct_foo")
29
- .to_return(body: JSON.generate(account_data))
30
-
31
- stub_request(:post, "#{Stripe.api_base}/v1/accounts/acct_foo/reject")
32
- .to_return(body: JSON.generate(account_data))
33
-
34
- account = Stripe::Account.retrieve("acct_foo")
35
- account.reject(reason: "fraud")
36
- end
37
-
38
- should "be creatable" do
39
- account = Stripe::Account.create(metadata: {}, type: "standard")
40
- assert_requested :post, "#{Stripe.api_base}/v1/accounts"
41
- assert account.is_a?(Stripe::Account)
42
- end
43
-
44
- should "be saveable" do
45
- account = Stripe::Account.retrieve("acct_123")
46
- account.metadata["key"] = "value"
47
- account.save
48
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{account.id}"
49
- end
50
-
51
- should "be updateable" do
52
- account = Stripe::Account.update("acct_123", metadata: { foo: "bar" })
53
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123"
54
- assert account.is_a?(Stripe::Account)
55
- end
56
-
57
- should "be deletable" do
58
- account = Stripe::Account.retrieve("acct_123")
59
- account = account.delete
60
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/#{account.id}"
61
- assert account.is_a?(Stripe::Account)
62
- end
63
-
64
- should "be able to list Persons" do
65
- account = Stripe::Account.retrieve("acct_123")
66
- persons = account.persons
67
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/persons"
68
- assert persons.data.is_a?(Array)
69
- assert persons.data[0].is_a?(Stripe::Person)
70
- end
71
-
72
- context "#bank_account=" do
73
- should "warn that #bank_account= is deprecated" do
74
- old_stderr = $stderr
75
- $stderr = StringIO.new
76
- begin
77
- account = Stripe::Account.retrieve("acct_123")
78
- account.bank_account = "tok_123"
79
- message = "NOTE: Stripe::Account#bank_account= is " \
80
- "deprecated; use #external_account= instead"
81
- assert_match Regexp.new(message), $stderr.string
82
- ensure
83
- $stderr = old_stderr
84
- end
85
- end
86
- end
87
-
88
- context "#deauthorize" do
89
- should "deauthorize an account" do
90
- account = Stripe::Account.retrieve("acct_123")
91
-
92
- # Unfortunately, the OpenAPI spec doesn't yet cover anything under the
93
- # Connect endpoints, so for just stub this out with Webmock.
94
- stub_request(:post, "#{Stripe.connect_base}/oauth/deauthorize")
95
- .with(body: { "client_id" => "ca_1234", "stripe_user_id" => account.id })
96
- .to_return(body: JSON.generate("stripe_user_id" => account.id))
97
- account.deauthorize("ca_1234", "sk_test_1234")
98
- end
99
- end
100
-
101
- context "#legal_entity=" do
102
- should "disallow direct overrides" do
103
- account = Stripe::Account.construct_from(
104
- id: "acct_123",
105
- legal_entity: {
106
- first_name: "name",
107
- }
108
- )
109
-
110
- assert_raise NoMethodError do
111
- account.legal_entity = { first_name: "Blah" }
112
- end
113
-
114
- account.legal_entity.first_name = "Blah"
115
- end
116
- end
117
-
118
- context "#serialize_params" do
119
- should "serialize a new additional_owners" do
120
- obj = Stripe::Util.convert_to_stripe_object({
121
- object: "account",
122
- legal_entity: Stripe::StripeObject.construct_from({
123
- }),
124
- }, {})
125
- obj.legal_entity.additional_owners = [
126
- { first_name: "Joe" },
127
- { first_name: "Jane" },
128
- ]
129
-
130
- expected = {
131
- legal_entity: {
132
- additional_owners: {
133
- "0" => { first_name: "Joe" },
134
- "1" => { first_name: "Jane" },
135
- },
136
- },
137
- }
138
- assert_equal(expected, obj.serialize_params)
139
- end
140
-
141
- should "serialize on an partially changed additional_owners" do
142
- obj = Stripe::Util.convert_to_stripe_object({
143
- object: "account",
144
- legal_entity: {
145
- additional_owners: [
146
- Stripe::StripeObject.construct_from(first_name: "Joe"),
147
- Stripe::StripeObject.construct_from(first_name: "Jane"),
148
- ],
149
- },
150
- }, {})
151
- obj.legal_entity.additional_owners[1].first_name = "Stripe"
152
-
153
- expected = {
154
- legal_entity: {
155
- additional_owners: {
156
- "1" => { first_name: "Stripe" },
157
- },
158
- },
159
- }
160
- assert_equal(expected, obj.serialize_params)
161
- end
162
-
163
- should "serialize on an unchanged additional_owners" do
164
- obj = Stripe::Util.convert_to_stripe_object({
165
- object: "account",
166
- legal_entity: {
167
- additional_owners: [
168
- Stripe::StripeObject.construct_from(first_name: "Joe"),
169
- Stripe::StripeObject.construct_from(first_name: "Jane"),
170
- ],
171
- },
172
- }, {})
173
-
174
- expected = {
175
- legal_entity: {
176
- additional_owners: {},
177
- },
178
- }
179
- assert_equal(expected, obj.serialize_params)
180
- end
181
-
182
- # Note that the empty string that we send for this one has a special
183
- # meaning for the server, which interprets it as an array unset.
184
- should "serialize on an unset additional_owners" do
185
- obj = Stripe::Util.convert_to_stripe_object({
186
- object: "account",
187
- legal_entity: {
188
- additional_owners: [
189
- Stripe::StripeObject.construct_from(first_name: "Joe"),
190
- Stripe::StripeObject.construct_from(first_name: "Jane"),
191
- ],
192
- },
193
- }, {})
194
- obj.legal_entity.additional_owners = nil
195
-
196
- expected = {
197
- legal_entity: {
198
- additional_owners: "",
199
- },
200
- }
201
- assert_equal(expected, obj.serialize_params)
202
- end
203
-
204
- should "serialize on a new individual" do
205
- obj = Stripe::Util.convert_to_stripe_object({
206
- object: "account",
207
- }, {})
208
- obj.individual = { first_name: "Jane" }
209
-
210
- expected = { individual: { first_name: "Jane" } }
211
- assert_equal(expected, obj.serialize_params)
212
- end
213
-
214
- should "serialize on a partially changed individual" do
215
- obj = Stripe::Util.convert_to_stripe_object({
216
- object: "account",
217
- individual: Stripe::Util.convert_to_stripe_object({
218
- object: "person",
219
- first_name: "Jenny",
220
- }, {}),
221
- }, {})
222
- obj.individual = { first_name: "Jane" }
223
-
224
- expected = { individual: { first_name: "Jane" } }
225
- assert_equal(expected, obj.serialize_params)
226
- end
227
-
228
- should "serialize on an unchanged individual" do
229
- obj = Stripe::Util.convert_to_stripe_object({
230
- object: "account",
231
- individual: Stripe::Util.convert_to_stripe_object({
232
- object: "person",
233
- first_name: "Jenny",
234
- }, {}),
235
- }, {})
236
-
237
- expected = { individual: {} }
238
- assert_equal(expected, obj.serialize_params)
239
- end
240
-
241
- should "serialize on an unset individual" do
242
- obj = Stripe::Util.convert_to_stripe_object({
243
- object: "account",
244
- individual: Stripe::Util.convert_to_stripe_object({
245
- object: "person",
246
- first_name: "Jenny",
247
- }, {}),
248
- }, {})
249
- obj.individual = nil
250
-
251
- expected = { individual: "" }
252
- assert_equal(expected, obj.serialize_params)
253
- end
254
- end
255
- end
256
- end
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../../test_helper", __FILE__)
4
-
5
- module Stripe
6
- class AlipayAccountTest < Test::Unit::TestCase
7
- context "#resource_url" do
8
- should "return a resource URL" do
9
- alipay_account = Stripe::AlipayAccount.construct_from(
10
- id: "aliacc_123",
11
- customer: "cus_123"
12
- )
13
- assert_equal "/v1/customers/cus_123/sources/aliacc_123",
14
- alipay_account.resource_url
15
- end
16
-
17
- should "raise without a customer" do
18
- alipay_account = Stripe::AlipayAccount.construct_from(id: "aliacc_123")
19
- assert_raises NotImplementedError do
20
- alipay_account.resource_url
21
- end
22
- end
23
- end
24
-
25
- should "raise on #retrieve" do
26
- assert_raises NotImplementedError do
27
- Stripe::AlipayAccount.retrieve("aliacc_123")
28
- end
29
- end
30
-
31
- should "raise on #update" do
32
- assert_raises NotImplementedError do
33
- Stripe::AlipayAccount.update("aliacc_123", {})
34
- end
35
- end
36
- end
37
- end