stripe 4.24.0 → 5.36.0

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