stripe 5.1.0 → 5.55.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (224) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +241 -17
  3. data/CODE_OF_CONDUCT.md +77 -0
  4. data/Gemfile +9 -5
  5. data/Makefile +7 -0
  6. data/README.md +105 -37
  7. data/VERSION +1 -1
  8. data/lib/stripe/api_operations/create.rb +1 -1
  9. data/lib/stripe/api_operations/delete.rb +7 -3
  10. data/lib/stripe/api_operations/list.rb +1 -6
  11. data/lib/stripe/api_operations/nested_resource.rb +29 -26
  12. data/lib/stripe/api_operations/request.rb +82 -6
  13. data/lib/stripe/api_operations/save.rb +7 -4
  14. data/lib/stripe/api_operations/search.rb +19 -0
  15. data/lib/stripe/api_resource.rb +13 -19
  16. data/lib/stripe/api_resource_test_helpers.rb +47 -0
  17. data/lib/stripe/connection_manager.rb +85 -26
  18. data/lib/stripe/error_object.rb +2 -3
  19. data/lib/stripe/errors.rb +9 -1
  20. data/lib/stripe/instrumentation.rb +84 -0
  21. data/lib/stripe/list_object.rb +32 -4
  22. data/lib/stripe/oauth.rb +8 -6
  23. data/lib/stripe/object_types.rb +26 -1
  24. data/lib/stripe/resources/account.rb +5 -9
  25. data/lib/stripe/resources/account_link.rb +1 -0
  26. data/lib/stripe/resources/apple_pay_domain.rb +1 -0
  27. data/lib/stripe/resources/application_fee.rb +1 -0
  28. data/lib/stripe/resources/application_fee_refund.rb +2 -1
  29. data/lib/stripe/resources/balance.rb +1 -0
  30. data/lib/stripe/resources/balance_transaction.rb +1 -0
  31. data/lib/stripe/resources/bank_account.rb +2 -1
  32. data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
  33. data/lib/stripe/resources/billing_portal/session.rb +12 -0
  34. data/lib/stripe/resources/bitcoin_receiver.rb +1 -0
  35. data/lib/stripe/resources/bitcoin_transaction.rb +3 -2
  36. data/lib/stripe/resources/capability.rb +2 -1
  37. data/lib/stripe/resources/card.rb +1 -0
  38. data/lib/stripe/resources/cash_balance.rb +22 -0
  39. data/lib/stripe/resources/charge.rb +10 -0
  40. data/lib/stripe/resources/checkout/session.rb +16 -0
  41. data/lib/stripe/resources/country_spec.rb +1 -0
  42. data/lib/stripe/resources/coupon.rb +1 -0
  43. data/lib/stripe/resources/credit_note.rb +11 -0
  44. data/lib/stripe/resources/credit_note_line_item.rb +8 -0
  45. data/lib/stripe/resources/customer.rb +41 -2
  46. data/lib/stripe/resources/customer_balance_transaction.rb +3 -2
  47. data/lib/stripe/resources/discount.rb +1 -0
  48. data/lib/stripe/resources/dispute.rb +1 -0
  49. data/lib/stripe/resources/ephemeral_key.rb +1 -0
  50. data/lib/stripe/resources/event.rb +1 -0
  51. data/lib/stripe/resources/exchange_rate.rb +1 -0
  52. data/lib/stripe/resources/file.rb +3 -1
  53. data/lib/stripe/resources/file_link.rb +1 -0
  54. data/lib/stripe/resources/financial_connections/account.rb +31 -0
  55. data/lib/stripe/resources/financial_connections/account_owner.rb +10 -0
  56. data/lib/stripe/resources/financial_connections/account_ownership.rb +10 -0
  57. data/lib/stripe/resources/financial_connections/session.rb +12 -0
  58. data/lib/stripe/resources/funding_instructions.rb +16 -0
  59. data/lib/stripe/resources/identity/verification_report.rb +12 -0
  60. data/lib/stripe/resources/identity/verification_session.rb +35 -0
  61. data/lib/stripe/resources/invoice.rb +12 -2
  62. data/lib/stripe/resources/invoice_item.rb +1 -0
  63. data/lib/stripe/resources/invoice_line_item.rb +1 -0
  64. data/lib/stripe/resources/issuing/authorization.rb +1 -0
  65. data/lib/stripe/resources/issuing/card.rb +1 -0
  66. data/lib/stripe/resources/issuing/card_details.rb +2 -1
  67. data/lib/stripe/resources/issuing/cardholder.rb +1 -0
  68. data/lib/stripe/resources/issuing/dispute.rb +12 -0
  69. data/lib/stripe/resources/issuing/transaction.rb +1 -0
  70. data/lib/stripe/resources/line_item.rb +8 -0
  71. data/lib/stripe/resources/login_link.rb +1 -0
  72. data/lib/stripe/resources/mandate.rb +8 -0
  73. data/lib/stripe/resources/order.rb +1 -0
  74. data/lib/stripe/resources/order_return.rb +1 -0
  75. data/lib/stripe/resources/payment_intent.rb +40 -0
  76. data/lib/stripe/resources/payment_link.rb +23 -0
  77. data/lib/stripe/resources/payment_method.rb +1 -0
  78. data/lib/stripe/resources/payout.rb +11 -0
  79. data/lib/stripe/resources/person.rb +1 -0
  80. data/lib/stripe/resources/plan.rb +1 -0
  81. data/lib/stripe/resources/price.rb +21 -0
  82. data/lib/stripe/resources/product.rb +10 -0
  83. data/lib/stripe/resources/promotion_code.rb +12 -0
  84. data/lib/stripe/resources/quote.rb +105 -0
  85. data/lib/stripe/resources/radar/early_fraud_warning.rb +1 -0
  86. data/lib/stripe/resources/radar/value_list.rb +1 -0
  87. data/lib/stripe/resources/radar/value_list_item.rb +1 -0
  88. data/lib/stripe/resources/recipient.rb +1 -0
  89. data/lib/stripe/resources/refund.rb +31 -0
  90. data/lib/stripe/resources/reporting/report_run.rb +1 -0
  91. data/lib/stripe/resources/reporting/report_type.rb +1 -0
  92. data/lib/stripe/resources/reversal.rb +3 -2
  93. data/lib/stripe/resources/review.rb +1 -0
  94. data/lib/stripe/resources/setup_attempt.rb +10 -0
  95. data/lib/stripe/resources/setup_intent.rb +11 -0
  96. data/lib/stripe/resources/shipping_rate.rb +12 -0
  97. data/lib/stripe/resources/sigma/scheduled_query_run.rb +1 -0
  98. data/lib/stripe/resources/sku.rb +1 -0
  99. data/lib/stripe/resources/source.rb +10 -3
  100. data/lib/stripe/resources/source_transaction.rb +1 -0
  101. data/lib/stripe/resources/subscription.rb +10 -0
  102. data/lib/stripe/resources/subscription_item.rb +7 -1
  103. data/lib/stripe/resources/subscription_schedule.rb +1 -0
  104. data/lib/stripe/resources/tax_code.rb +10 -0
  105. data/lib/stripe/resources/tax_id.rb +1 -0
  106. data/lib/stripe/resources/tax_rate.rb +1 -0
  107. data/lib/stripe/resources/terminal/configuration.rb +15 -0
  108. data/lib/stripe/resources/terminal/connection_token.rb +1 -0
  109. data/lib/stripe/resources/terminal/location.rb +1 -0
  110. data/lib/stripe/resources/terminal/reader.rb +61 -0
  111. data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
  112. data/lib/stripe/resources/three_d_secure.rb +1 -0
  113. data/lib/stripe/resources/token.rb +1 -0
  114. data/lib/stripe/resources/topup.rb +1 -0
  115. data/lib/stripe/resources/transfer.rb +1 -0
  116. data/lib/stripe/resources/usage_record.rb +1 -0
  117. data/lib/stripe/resources/usage_record_summary.rb +1 -0
  118. data/lib/stripe/resources/webhook_endpoint.rb +1 -0
  119. data/lib/stripe/resources.rb +23 -0
  120. data/lib/stripe/search_result_object.rb +86 -0
  121. data/lib/stripe/stripe_client.rb +412 -146
  122. data/lib/stripe/stripe_configuration.rb +194 -0
  123. data/lib/stripe/stripe_object.rb +26 -2
  124. data/lib/stripe/stripe_response.rb +80 -52
  125. data/lib/stripe/util.rb +74 -7
  126. data/lib/stripe/version.rb +1 -1
  127. data/lib/stripe/webhook.rb +38 -7
  128. data/lib/stripe.rb +39 -168
  129. data/stripe.gemspec +12 -5
  130. metadata +36 -186
  131. data/.editorconfig +0 -10
  132. data/.gitattributes +0 -4
  133. data/.github/ISSUE_TEMPLATE.md +0 -5
  134. data/.gitignore +0 -8
  135. data/.rubocop.yml +0 -56
  136. data/.rubocop_todo.yml +0 -39
  137. data/.travis.yml +0 -39
  138. data/.vscode/extensions.json +0 -7
  139. data/.vscode/settings.json +0 -8
  140. data/test/api_stub_helpers.rb +0 -1
  141. data/test/openapi/README.md +0 -9
  142. data/test/stripe/account_link_test.rb +0 -18
  143. data/test/stripe/account_test.rb +0 -412
  144. data/test/stripe/alipay_account_test.rb +0 -37
  145. data/test/stripe/api_operations_test.rb +0 -80
  146. data/test/stripe/api_resource_test.rb +0 -613
  147. data/test/stripe/apple_pay_domain_test.rb +0 -46
  148. data/test/stripe/application_fee_refund_test.rb +0 -37
  149. data/test/stripe/application_fee_test.rb +0 -58
  150. data/test/stripe/balance_test.rb +0 -13
  151. data/test/stripe/balance_transaction_test.rb +0 -20
  152. data/test/stripe/bank_account_test.rb +0 -36
  153. data/test/stripe/capability_test.rb +0 -45
  154. data/test/stripe/charge_test.rb +0 -64
  155. data/test/stripe/checkout/session_test.rb +0 -41
  156. data/test/stripe/connection_manager_test.rb +0 -138
  157. data/test/stripe/country_spec_test.rb +0 -20
  158. data/test/stripe/coupon_test.rb +0 -61
  159. data/test/stripe/credit_note_test.rb +0 -61
  160. data/test/stripe/customer_balance_transaction_test.rb +0 -37
  161. data/test/stripe/customer_card_test.rb +0 -42
  162. data/test/stripe/customer_test.rb +0 -226
  163. data/test/stripe/dispute_test.rb +0 -51
  164. data/test/stripe/ephemeral_key_test.rb +0 -93
  165. data/test/stripe/errors_test.rb +0 -41
  166. data/test/stripe/exchange_rate_test.rb +0 -20
  167. data/test/stripe/file_link_test.rb +0 -41
  168. data/test/stripe/file_test.rb +0 -87
  169. data/test/stripe/invoice_item_test.rb +0 -66
  170. data/test/stripe/invoice_line_item_test.rb +0 -8
  171. data/test/stripe/invoice_test.rb +0 -229
  172. data/test/stripe/issuing/authorization_test.rb +0 -72
  173. data/test/stripe/issuing/card_test.rb +0 -62
  174. data/test/stripe/issuing/cardholder_test.rb +0 -53
  175. data/test/stripe/issuing/dispute_test.rb +0 -45
  176. data/test/stripe/issuing/transaction_test.rb +0 -48
  177. data/test/stripe/list_object_test.rb +0 -140
  178. data/test/stripe/login_link_test.rb +0 -37
  179. data/test/stripe/multipart_encoder_test.rb +0 -130
  180. data/test/stripe/oauth_test.rb +0 -88
  181. data/test/stripe/order_return_test.rb +0 -21
  182. data/test/stripe/order_test.rb +0 -82
  183. data/test/stripe/payment_intent_test.rb +0 -107
  184. data/test/stripe/payment_method_test.rb +0 -84
  185. data/test/stripe/payout_test.rb +0 -57
  186. data/test/stripe/person_test.rb +0 -46
  187. data/test/stripe/plan_test.rb +0 -98
  188. data/test/stripe/product_test.rb +0 -59
  189. data/test/stripe/radar/early_fraud_warning_test.rb +0 -22
  190. data/test/stripe/radar/value_list_item_test.rb +0 -48
  191. data/test/stripe/radar/value_list_test.rb +0 -61
  192. data/test/stripe/recipient_test.rb +0 -62
  193. data/test/stripe/refund_test.rb +0 -39
  194. data/test/stripe/reporting/report_run_test.rb +0 -33
  195. data/test/stripe/reporting/report_type_test.rb +0 -22
  196. data/test/stripe/reversal_test.rb +0 -43
  197. data/test/stripe/review_test.rb +0 -27
  198. data/test/stripe/setup_intent_test.rb +0 -84
  199. data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
  200. data/test/stripe/sku_test.rb +0 -60
  201. data/test/stripe/source_test.rb +0 -81
  202. data/test/stripe/source_transaction_test.rb +0 -19
  203. data/test/stripe/stripe_client_test.rb +0 -1039
  204. data/test/stripe/stripe_object_test.rb +0 -497
  205. data/test/stripe/stripe_response_test.rb +0 -95
  206. data/test/stripe/subscription_item_test.rb +0 -75
  207. data/test/stripe/subscription_schedule_test.rb +0 -82
  208. data/test/stripe/subscription_test.rb +0 -80
  209. data/test/stripe/tax_id_test.rb +0 -31
  210. data/test/stripe/tax_rate_test.rb +0 -43
  211. data/test/stripe/terminal/connection_token_test.rb +0 -16
  212. data/test/stripe/terminal/location_test.rb +0 -68
  213. data/test/stripe/terminal/reader_test.rb +0 -62
  214. data/test/stripe/three_d_secure_test.rb +0 -23
  215. data/test/stripe/topup_test.rb +0 -62
  216. data/test/stripe/transfer_test.rb +0 -88
  217. data/test/stripe/usage_record_summary_test.rb +0 -19
  218. data/test/stripe/util_test.rb +0 -402
  219. data/test/stripe/webhook_endpoint_test.rb +0 -59
  220. data/test/stripe/webhook_test.rb +0 -96
  221. data/test/stripe_mock.rb +0 -78
  222. data/test/stripe_test.rb +0 -50
  223. data/test/test_data.rb +0 -61
  224. data/test/test_helper.rb +0 -76
data/.rubocop.yml DELETED
@@ -1,56 +0,0 @@
1
- inherit_from: .rubocop_todo.yml
2
-
3
- AllCops:
4
- DisplayCopNames: true
5
- TargetRubyVersion: 2.3
6
-
7
- Layout/CaseIndentation:
8
- EnforcedStyle: end
9
-
10
- Layout/IndentFirstArrayElement:
11
- EnforcedStyle: consistent
12
-
13
- Layout/IndentFirstHashElement:
14
- EnforcedStyle: consistent
15
-
16
- # This can be re-enabled once we're 2.3+ only and can use the squiggly heredoc
17
- # operator. Prior to that, Rubocop recommended bringing in a library like
18
- # ActiveSupport to get heredoc indentation, which is just terrible.
19
- Layout/IndentHeredoc:
20
- Enabled: false
21
-
22
- Metrics/ClassLength:
23
- Exclude:
24
- - "test/**/*.rb"
25
-
26
- Metrics/LineLength:
27
- Exclude:
28
- - "lib/stripe/resources/**/*.rb"
29
- - "test/**/*.rb"
30
-
31
- Metrics/MethodLength:
32
- # There's ~2 long methods in `StripeClient`. If we want to truncate those a
33
- # little, we could move this to be closer to ~30 (but the default of 10 is
34
- # probably too short).
35
- Max: 50
36
-
37
- Metrics/ModuleLength:
38
- Enabled: false
39
-
40
- Style/AccessModifierDeclarations:
41
- EnforcedStyle: inline
42
-
43
- Style/FrozenStringLiteralComment:
44
- EnforcedStyle: always
45
-
46
- Style/NumericPredicate:
47
- Enabled: false
48
-
49
- Style/StringLiterals:
50
- EnforcedStyle: double_quotes
51
-
52
- Style/TrailingCommaInArrayLiteral:
53
- EnforcedStyleForMultiline: consistent_comma
54
-
55
- Style/TrailingCommaInHashLiteral:
56
- EnforcedStyleForMultiline: consistent_comma
data/.rubocop_todo.yml DELETED
@@ -1,39 +0,0 @@
1
- # This configuration was generated by
2
- # `rubocop --auto-gen-config`
3
- # on 2019-07-30 09:56:31 +0800 using RuboCop version 0.73.0.
4
- # The point is for the user to remove these configuration records
5
- # one by one as the offenses are removed from the code base.
6
- # Note that changes in the inspected code, or installation of new
7
- # versions of RuboCop, may require this file to be generated again.
8
-
9
- # Offense count: 23
10
- Metrics/AbcSize:
11
- Max: 51
12
-
13
- # Offense count: 33
14
- # Configuration parameters: CountComments, ExcludedMethods.
15
- # ExcludedMethods: refine
16
- Metrics/BlockLength:
17
- Max: 509
18
-
19
- # Offense count: 12
20
- # Configuration parameters: CountComments.
21
- Metrics/ClassLength:
22
- Max: 694
23
-
24
- # Offense count: 12
25
- Metrics/CyclomaticComplexity:
26
- Max: 15
27
-
28
- # Offense count: 6
29
- # Configuration parameters: CountKeywordArgs.
30
- Metrics/ParameterLists:
31
- Max: 7
32
-
33
- # Offense count: 8
34
- Metrics/PerceivedComplexity:
35
- Max: 17
36
-
37
- # Offense count: 86
38
- Style/Documentation:
39
- Enabled: false
data/.travis.yml DELETED
@@ -1,39 +0,0 @@
1
- language: ruby
2
-
3
- rvm:
4
- - 2.3
5
- - 2.4
6
- - 2.5
7
- - 2.6
8
- - jruby-9.2.7.0
9
-
10
- notifications:
11
- email:
12
- on_success: never
13
-
14
- sudo: false
15
-
16
- env:
17
- global:
18
- # If changing this number, please also change it in `test/test_helper.rb`.
19
- - STRIPE_MOCK_VERSION=0.63.0
20
-
21
- cache:
22
- directories:
23
- - stripe-mock
24
-
25
- before_install:
26
- # Unpack and start stripe-mock so that the test suite can talk to it
27
- - |
28
- if [ ! -d "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}" ]; then
29
- mkdir -p stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/
30
- curl -L "https://github.com/stripe/stripe-mock/releases/download/v${STRIPE_MOCK_VERSION}/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" -o "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz"
31
- tar -zxf "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}_linux_amd64.tar.gz" -C "stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/"
32
- fi
33
- - |
34
- stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}/stripe-mock > /dev/null &
35
- STRIPE_MOCK_PID=$!
36
- - export PATH="${PATH}:${PWD}/stripe-mock/stripe-mock_${STRIPE_MOCK_VERSION}"
37
-
38
- script:
39
- - bundle exec rake
@@ -1,7 +0,0 @@
1
- {
2
- "recommendations": [
3
- "rebornix.ruby",
4
- "misogi.ruby-rubocop",
5
- "EditorConfig.editorconfig"
6
- ]
7
- }
@@ -1,8 +0,0 @@
1
- {
2
- "editor.formatOnSave": true,
3
- "files.trimTrailingWhitespace": true,
4
-
5
- // Rubocop settings
6
- "ruby.rubocop.configFilePath": ".rubocop.yml",
7
- "ruby.rubocop.onSave": true
8
- }
@@ -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,18 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../test_helper", __dir__)
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,412 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../test_helper", __dir__)
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 = Stripe::Account.retrieve("acct_foo")
28
- account = account.reject(reason: "fraud")
29
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{account.id}/reject"
30
- assert account.is_a?(Stripe::Account)
31
- end
32
-
33
- context ".reject" do
34
- should "reject the account" do
35
- account = Stripe::Account.reject("acct_foo", reason: "fraud")
36
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{account.id}/reject"
37
- assert account.is_a?(Stripe::Account)
38
- end
39
- end
40
-
41
- should "be creatable" do
42
- account = Stripe::Account.create(metadata: {}, type: "standard")
43
- assert_requested :post, "#{Stripe.api_base}/v1/accounts"
44
- assert account.is_a?(Stripe::Account)
45
- end
46
-
47
- should "be saveable" do
48
- account = Stripe::Account.retrieve("acct_123")
49
- account.metadata["key"] = "value"
50
- account.save
51
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/#{account.id}"
52
- end
53
-
54
- should "be updateable" do
55
- account = Stripe::Account.update("acct_123", metadata: { foo: "bar" })
56
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123"
57
- assert account.is_a?(Stripe::Account)
58
- end
59
-
60
- context "#delete" do
61
- should "be deletable" do
62
- account = Stripe::Account.retrieve("acct_123")
63
- account = account.delete
64
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/#{account.id}"
65
- assert account.is_a?(Stripe::Account)
66
- end
67
- end
68
-
69
- context ".delete" do
70
- should "be deletable" do
71
- account = Stripe::Account.delete("acct_123")
72
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/acct_123"
73
- assert account.is_a?(Stripe::Account)
74
- end
75
- end
76
-
77
- should "be able to list Persons" do
78
- account = Stripe::Account.retrieve("acct_123")
79
- persons = account.persons
80
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/persons"
81
- assert persons.data.is_a?(Array)
82
- assert persons.data[0].is_a?(Stripe::Person)
83
- end
84
-
85
- context "#deauthorize" do
86
- should "deauthorize an account" do
87
- account = Stripe::Account.retrieve("acct_123")
88
-
89
- # Unfortunately, the OpenAPI spec doesn't yet cover anything under the
90
- # Connect endpoints, so for just stub this out with Webmock.
91
- stub_request(:post, "#{Stripe.connect_base}/oauth/deauthorize")
92
- .with(body: { "client_id" => "ca_1234", "stripe_user_id" => account.id })
93
- .to_return(body: JSON.generate("stripe_user_id" => account.id))
94
- account.deauthorize("ca_1234", "sk_test_1234")
95
- end
96
- end
97
-
98
- context "#legal_entity=" do
99
- should "disallow direct overrides" do
100
- account = Stripe::Account.construct_from(
101
- id: "acct_123",
102
- legal_entity: {
103
- first_name: "name",
104
- }
105
- )
106
-
107
- assert_raise NoMethodError do
108
- account.legal_entity = { first_name: "Blah" }
109
- end
110
-
111
- account.legal_entity.first_name = "Blah"
112
- end
113
- end
114
-
115
- context "#serialize_params" do
116
- should "serialize a new additional_owners" do
117
- obj = Stripe::Util.convert_to_stripe_object({
118
- object: "account",
119
- legal_entity: Stripe::StripeObject.construct_from({
120
- }),
121
- }, {})
122
- obj.legal_entity.additional_owners = [
123
- { first_name: "Joe" },
124
- { first_name: "Jane" },
125
- ]
126
-
127
- expected = {
128
- legal_entity: {
129
- additional_owners: {
130
- "0" => { first_name: "Joe" },
131
- "1" => { first_name: "Jane" },
132
- },
133
- },
134
- }
135
- assert_equal(expected, obj.serialize_params)
136
- end
137
-
138
- should "serialize on an partially changed additional_owners" do
139
- obj = Stripe::Util.convert_to_stripe_object({
140
- object: "account",
141
- legal_entity: {
142
- additional_owners: [
143
- Stripe::StripeObject.construct_from(first_name: "Joe"),
144
- Stripe::StripeObject.construct_from(first_name: "Jane"),
145
- ],
146
- },
147
- }, {})
148
- obj.legal_entity.additional_owners[1].first_name = "Stripe"
149
-
150
- expected = {
151
- legal_entity: {
152
- additional_owners: {
153
- "1" => { first_name: "Stripe" },
154
- },
155
- },
156
- }
157
- assert_equal(expected, obj.serialize_params)
158
- end
159
-
160
- should "serialize on an unchanged additional_owners" do
161
- obj = Stripe::Util.convert_to_stripe_object({
162
- object: "account",
163
- legal_entity: {
164
- additional_owners: [
165
- Stripe::StripeObject.construct_from(first_name: "Joe"),
166
- Stripe::StripeObject.construct_from(first_name: "Jane"),
167
- ],
168
- },
169
- }, {})
170
-
171
- expected = {
172
- legal_entity: {
173
- additional_owners: {},
174
- },
175
- }
176
- assert_equal(expected, obj.serialize_params)
177
- end
178
-
179
- # Note that the empty string that we send for this one has a special
180
- # meaning for the server, which interprets it as an array unset.
181
- should "serialize on an unset additional_owners" do
182
- obj = Stripe::Util.convert_to_stripe_object({
183
- object: "account",
184
- legal_entity: {
185
- additional_owners: [
186
- Stripe::StripeObject.construct_from(first_name: "Joe"),
187
- Stripe::StripeObject.construct_from(first_name: "Jane"),
188
- ],
189
- },
190
- }, {})
191
- obj.legal_entity.additional_owners = nil
192
-
193
- expected = {
194
- legal_entity: {
195
- additional_owners: "",
196
- },
197
- }
198
- assert_equal(expected, obj.serialize_params)
199
- end
200
-
201
- should "serialize on a new individual" do
202
- obj = Stripe::Util.convert_to_stripe_object({
203
- object: "account",
204
- }, {})
205
- obj.individual = { first_name: "Jane" }
206
-
207
- expected = { individual: { first_name: "Jane" } }
208
- assert_equal(expected, obj.serialize_params)
209
- end
210
-
211
- should "serialize on a partially changed individual" do
212
- obj = Stripe::Util.convert_to_stripe_object({
213
- object: "account",
214
- individual: Stripe::Util.convert_to_stripe_object({
215
- object: "person",
216
- first_name: "Jenny",
217
- }, {}),
218
- }, {})
219
- obj.individual = { first_name: "Jane" }
220
-
221
- expected = { individual: { first_name: "Jane" } }
222
- assert_equal(expected, obj.serialize_params)
223
- end
224
-
225
- should "serialize on an unchanged individual" do
226
- obj = Stripe::Util.convert_to_stripe_object({
227
- object: "account",
228
- individual: Stripe::Util.convert_to_stripe_object({
229
- object: "person",
230
- first_name: "Jenny",
231
- }, {}),
232
- }, {})
233
-
234
- expected = { individual: {} }
235
- assert_equal(expected, obj.serialize_params)
236
- end
237
-
238
- should "serialize on an unset individual" do
239
- obj = Stripe::Util.convert_to_stripe_object({
240
- object: "account",
241
- individual: Stripe::Util.convert_to_stripe_object({
242
- object: "person",
243
- first_name: "Jenny",
244
- }, {}),
245
- }, {})
246
- obj.individual = nil
247
-
248
- expected = { individual: "" }
249
- assert_equal(expected, obj.serialize_params)
250
- end
251
- end
252
-
253
- context "#retrieve_capability" do
254
- should "retrieve a capability" do
255
- capability = Stripe::Account.retrieve_capability(
256
- "acct_123",
257
- "acap_123"
258
- )
259
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/capabilities/acap_123"
260
- assert capability.is_a?(Stripe::Capability)
261
- end
262
- end
263
-
264
- context "#update_capability" do
265
- should "update a capability" do
266
- capability = Stripe::Account.update_capability(
267
- "acct_123",
268
- "acap_123",
269
- requested: true
270
- )
271
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/capabilities/acap_123"
272
- assert capability.is_a?(Stripe::Capability)
273
- end
274
- end
275
-
276
- context "#list_capabilities" do
277
- should "list the account's external accounts" do
278
- capabilities = Stripe::Account.list_capabilities(
279
- "acct_123"
280
- )
281
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/capabilities"
282
- assert capabilities.is_a?(Stripe::ListObject)
283
- assert capabilities.data.is_a?(Array)
284
- end
285
- end
286
-
287
- context "#create_external_account" do
288
- should "create an external account" do
289
- external_account = Stripe::Account.create_external_account(
290
- "acct_123",
291
- external_account: "btok_123"
292
- )
293
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/external_accounts"
294
- assert external_account.is_a?(Stripe::BankAccount)
295
- end
296
- end
297
-
298
- context "#retrieve_external_account" do
299
- should "retrieve an external account" do
300
- external_account = Stripe::Account.retrieve_external_account(
301
- "acct_123",
302
- "ba_123"
303
- )
304
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/external_accounts/ba_123"
305
- assert external_account.is_a?(Stripe::BankAccount)
306
- end
307
- end
308
-
309
- context "#update_external_account" do
310
- should "update an external account" do
311
- external_account = Stripe::Account.update_external_account(
312
- "acct_123",
313
- "ba_123",
314
- metadata: { foo: "bar" }
315
- )
316
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/external_accounts/ba_123"
317
- assert external_account.is_a?(Stripe::BankAccount)
318
- end
319
- end
320
-
321
- context "#delete_external_account" do
322
- should "delete an external_account" do
323
- external_account = Stripe::Account.delete_external_account(
324
- "acct_123",
325
- "ba_123"
326
- )
327
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/acct_123/external_accounts/ba_123"
328
- assert external_account.deleted
329
- assert_equal "ba_123", external_account.id
330
- end
331
- end
332
-
333
- context "#list_external_accounts" do
334
- should "list the account's external accounts" do
335
- external_accounts = Stripe::Account.list_external_accounts(
336
- "acct_123"
337
- )
338
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/external_accounts"
339
- assert external_accounts.is_a?(Stripe::ListObject)
340
- assert external_accounts.data.is_a?(Array)
341
- end
342
- end
343
-
344
- context "#create_login_link" do
345
- should "create a login link" do
346
- login_link = Stripe::Account.create_login_link(
347
- "acct_123"
348
- )
349
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/login_links"
350
- assert login_link.is_a?(Stripe::LoginLink)
351
- end
352
- end
353
-
354
- context "#create_person" do
355
- should "create a person" do
356
- person = Stripe::Account.create_person(
357
- "acct_123",
358
- first_name: "John",
359
- last_name: "Doe"
360
- )
361
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/persons"
362
- assert person.is_a?(Stripe::Person)
363
- end
364
- end
365
-
366
- context "#retrieve_person" do
367
- should "retrieve a person" do
368
- person = Stripe::Account.retrieve_person(
369
- "acct_123",
370
- "person_123"
371
- )
372
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/persons/person_123"
373
- assert person.is_a?(Stripe::Person)
374
- end
375
- end
376
-
377
- context "#update_person" do
378
- should "update a person" do
379
- person = Stripe::Account.update_person(
380
- "acct_123",
381
- "person_123",
382
- first_name: "John"
383
- )
384
- assert_requested :post, "#{Stripe.api_base}/v1/accounts/acct_123/persons/person_123"
385
- assert person.is_a?(Stripe::Person)
386
- end
387
- end
388
-
389
- context "#delete_person" do
390
- should "delete an person" do
391
- person = Stripe::Account.delete_person(
392
- "acct_123",
393
- "person_123"
394
- )
395
- assert_requested :delete, "#{Stripe.api_base}/v1/accounts/acct_123/persons/person_123"
396
- assert person.deleted
397
- assert_equal "person_123", person.id
398
- end
399
- end
400
-
401
- context "#list_persons" do
402
- should "list the account's external accounts" do
403
- persons = Stripe::Account.list_persons(
404
- "acct_123"
405
- )
406
- assert_requested :get, "#{Stripe.api_base}/v1/accounts/acct_123/persons"
407
- assert persons.is_a?(Stripe::ListObject)
408
- assert persons.data.is_a?(Array)
409
- end
410
- end
411
- end
412
- end
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../test_helper", __dir__)
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