stripe 4.18.1 → 5.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +232 -1
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +10 -16
- data/README.md +168 -63
- data/Rakefile +8 -7
- data/VERSION +1 -1
- data/lib/stripe/api_operations/create.rb +1 -1
- data/lib/stripe/api_operations/delete.rb +7 -3
- data/lib/stripe/api_operations/list.rb +1 -12
- data/lib/stripe/api_operations/nested_resource.rb +29 -26
- data/lib/stripe/api_operations/request.rb +82 -6
- data/lib/stripe/api_operations/save.rb +7 -4
- data/lib/stripe/api_resource.rb +27 -2
- data/lib/stripe/connection_manager.rb +200 -0
- data/lib/stripe/error_object.rb +93 -0
- data/lib/stripe/errors.rb +24 -3
- data/lib/stripe/instrumentation.rb +84 -0
- data/lib/stripe/list_object.rb +34 -5
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +8 -6
- data/lib/stripe/object_types.rb +108 -0
- data/lib/stripe/{account.rb → resources/account.rb} +23 -26
- data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
- data/lib/stripe/{alipay_account.rb → resources/alipay_account.rb} +1 -1
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/{application_fee_refund.rb → resources/application_fee_refund.rb} +3 -2
- data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
- data/lib/stripe/{bank_account.rb → resources/bank_account.rb} +5 -6
- data/lib/stripe/{issuing/dispute.rb → resources/billing_portal/configuration.rb} +4 -3
- data/lib/stripe/{checkout → resources/billing_portal}/session.rb +3 -2
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +5 -5
- data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
- data/lib/stripe/{capability.rb → resources/capability.rb} +3 -2
- data/lib/stripe/{card.rb → resources/card.rb} +5 -7
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +27 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +2 -1
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +8 -0
- data/lib/stripe/resources/customer.rb +52 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
- data/lib/stripe/{discount.rb → resources/discount.rb} +2 -1
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +2 -1
- data/lib/stripe/{event.rb → resources/event.rb} +2 -1
- data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
- data/lib/stripe/{file.rb → resources/file.rb} +7 -12
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +2 -1
- data/lib/stripe/resources/identity/verification_report.rb +12 -0
- data/lib/stripe/resources/identity/verification_session.rb +35 -0
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +2 -1
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +2 -1
- data/lib/stripe/{issuing → resources/issuing}/authorization.rb +14 -5
- data/lib/stripe/{issuing → resources/issuing}/card.rb +8 -3
- data/lib/stripe/resources/issuing/card_details.rb +10 -0
- data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +2 -1
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/transaction.rb +2 -1
- data/lib/stripe/resources/line_item.rb +8 -0
- data/lib/stripe/{login_link.rb → resources/login_link.rb} +2 -1
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
- data/lib/stripe/resources/payment_intent.rb +43 -0
- data/lib/stripe/{payment_method.rb → resources/payment_method.rb} +14 -5
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/{person.rb → resources/person.rb} +2 -1
- data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +2 -1
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/quote.rb +105 -0
- data/lib/stripe/{radar → resources/radar}/early_fraud_warning.rb +2 -1
- data/lib/stripe/{radar → resources/radar}/value_list.rb +2 -1
- data/lib/stripe/{radar → resources/radar}/value_list_item.rb +2 -1
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +2 -5
- data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
- data/lib/stripe/{refund.rb → resources/refund.rb} +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_run.rb +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_type.rb +2 -1
- data/lib/stripe/{reversal.rb → resources/reversal.rb} +4 -3
- data/lib/stripe/{review.rb → resources/review.rb} +8 -3
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +33 -0
- data/lib/stripe/resources/shipping_rate.rb +12 -0
- data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +2 -1
- data/lib/stripe/{sku.rb → resources/sku.rb} +2 -1
- data/lib/stripe/{source.rb → resources/source.rb} +20 -15
- data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +2 -1
- data/lib/stripe/{subscription.rb → resources/subscription.rb} +12 -11
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_code.rb +10 -0
- data/lib/stripe/{tax_id.rb → resources/tax_id.rb} +2 -1
- data/lib/stripe/{tax_rate.rb → resources/tax_rate.rb} +2 -1
- data/lib/stripe/{terminal → resources/terminal}/connection_token.rb +2 -1
- data/lib/stripe/{terminal → resources/terminal}/location.rb +2 -1
- data/lib/stripe/{terminal → resources/terminal}/reader.rb +2 -1
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
- data/lib/stripe/{token.rb → resources/token.rb} +2 -1
- data/lib/stripe/{topup.rb → resources/topup.rb} +8 -3
- data/lib/stripe/{transfer.rb → resources/transfer.rb} +9 -8
- data/lib/stripe/resources/usage_record.rb +8 -0
- data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +2 -1
- data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +2 -1
- data/lib/stripe/resources.rb +91 -0
- data/lib/stripe/stripe_client.rb +617 -243
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +30 -25
- data/lib/stripe/stripe_response.rb +87 -27
- data/lib/stripe/util.rb +43 -103
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +39 -8
- data/lib/stripe.rb +41 -205
- data/stripe.gemspec +19 -5
- metadata +109 -287
- data/.editorconfig +0 -10
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -8
- data/.rubocop.yml +0 -42
- data/.rubocop_todo.yml +0 -38
- data/.travis.yml +0 -43
- data/.vscode/extensions.json +0 -7
- data/.vscode/settings.json +0 -8
- data/lib/stripe/application_fee.rb +0 -24
- data/lib/stripe/bitcoin_transaction.rb +0 -15
- data/lib/stripe/charge.rb +0 -84
- data/lib/stripe/credit_note.rb +0 -18
- data/lib/stripe/customer.rb +0 -93
- data/lib/stripe/dispute.rb +0 -23
- data/lib/stripe/invoice.rb +0 -49
- data/lib/stripe/issuer_fraud_record.rb +0 -9
- data/lib/stripe/issuing/card_details.rb +0 -9
- data/lib/stripe/order.rb +0 -32
- data/lib/stripe/payment_intent.rb +0 -30
- data/lib/stripe/payout.rb +0 -24
- data/lib/stripe/subscription_item.rb +0 -18
- data/lib/stripe/subscription_schedule.rb +0 -35
- data/lib/stripe/subscription_schedule_revision.rb +0 -34
- data/lib/stripe/usage_record.rb +0 -23
- data/test/api_stub_helpers.rb +0 -1
- data/test/openapi/README.md +0 -9
- data/test/stripe/account_link_test.rb +0 -18
- data/test/stripe/account_test.rb +0 -428
- data/test/stripe/alipay_account_test.rb +0 -37
- data/test/stripe/api_operations_test.rb +0 -80
- data/test/stripe/api_resource_test.rb +0 -523
- data/test/stripe/apple_pay_domain_test.rb +0 -46
- data/test/stripe/application_fee_refund_test.rb +0 -37
- data/test/stripe/application_fee_test.rb +0 -58
- data/test/stripe/balance_test.rb +0 -13
- data/test/stripe/bank_account_test.rb +0 -36
- data/test/stripe/capability_test.rb +0 -45
- data/test/stripe/charge_test.rb +0 -80
- data/test/stripe/checkout/session_test.rb +0 -41
- data/test/stripe/country_spec_test.rb +0 -20
- data/test/stripe/coupon_test.rb +0 -61
- data/test/stripe/credit_note_test.rb +0 -61
- data/test/stripe/customer_card_test.rb +0 -42
- data/test/stripe/customer_test.rb +0 -226
- data/test/stripe/dispute_test.rb +0 -51
- data/test/stripe/ephemeral_key_test.rb +0 -93
- data/test/stripe/errors_test.rb +0 -20
- data/test/stripe/exchange_rate_test.rb +0 -20
- data/test/stripe/file_link_test.rb +0 -41
- data/test/stripe/file_test.rb +0 -97
- data/test/stripe/file_upload_test.rb +0 -79
- data/test/stripe/invoice_item_test.rb +0 -66
- data/test/stripe/invoice_line_item_test.rb +0 -8
- data/test/stripe/invoice_test.rb +0 -213
- data/test/stripe/issuer_fraud_record_test.rb +0 -20
- data/test/stripe/issuing/authorization_test.rb +0 -72
- data/test/stripe/issuing/card_test.rb +0 -62
- data/test/stripe/issuing/cardholder_test.rb +0 -53
- data/test/stripe/issuing/dispute_test.rb +0 -45
- data/test/stripe/issuing/transaction_test.rb +0 -48
- data/test/stripe/list_object_test.rb +0 -156
- data/test/stripe/login_link_test.rb +0 -37
- data/test/stripe/oauth_test.rb +0 -88
- data/test/stripe/order_return_test.rb +0 -21
- data/test/stripe/order_test.rb +0 -82
- data/test/stripe/payment_intent_test.rb +0 -107
- data/test/stripe/payment_method_test.rb +0 -84
- data/test/stripe/payout_test.rb +0 -57
- data/test/stripe/person_test.rb +0 -46
- data/test/stripe/plan_test.rb +0 -98
- data/test/stripe/product_test.rb +0 -59
- data/test/stripe/radar/early_fraud_warning_test.rb +0 -22
- data/test/stripe/radar/value_list_item_test.rb +0 -48
- data/test/stripe/radar/value_list_test.rb +0 -61
- data/test/stripe/recipient_test.rb +0 -62
- data/test/stripe/refund_test.rb +0 -39
- data/test/stripe/reporting/report_run_test.rb +0 -33
- data/test/stripe/reporting/report_type_test.rb +0 -22
- data/test/stripe/reversal_test.rb +0 -43
- data/test/stripe/review_test.rb +0 -27
- data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
- data/test/stripe/sku_test.rb +0 -60
- data/test/stripe/source_test.rb +0 -99
- data/test/stripe/source_transaction_test.rb +0 -19
- data/test/stripe/stripe_client_test.rb +0 -842
- data/test/stripe/stripe_object_test.rb +0 -525
- data/test/stripe/stripe_response_test.rb +0 -49
- data/test/stripe/subscription_item_test.rb +0 -63
- data/test/stripe/subscription_schedule_revision_test.rb +0 -37
- data/test/stripe/subscription_schedule_test.rb +0 -116
- data/test/stripe/subscription_test.rb +0 -80
- data/test/stripe/tax_id_test.rb +0 -31
- data/test/stripe/tax_rate_test.rb +0 -43
- data/test/stripe/terminal/connection_token_test.rb +0 -16
- data/test/stripe/terminal/location_test.rb +0 -68
- data/test/stripe/terminal/reader_test.rb +0 -62
- data/test/stripe/three_d_secure_test.rb +0 -23
- data/test/stripe/topup_test.rb +0 -62
- data/test/stripe/transfer_test.rb +0 -88
- data/test/stripe/usage_record_summary_test.rb +0 -19
- data/test/stripe/usage_record_test.rb +0 -28
- data/test/stripe/util_test.rb +0 -402
- data/test/stripe/webhook_endpoint_test.rb +0 -59
- data/test/stripe/webhook_test.rb +0 -96
- data/test/stripe_mock.rb +0 -77
- data/test/stripe_test.rb +0 -63
- data/test/test_data.rb +0 -61
- data/test/test_helper.rb +0 -71
@@ -1,36 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class BankAccountTest < Test::Unit::TestCase
|
7
|
-
context "#resource_url" do
|
8
|
-
should "return an external account URL" do
|
9
|
-
bank_account = Stripe::BankAccount.construct_from(
|
10
|
-
account: "acct_123",
|
11
|
-
id: "ba_123"
|
12
|
-
)
|
13
|
-
assert_equal "/v1/accounts/acct_123/external_accounts/ba_123",
|
14
|
-
bank_account.resource_url
|
15
|
-
end
|
16
|
-
|
17
|
-
should "return a customer URL" do
|
18
|
-
bank_account = Stripe::BankAccount.construct_from(
|
19
|
-
customer: "cus_123",
|
20
|
-
id: "ba_123"
|
21
|
-
)
|
22
|
-
assert_equal "/v1/customers/cus_123/sources/ba_123",
|
23
|
-
bank_account.resource_url
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
context "#verify" do
|
28
|
-
should "verify the account" do
|
29
|
-
bank_account = Stripe::BankAccount.construct_from(customer: "cus_123",
|
30
|
-
id: "ba_123")
|
31
|
-
bank_account = bank_account.verify(amounts: [1, 2])
|
32
|
-
assert bank_account.is_a?(Stripe::BankAccount)
|
33
|
-
end
|
34
|
-
end
|
35
|
-
end
|
36
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class CapabilityTest < Test::Unit::TestCase
|
7
|
-
context "#resource_url" do
|
8
|
-
should "return a resource URL" do
|
9
|
-
capability = Stripe::Capability.construct_from(
|
10
|
-
id: "acap_123",
|
11
|
-
account: "acct_123"
|
12
|
-
)
|
13
|
-
assert_equal "/v1/accounts/acct_123/capabilities/acap_123",
|
14
|
-
capability.resource_url
|
15
|
-
end
|
16
|
-
|
17
|
-
should "raise without an account" do
|
18
|
-
capability = Stripe::Capability.construct_from(id: "acap_123")
|
19
|
-
assert_raises NotImplementedError do
|
20
|
-
capability.resource_url
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
should "raise on #retrieve" do
|
26
|
-
assert_raises NotImplementedError do
|
27
|
-
Stripe::Capability.retrieve("acap_123")
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
31
|
-
should "raise on #update" do
|
32
|
-
assert_raises NotImplementedError do
|
33
|
-
Stripe::Capability.update("acap_123", {})
|
34
|
-
end
|
35
|
-
end
|
36
|
-
|
37
|
-
should "be saveable" do
|
38
|
-
capability = Stripe::Account.retrieve_capability("acct_123", "acap_123")
|
39
|
-
capability.requested = true
|
40
|
-
capability.save
|
41
|
-
assert_requested :post,
|
42
|
-
"#{Stripe.api_base}/v1/accounts/#{capability.account}/capabilities/#{capability.id}"
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
data/test/stripe/charge_test.rb
DELETED
@@ -1,80 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class ChargeTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
charges = Stripe::Charge.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/charges"
|
10
|
-
assert charges.data.is_a?(Array)
|
11
|
-
assert charges.data[0].is_a?(Stripe::Charge)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
charge = Stripe::Charge.retrieve("ch_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/charges/ch_123"
|
17
|
-
assert charge.is_a?(Stripe::Charge)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
charge = Stripe::Charge.create(
|
22
|
-
amount: 100,
|
23
|
-
currency: "USD",
|
24
|
-
source: "src_123"
|
25
|
-
)
|
26
|
-
assert_requested :post, "#{Stripe.api_base}/v1/charges"
|
27
|
-
assert charge.is_a?(Stripe::Charge)
|
28
|
-
end
|
29
|
-
|
30
|
-
should "be saveable" do
|
31
|
-
charge = Stripe::Charge.retrieve("ch_123")
|
32
|
-
charge.metadata["key"] = "value"
|
33
|
-
charge.save
|
34
|
-
assert_requested :post, "#{Stripe.api_base}/v1/charges/#{charge.id}"
|
35
|
-
end
|
36
|
-
|
37
|
-
should "be updateable" do
|
38
|
-
charge = Stripe::Charge.update("ch_123", metadata: { foo: "bar" })
|
39
|
-
assert_requested :post, "#{Stripe.api_base}/v1/charges/ch_123"
|
40
|
-
assert charge.is_a?(Stripe::Charge)
|
41
|
-
end
|
42
|
-
|
43
|
-
context "#capture" do
|
44
|
-
should "capture the charge" do
|
45
|
-
charge = Stripe::Charge.retrieve("ch_123")
|
46
|
-
charge = charge.capture(amount: 100)
|
47
|
-
assert_requested :post,
|
48
|
-
"#{Stripe.api_base}/v1/charges/ch_123/capture",
|
49
|
-
body: { amount: 100 }
|
50
|
-
assert charge.is_a?(Stripe::Charge)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
context ".capture" do
|
55
|
-
should "capture the charge" do
|
56
|
-
charge = Stripe::Charge.capture("ch_123", amount: 100)
|
57
|
-
assert_requested :post,
|
58
|
-
"#{Stripe.api_base}/v1/charges/ch_123/capture",
|
59
|
-
body: { amount: 100 }
|
60
|
-
assert charge.is_a?(Stripe::Charge)
|
61
|
-
end
|
62
|
-
end
|
63
|
-
|
64
|
-
context "#mark_as_fraudulent" do
|
65
|
-
should "charges should be able to be marked as fraudulent" do
|
66
|
-
charge = Stripe::Charge.retrieve("ch_123")
|
67
|
-
charge = charge.mark_as_fraudulent
|
68
|
-
assert charge.is_a?(Stripe::Charge)
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
context "#mark_as_safe" do
|
73
|
-
should "charges should be able to be marked as safe" do
|
74
|
-
charge = Stripe::Charge.retrieve("ch_123")
|
75
|
-
charge = charge.mark_as_safe
|
76
|
-
assert charge.is_a?(Stripe::Charge)
|
77
|
-
end
|
78
|
-
end
|
79
|
-
end
|
80
|
-
end
|
@@ -1,41 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Checkout
|
7
|
-
class SessionTest < Test::Unit::TestCase
|
8
|
-
should "be creatable" do
|
9
|
-
session = Stripe::Checkout::Session.create(
|
10
|
-
cancel_url: "https://stripe.com/cancel",
|
11
|
-
client_reference_id: "1234",
|
12
|
-
line_items: [
|
13
|
-
{
|
14
|
-
amount: 123,
|
15
|
-
currency: "usd",
|
16
|
-
description: "item 1",
|
17
|
-
images: [
|
18
|
-
"https://stripe.com/img1",
|
19
|
-
],
|
20
|
-
name: "name",
|
21
|
-
quantity: 2,
|
22
|
-
},
|
23
|
-
],
|
24
|
-
payment_intent_data: [
|
25
|
-
receipt_email: "test@stripe.com",
|
26
|
-
],
|
27
|
-
payment_method_types: ["card"],
|
28
|
-
success_url: "https://stripe.com/success"
|
29
|
-
)
|
30
|
-
assert_requested :post, "#{Stripe.api_base}/v1/checkout/sessions"
|
31
|
-
assert session.is_a?(Stripe::Checkout::Session)
|
32
|
-
end
|
33
|
-
|
34
|
-
should "be retrievable" do
|
35
|
-
charge = Stripe::Checkout::Session.retrieve("cs_123")
|
36
|
-
assert_requested :get, "#{Stripe.api_base}/v1/checkout/sessions/cs_123"
|
37
|
-
assert charge.is_a?(Stripe::Checkout::Session)
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
41
|
-
end
|
@@ -1,20 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class CountrySpecTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
c = Stripe::CountrySpec.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/country_specs"
|
10
|
-
assert c.data.is_a?(Array)
|
11
|
-
assert c.data[0].is_a?(Stripe::CountrySpec)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
s = Stripe::CountrySpec.retrieve("US")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/country_specs/US"
|
17
|
-
assert(s.is_a?(Stripe::CountrySpec))
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
data/test/stripe/coupon_test.rb
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class CouponTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
coupons = Stripe::Coupon.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/coupons"
|
10
|
-
assert coupons.data.is_a?(Array)
|
11
|
-
assert coupons.first.is_a?(Stripe::Coupon)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
coupon = Stripe::Coupon.retrieve("25OFF")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/coupons/25OFF"
|
17
|
-
assert coupon.is_a?(Stripe::Coupon)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
coupon = Stripe::Coupon.create(
|
22
|
-
percent_off: 25,
|
23
|
-
duration: "repeating",
|
24
|
-
duration_in_months: 3,
|
25
|
-
id: "25OFF"
|
26
|
-
)
|
27
|
-
assert_requested :post, "#{Stripe.api_base}/v1/coupons"
|
28
|
-
assert coupon.is_a?(Stripe::Coupon)
|
29
|
-
end
|
30
|
-
|
31
|
-
should "be saveable" do
|
32
|
-
coupon = Stripe::Coupon.retrieve("25OFF")
|
33
|
-
coupon.metadata["key"] = "value"
|
34
|
-
coupon.save
|
35
|
-
assert_requested :post, "#{Stripe.api_base}/v1/coupons/#{coupon.id}"
|
36
|
-
end
|
37
|
-
|
38
|
-
should "be updateable" do
|
39
|
-
coupon = Stripe::Coupon.update("25OFF", metadata: { key: "value" })
|
40
|
-
assert_requested :post, "#{Stripe.api_base}/v1/coupons/25OFF"
|
41
|
-
assert coupon.is_a?(Stripe::Coupon)
|
42
|
-
end
|
43
|
-
|
44
|
-
context "#delete" do
|
45
|
-
should "be deletable" do
|
46
|
-
coupon = Stripe::Coupon.delete("25OFF")
|
47
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/coupons/#{coupon.id}"
|
48
|
-
assert coupon.is_a?(Stripe::Coupon)
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
context ".delete" do
|
53
|
-
should "be deletable" do
|
54
|
-
coupon = Stripe::Coupon.retrieve("25OFF")
|
55
|
-
coupon = coupon.delete
|
56
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/coupons/25OFF"
|
57
|
-
assert coupon.is_a?(Stripe::Coupon)
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
@@ -1,61 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class CreditNoteTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
credit_notes = Stripe::CreditNote.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/credit_notes"
|
10
|
-
assert credit_notes.data.is_a?(Array)
|
11
|
-
assert credit_notes.first.is_a?(Stripe::CreditNote)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
credit_note = Stripe::CreditNote.retrieve("cn_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/credit_notes/cn_123"
|
17
|
-
assert credit_note.is_a?(Stripe::CreditNote)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
credit_note = Stripe::CreditNote.create(
|
22
|
-
amount: 100,
|
23
|
-
invoice: "in_123",
|
24
|
-
reason: "duplicate"
|
25
|
-
)
|
26
|
-
assert_requested :post, "#{Stripe.api_base}/v1/credit_notes"
|
27
|
-
assert credit_note.is_a?(Stripe::CreditNote)
|
28
|
-
end
|
29
|
-
|
30
|
-
should "be saveable" do
|
31
|
-
credit_note = Stripe::CreditNote.retrieve("cn_123")
|
32
|
-
credit_note.metadata["key"] = "value"
|
33
|
-
credit_note.save
|
34
|
-
assert_requested :post, "#{Stripe.api_base}/v1/credit_notes/#{credit_note.id}"
|
35
|
-
end
|
36
|
-
|
37
|
-
should "be updateable" do
|
38
|
-
credit_note = Stripe::CreditNote.update("cn_123", metadata: { key: "value" })
|
39
|
-
assert_requested :post, "#{Stripe.api_base}/v1/credit_notes/cn_123"
|
40
|
-
assert credit_note.is_a?(Stripe::CreditNote)
|
41
|
-
end
|
42
|
-
|
43
|
-
context "#void_credit_note" do
|
44
|
-
should "void credit_note" do
|
45
|
-
credit_note = Stripe::CreditNote.retrieve("cn_123")
|
46
|
-
credit_note = credit_note.void_credit_note
|
47
|
-
assert_requested :post,
|
48
|
-
"#{Stripe.api_base}/v1/credit_notes/#{credit_note.id}/void"
|
49
|
-
assert credit_note.is_a?(Stripe::CreditNote)
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
context ".void_credit_note" do
|
54
|
-
should "void credit_note" do
|
55
|
-
credit_note = Stripe::CreditNote.void_credit_note("cn_123")
|
56
|
-
assert_requested :post, "#{Stripe.api_base}/v1/credit_notes/cn_123/void"
|
57
|
-
assert credit_note.is_a?(Stripe::CreditNote)
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
@@ -1,42 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class CustomerCardTest < Test::Unit::TestCase
|
7
|
-
setup do
|
8
|
-
@customer = Stripe::Customer.retrieve("cus_123")
|
9
|
-
end
|
10
|
-
|
11
|
-
should "be listable" do
|
12
|
-
sources = @customer.sources.list
|
13
|
-
assert sources.data.is_a?(Array)
|
14
|
-
# because of the terrible :wildcard nature of sources, the API stub
|
15
|
-
# cannot currently replace this response with anything meaningful so we
|
16
|
-
# don't assert on the type of individual items like we do in other tests
|
17
|
-
end
|
18
|
-
|
19
|
-
should "be creatable" do
|
20
|
-
@customer.sources.create(
|
21
|
-
source: "tok_123"
|
22
|
-
)
|
23
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{@customer.id}/sources"
|
24
|
-
end
|
25
|
-
|
26
|
-
should "be deletable" do
|
27
|
-
card = Stripe::Card.construct_from(customer: @customer.id,
|
28
|
-
id: "card_123")
|
29
|
-
card.delete
|
30
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/customers/#{@customer.id}/sources/card_123"
|
31
|
-
end
|
32
|
-
|
33
|
-
should "be saveable" do
|
34
|
-
card = Stripe::Card.construct_from(customer: @customer.id,
|
35
|
-
id: "card_123",
|
36
|
-
metadata: {})
|
37
|
-
card.metadata["key"] = "value"
|
38
|
-
card.save
|
39
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{@customer.id}/sources/card_123"
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
@@ -1,226 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class CustomerTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
customers = Stripe::Customer.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/customers"
|
10
|
-
assert customers.data.is_a?(Array)
|
11
|
-
assert customers.first.is_a?(Stripe::Customer)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123"
|
17
|
-
assert customer.is_a?(Stripe::Customer)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
customer = Stripe::Customer.create
|
22
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers"
|
23
|
-
assert customer.is_a?(Stripe::Customer)
|
24
|
-
end
|
25
|
-
|
26
|
-
should "be saveable" do
|
27
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
28
|
-
customer.metadata["key"] = "value"
|
29
|
-
customer.save
|
30
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{customer.id}"
|
31
|
-
end
|
32
|
-
|
33
|
-
should "be updateable" do
|
34
|
-
customer = Stripe::Customer.update("cus_123", metadata: { key: "value" })
|
35
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123"
|
36
|
-
assert customer.is_a?(Stripe::Customer)
|
37
|
-
end
|
38
|
-
|
39
|
-
context "#delete" do
|
40
|
-
should "be deletable" do
|
41
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
42
|
-
customer = customer.delete
|
43
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/customers/#{customer.id}"
|
44
|
-
assert customer.is_a?(Stripe::Customer)
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
context ".delete" do
|
49
|
-
should "be deletable" do
|
50
|
-
customer = Stripe::Customer.delete("cus_123")
|
51
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/customers/cus_123"
|
52
|
-
assert customer.is_a?(Stripe::Customer)
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
|
-
context "#create_subscription" do
|
57
|
-
should "create a new subscription" do
|
58
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
59
|
-
subscription = customer.create_subscription(items: [{ plan: "silver" }])
|
60
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{customer.id}/subscriptions"
|
61
|
-
assert subscription.is_a?(Stripe::Subscription)
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
context "#create_upcoming_invoice" do
|
66
|
-
should "create a new invoice" do
|
67
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
68
|
-
invoice = customer.create_upcoming_invoice
|
69
|
-
assert_requested :post, "#{Stripe.api_base}/v1/invoices"
|
70
|
-
assert invoice.is_a?(Stripe::Invoice)
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
context "#update_subscription" do
|
75
|
-
should "update a subscription" do
|
76
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
77
|
-
|
78
|
-
# deprecated API and not in schema
|
79
|
-
stub_request(:post, "#{Stripe.api_base}/v1/customers/#{customer.id}/subscription")
|
80
|
-
.with(body: { plan: "silver" })
|
81
|
-
.to_return(body: JSON.generate(object: "subscription"))
|
82
|
-
subscription = customer.update_subscription(plan: "silver")
|
83
|
-
assert subscription.is_a?(Stripe::Subscription)
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
|
-
context "#cancel_subscription" do
|
88
|
-
should "cancel a subscription" do
|
89
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
90
|
-
|
91
|
-
# deprecated API and not in schema
|
92
|
-
stub_request(:delete, "#{Stripe.api_base}/v1/customers/#{customer.id}/subscription")
|
93
|
-
.with(query: { at_period_end: "true" })
|
94
|
-
.to_return(body: JSON.generate(object: "subscription"))
|
95
|
-
subscription = customer.cancel_subscription(at_period_end: "true")
|
96
|
-
assert subscription.is_a?(Stripe::Subscription)
|
97
|
-
end
|
98
|
-
end
|
99
|
-
|
100
|
-
context "#delete_discount" do
|
101
|
-
should "delete a discount" do
|
102
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
103
|
-
customer = customer.delete_discount
|
104
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/customers/#{customer.id}/discount"
|
105
|
-
assert customer.is_a?(Stripe::Customer)
|
106
|
-
end
|
107
|
-
end
|
108
|
-
|
109
|
-
context ".delete_discount" do
|
110
|
-
should "delete a discount" do
|
111
|
-
discount = Stripe::Customer.delete_discount("cus_123")
|
112
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/customers/cus_123/discount"
|
113
|
-
assert discount.is_a?(Stripe::Discount)
|
114
|
-
end
|
115
|
-
end
|
116
|
-
context "#create_source" do
|
117
|
-
should "create a source" do
|
118
|
-
Stripe::Customer.create_source(
|
119
|
-
"cus_123",
|
120
|
-
source: "tok_123"
|
121
|
-
)
|
122
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123/sources"
|
123
|
-
end
|
124
|
-
end
|
125
|
-
|
126
|
-
context "#retrieve_source" do
|
127
|
-
should "retrieve a source" do
|
128
|
-
Stripe::Customer.retrieve_source(
|
129
|
-
"cus_123",
|
130
|
-
"ba_123"
|
131
|
-
)
|
132
|
-
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123/sources/ba_123"
|
133
|
-
end
|
134
|
-
end
|
135
|
-
|
136
|
-
context "#update_source" do
|
137
|
-
should "update a source" do
|
138
|
-
Stripe::Customer.update_source(
|
139
|
-
"cus_123",
|
140
|
-
"ba_123",
|
141
|
-
metadata: { foo: "bar" }
|
142
|
-
)
|
143
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123/sources/ba_123"
|
144
|
-
end
|
145
|
-
end
|
146
|
-
|
147
|
-
context "#delete_source" do
|
148
|
-
should "delete a source" do
|
149
|
-
Stripe::Customer.delete_source(
|
150
|
-
"cus_123",
|
151
|
-
"ba_123"
|
152
|
-
)
|
153
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/customers/cus_123/sources/ba_123"
|
154
|
-
end
|
155
|
-
end
|
156
|
-
|
157
|
-
context "#list_sources" do
|
158
|
-
should "list the customer's sources" do
|
159
|
-
sources = Stripe::Customer.list_sources(
|
160
|
-
"cus_123"
|
161
|
-
)
|
162
|
-
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123/sources"
|
163
|
-
assert sources.is_a?(Stripe::ListObject)
|
164
|
-
assert sources.data.is_a?(Array)
|
165
|
-
end
|
166
|
-
end
|
167
|
-
|
168
|
-
context "source field" do
|
169
|
-
should "allow setting source with token" do
|
170
|
-
c = Stripe::Customer.new("test_customer")
|
171
|
-
c.source = "tok_123"
|
172
|
-
assert_equal "tok_123", c.source
|
173
|
-
end
|
174
|
-
|
175
|
-
should "allow setting source with hash and set flag" do
|
176
|
-
c = Stripe::Customer.new("test_customer")
|
177
|
-
c.source = {
|
178
|
-
object: "card",
|
179
|
-
}
|
180
|
-
assert_equal true, c.source.save_with_parent
|
181
|
-
end
|
182
|
-
end
|
183
|
-
|
184
|
-
context "#create_tax_id" do
|
185
|
-
should "create a tax id" do
|
186
|
-
Stripe::Customer.create_tax_id(
|
187
|
-
"cus_123",
|
188
|
-
type: "eu_vat",
|
189
|
-
value: "11111"
|
190
|
-
)
|
191
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123/tax_ids"
|
192
|
-
end
|
193
|
-
end
|
194
|
-
|
195
|
-
context "#retrieve_tax_id" do
|
196
|
-
should "retrieve a tax id" do
|
197
|
-
Stripe::Customer.retrieve_tax_id(
|
198
|
-
"cus_123",
|
199
|
-
"txi_123"
|
200
|
-
)
|
201
|
-
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123/tax_ids/txi_123"
|
202
|
-
end
|
203
|
-
end
|
204
|
-
|
205
|
-
context "#delete_tax_id" do
|
206
|
-
should "delete a tax id" do
|
207
|
-
Stripe::Customer.delete_tax_id(
|
208
|
-
"cus_123",
|
209
|
-
"txi_123"
|
210
|
-
)
|
211
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/customers/cus_123/tax_ids/txi_123"
|
212
|
-
end
|
213
|
-
end
|
214
|
-
|
215
|
-
context "#list_tax_ids" do
|
216
|
-
should "list the customer's tax ids" do
|
217
|
-
sources = Stripe::Customer.list_tax_ids(
|
218
|
-
"cus_123"
|
219
|
-
)
|
220
|
-
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123/tax_ids"
|
221
|
-
assert sources.is_a?(Stripe::ListObject)
|
222
|
-
assert sources.data.is_a?(Array)
|
223
|
-
end
|
224
|
-
end
|
225
|
-
end
|
226
|
-
end
|
data/test/stripe/dispute_test.rb
DELETED
@@ -1,51 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class DisputeTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
disputes = Stripe::Dispute.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/disputes"
|
10
|
-
assert disputes.data.is_a?(Array)
|
11
|
-
assert disputes.first.is_a?(Stripe::Dispute)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
dispute = Stripe::Dispute.retrieve("dp_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/disputes/dp_123"
|
17
|
-
assert dispute.is_a?(Stripe::Dispute)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be saveable" do
|
21
|
-
dispute = Stripe::Dispute.retrieve("dp_123")
|
22
|
-
dispute.metadata["key"] = "value"
|
23
|
-
dispute.save
|
24
|
-
assert_requested :post, "#{Stripe.api_base}/v1/disputes/#{dispute.id}"
|
25
|
-
end
|
26
|
-
|
27
|
-
should "be updateable" do
|
28
|
-
dispute = Stripe::Dispute.update("dp_123", metadata: { key: "value" })
|
29
|
-
assert_requested :post, "#{Stripe.api_base}/v1/disputes/dp_123"
|
30
|
-
assert dispute.is_a?(Stripe::Dispute)
|
31
|
-
end
|
32
|
-
|
33
|
-
context "#close" do
|
34
|
-
should "be closeable" do
|
35
|
-
dispute = Stripe::Dispute.retrieve("dp_123")
|
36
|
-
dispute.close
|
37
|
-
assert_requested :post,
|
38
|
-
"#{Stripe.api_base}/v1/disputes/#{dispute.id}/close"
|
39
|
-
assert dispute.is_a?(Stripe::Dispute)
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
context ".close" do
|
44
|
-
should "close a dispute" do
|
45
|
-
dispute = Stripe::Dispute.close("dp_123")
|
46
|
-
assert_requested :post, "#{Stripe.api_base}/v1/disputes/dp_123/close"
|
47
|
-
assert dispute.is_a?(Stripe::Dispute)
|
48
|
-
end
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|