stripe 3.8.2 → 5.45.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +424 -1
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +15 -20
- data/README.md +201 -58
- data/Rakefile +12 -9
- data/VERSION +1 -1
- data/bin/stripe-console +3 -1
- data/lib/stripe/api_operations/create.rb +3 -1
- data/lib/stripe/api_operations/delete.rb +30 -2
- data/lib/stripe/api_operations/list.rb +3 -12
- data/lib/stripe/api_operations/nested_resource.rb +40 -28
- data/lib/stripe/api_operations/request.rb +83 -9
- data/lib/stripe/api_operations/save.rb +19 -7
- data/lib/stripe/api_resource.rb +65 -4
- data/lib/stripe/connection_manager.rb +200 -0
- data/lib/stripe/error_object.rb +93 -0
- data/lib/stripe/errors.rb +47 -19
- data/lib/stripe/instrumentation.rb +84 -0
- data/lib/stripe/list_object.rb +43 -7
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +14 -7
- data/lib/stripe/object_types.rb +110 -0
- data/lib/stripe/{account.rb → resources/account.rb} +60 -28
- data/lib/stripe/resources/account_link.rb +10 -0
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +4 -1
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +31 -0
- data/lib/stripe/resources/balance.rb +8 -0
- data/lib/stripe/resources/balance_transaction.rb +10 -0
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
- data/lib/stripe/resources/billing_portal/session.rb +12 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +6 -6
- data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
- data/lib/stripe/resources/capability.rb +34 -0
- data/lib/stripe/{card.rb → resources/card.rb} +15 -4
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +27 -0
- data/lib/stripe/resources/country_spec.rb +10 -0
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +5 -2
- 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/resources/discount.rb +8 -0
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/resources/ephemeral_key.rb +20 -0
- data/lib/stripe/resources/event.rb +10 -0
- data/lib/stripe/resources/exchange_rate.rb +10 -0
- data/lib/stripe/resources/file.rb +36 -0
- data/lib/stripe/resources/file_link.rb +12 -0
- 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} +5 -2
- data/lib/stripe/resources/invoice_line_item.rb +8 -0
- data/lib/stripe/resources/issuing/authorization.rb +34 -0
- data/lib/stripe/resources/issuing/card.rb +25 -0
- data/lib/stripe/resources/issuing/card_details.rb +10 -0
- data/lib/stripe/resources/issuing/cardholder.rb +14 -0
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/resources/issuing/transaction.rb +13 -0
- data/lib/stripe/resources/line_item.rb +8 -0
- data/lib/stripe/resources/login_link.rb +15 -0
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/resources/order_return.rb +10 -0
- data/lib/stripe/resources/payment_intent.rb +53 -0
- data/lib/stripe/resources/payment_link.rb +23 -0
- data/lib/stripe/resources/payment_method.rb +33 -0
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/resources/person.rb +32 -0
- data/lib/stripe/{plan.rb → resources/plan.rb} +4 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +6 -3
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/quote.rb +105 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
- data/lib/stripe/resources/radar/value_list.rb +15 -0
- data/lib/stripe/resources/radar/value_list_item.rb +14 -0
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +5 -6
- data/lib/stripe/resources/recipient_transfer.rb +7 -0
- data/lib/stripe/{refund.rb → resources/refund.rb} +4 -1
- data/lib/stripe/resources/reporting/report_run.rb +13 -0
- data/lib/stripe/resources/reporting/report_type.rb +13 -0
- data/lib/stripe/resources/reversal.rb +30 -0
- data/lib/stripe/resources/review.rb +21 -0
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +43 -0
- data/lib/stripe/resources/shipping_rate.rb +12 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
- data/lib/stripe/{sku.rb → resources/sku.rb} +6 -3
- data/lib/stripe/resources/source.rb +47 -0
- data/lib/stripe/resources/source_transaction.rb +8 -0
- data/lib/stripe/resources/subscription.rb +26 -0
- 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/resources/tax_id.rb +27 -0
- data/lib/stripe/resources/tax_rate.rb +12 -0
- data/lib/stripe/resources/terminal/connection_token.rb +12 -0
- data/lib/stripe/resources/terminal/location.rb +15 -0
- data/lib/stripe/resources/terminal/reader.rb +15 -0
- data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +4 -1
- data/lib/stripe/resources/token.rb +10 -0
- data/lib/stripe/resources/topup.rb +23 -0
- data/lib/stripe/resources/transfer.rb +27 -0
- data/lib/stripe/resources/usage_record.rb +8 -0
- data/lib/stripe/resources/usage_record_summary.rb +8 -0
- data/lib/stripe/resources/webhook_endpoint.rb +13 -0
- data/lib/stripe/resources.rb +93 -0
- data/lib/stripe/singleton_api_resource.rb +8 -2
- data/lib/stripe/stripe_client.rb +712 -233
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +180 -67
- data/lib/stripe/stripe_response.rb +89 -27
- data/lib/stripe/util.rb +87 -168
- data/lib/stripe/version.rb +3 -1
- data/lib/stripe/webhook.rb +45 -10
- data/lib/stripe.rb +47 -160
- data/stripe.gemspec +27 -8
- metadata +112 -178
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -6
- data/.rubocop.yml +0 -20
- data/.rubocop_todo.yml +0 -60
- data/.travis.yml +0 -38
- data/lib/stripe/alipay_account.rb +0 -25
- data/lib/stripe/application_fee.rb +0 -25
- data/lib/stripe/application_fee_refund.rb +0 -20
- data/lib/stripe/balance.rb +0 -5
- data/lib/stripe/balance_transaction.rb +0 -11
- data/lib/stripe/bank_account.rb +0 -30
- data/lib/stripe/bitcoin_transaction.rb +0 -13
- data/lib/stripe/charge.rb +0 -82
- data/lib/stripe/country_spec.rb +0 -11
- data/lib/stripe/customer.rb +0 -88
- data/lib/stripe/dispute.rb +0 -17
- data/lib/stripe/ephemeral_key.rb +0 -18
- data/lib/stripe/event.rb +0 -7
- data/lib/stripe/exchange_rate.rb +0 -11
- data/lib/stripe/file_upload.rb +0 -35
- data/lib/stripe/invoice.rb +0 -30
- data/lib/stripe/invoice_line_item.rb +0 -5
- data/lib/stripe/login_link.rb +0 -9
- data/lib/stripe/order.rb +0 -35
- data/lib/stripe/order_return.rb +0 -11
- data/lib/stripe/payout.rb +0 -18
- data/lib/stripe/recipient_transfer.rb +0 -5
- data/lib/stripe/reversal.rb +0 -20
- data/lib/stripe/source.rb +0 -36
- data/lib/stripe/source_transaction.rb +0 -5
- data/lib/stripe/subscription.rb +0 -43
- data/lib/stripe/subscription_item.rb +0 -14
- data/lib/stripe/token.rb +0 -7
- data/lib/stripe/transfer.rb +0 -21
- data/test/api_stub_helpers.rb +0 -0
- data/test/stripe/account_external_accounts_operations_test.rb +0 -66
- data/test/stripe/account_login_links_operations_test.rb +0 -19
- data/test/stripe/account_test.rb +0 -190
- data/test/stripe/alipay_account_test.rb +0 -35
- data/test/stripe/api_operations_test.rb +0 -76
- data/test/stripe/api_resource_test.rb +0 -522
- data/test/stripe/apple_pay_domain_test.rb +0 -31
- data/test/stripe/application_fee_refund_test.rb +0 -35
- data/test/stripe/application_fee_refunds_operations_test.rb +0 -54
- data/test/stripe/application_fee_test.rb +0 -12
- data/test/stripe/balance_test.rb +0 -11
- data/test/stripe/bank_account_test.rb +0 -34
- data/test/stripe/charge_test.rb +0 -57
- data/test/stripe/country_spec_test.rb +0 -18
- data/test/stripe/coupon_test.rb +0 -42
- data/test/stripe/customer_card_test.rb +0 -42
- data/test/stripe/customer_sources_operations_test.rb +0 -66
- data/test/stripe/customer_test.rb +0 -113
- data/test/stripe/dispute_test.rb +0 -40
- data/test/stripe/ephemeral_key_test.rb +0 -84
- data/test/stripe/errors_test.rb +0 -18
- data/test/stripe/exchange_rate_test.rb +0 -18
- data/test/stripe/file_upload_test.rb +0 -83
- data/test/stripe/invoice_item_test.rb +0 -53
- data/test/stripe/invoice_line_item_test.rb +0 -6
- data/test/stripe/invoice_test.rb +0 -111
- data/test/stripe/list_object_test.rb +0 -154
- data/test/stripe/login_link_test.rb +0 -35
- data/test/stripe/oauth_test.rb +0 -77
- data/test/stripe/order_return_test.rb +0 -19
- data/test/stripe/order_test.rb +0 -57
- data/test/stripe/payout_test.rb +0 -48
- data/test/stripe/plan_test.rb +0 -50
- data/test/stripe/product_test.rb +0 -45
- data/test/stripe/recipient_test.rb +0 -47
- data/test/stripe/refund_test.rb +0 -37
- data/test/stripe/reversal_test.rb +0 -41
- data/test/stripe/sku_test.rb +0 -48
- data/test/stripe/source_test.rb +0 -84
- data/test/stripe/source_transaction_test.rb +0 -28
- data/test/stripe/stripe_client_test.rb +0 -728
- data/test/stripe/stripe_object_test.rb +0 -448
- data/test/stripe/stripe_response_test.rb +0 -47
- data/test/stripe/subscription_item_test.rb +0 -52
- data/test/stripe/subscription_test.rb +0 -104
- data/test/stripe/three_d_secure_test.rb +0 -21
- data/test/stripe/transfer_reversals_operations_test.rb +0 -55
- data/test/stripe/transfer_test.rb +0 -41
- data/test/stripe/util_test.rb +0 -432
- data/test/stripe/webhook_test.rb +0 -94
- data/test/stripe_test.rb +0 -59
- data/test/test_data.rb +0 -59
- data/test/test_helper.rb +0 -60
@@ -1,34 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class BankAccountTest < Test::Unit::TestCase
|
5
|
-
context "#resource_url" do
|
6
|
-
should "return an external account URL" do
|
7
|
-
bank_account = Stripe::BankAccount.construct_from(
|
8
|
-
account: "acct_123",
|
9
|
-
id: "ba_123"
|
10
|
-
)
|
11
|
-
assert_equal "/v1/accounts/acct_123/external_accounts/ba_123",
|
12
|
-
bank_account.resource_url
|
13
|
-
end
|
14
|
-
|
15
|
-
should "return a customer URL" do
|
16
|
-
bank_account = Stripe::BankAccount.construct_from(
|
17
|
-
customer: "cus_123",
|
18
|
-
id: "ba_123"
|
19
|
-
)
|
20
|
-
assert_equal "/v1/customers/cus_123/sources/ba_123",
|
21
|
-
bank_account.resource_url
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
context "#verify" do
|
26
|
-
should "verify the account" do
|
27
|
-
bank_account = Stripe::BankAccount.construct_from(customer: "cus_123",
|
28
|
-
id: "ba_123")
|
29
|
-
bank_account = bank_account.verify(amounts: [1, 2])
|
30
|
-
assert bank_account.is_a?(Stripe::BankAccount)
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
data/test/stripe/charge_test.rb
DELETED
@@ -1,57 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class ChargeTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
charges = Stripe::Charge.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/charges"
|
8
|
-
assert charges.data.is_a?(Array)
|
9
|
-
assert charges.data[0].is_a?(Stripe::Charge)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
charge = Stripe::Charge.retrieve("ch_123")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/charges/ch_123"
|
15
|
-
assert charge.is_a?(Stripe::Charge)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "be creatable" do
|
19
|
-
charge = Stripe::Charge.create(
|
20
|
-
amount: 100,
|
21
|
-
currency: "USD",
|
22
|
-
source: "src_123"
|
23
|
-
)
|
24
|
-
assert_requested :post, "#{Stripe.api_base}/v1/charges"
|
25
|
-
assert charge.is_a?(Stripe::Charge)
|
26
|
-
end
|
27
|
-
|
28
|
-
should "be saveable" do
|
29
|
-
charge = Stripe::Charge.retrieve("ch_123")
|
30
|
-
charge.metadata["key"] = "value"
|
31
|
-
charge.save
|
32
|
-
assert_requested :post, "#{Stripe.api_base}/v1/charges/#{charge.id}"
|
33
|
-
end
|
34
|
-
|
35
|
-
should "be updateable" do
|
36
|
-
charge = Stripe::Charge.update("ch_123", metadata: { foo: "bar" })
|
37
|
-
assert_requested :post, "#{Stripe.api_base}/v1/charges/ch_123"
|
38
|
-
assert charge.is_a?(Stripe::Charge)
|
39
|
-
end
|
40
|
-
|
41
|
-
context "#mark_as_fraudulent" do
|
42
|
-
should "charges should be able to be marked as fraudulent" do
|
43
|
-
charge = Stripe::Charge.retrieve("ch_123")
|
44
|
-
charge = charge.mark_as_fraudulent
|
45
|
-
assert charge.is_a?(Stripe::Charge)
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
context "#mark_as_safe" do
|
50
|
-
should "charges should be able to be marked as safe" do
|
51
|
-
charge = Stripe::Charge.retrieve("ch_123")
|
52
|
-
charge = charge.mark_as_safe
|
53
|
-
assert charge.is_a?(Stripe::Charge)
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
@@ -1,18 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class CountrySpecTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
c = Stripe::CountrySpec.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/country_specs"
|
8
|
-
assert c.data.is_a?(Array)
|
9
|
-
assert c.data[0].is_a?(Stripe::CountrySpec)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
s = Stripe::CountrySpec.retrieve("US")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/country_specs/US"
|
15
|
-
assert(s.is_a?(Stripe::CountrySpec))
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
data/test/stripe/coupon_test.rb
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class CouponTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
coupons = Stripe::Coupon.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/coupons"
|
8
|
-
assert coupons.data.is_a?(Array)
|
9
|
-
assert coupons.first.is_a?(Stripe::Coupon)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
coupon = Stripe::Coupon.retrieve("25OFF")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/coupons/25OFF"
|
15
|
-
assert coupon.is_a?(Stripe::Coupon)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "be creatable" do
|
19
|
-
coupon = Stripe::Coupon.create(
|
20
|
-
percent_off: 25,
|
21
|
-
duration: "repeating",
|
22
|
-
duration_in_months: 3,
|
23
|
-
id: "25OFF"
|
24
|
-
)
|
25
|
-
assert_requested :post, "#{Stripe.api_base}/v1/coupons"
|
26
|
-
assert coupon.is_a?(Stripe::Coupon)
|
27
|
-
end
|
28
|
-
|
29
|
-
should "be saveable" do
|
30
|
-
coupon = Stripe::Coupon.retrieve("25OFF")
|
31
|
-
coupon.metadata["key"] = "value"
|
32
|
-
coupon.save
|
33
|
-
assert_requested :post, "#{Stripe.api_base}/v1/coupons/#{coupon.id}"
|
34
|
-
end
|
35
|
-
|
36
|
-
should "be updateable" do
|
37
|
-
coupon = Stripe::Coupon.update("25OFF", metadata: { key: "value" })
|
38
|
-
assert_requested :post, "#{Stripe.api_base}/v1/coupons/25OFF"
|
39
|
-
assert coupon.is_a?(Stripe::Coupon)
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
@@ -1,42 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class CustomerCardTest < Test::Unit::TestCase
|
5
|
-
setup do
|
6
|
-
@customer = Stripe::Customer.retrieve("cus_123")
|
7
|
-
end
|
8
|
-
|
9
|
-
should "be listable" do
|
10
|
-
sources = @customer.sources.list
|
11
|
-
assert sources.data.is_a?(Array)
|
12
|
-
# because of the terrible :wildcard nature of sources, the API stub
|
13
|
-
# cannot currently replace this response with anything meaningful so we
|
14
|
-
# don't assert on the type of individual items like we do in other tests
|
15
|
-
end
|
16
|
-
|
17
|
-
should "be creatable" do
|
18
|
-
card = @customer.sources.create(
|
19
|
-
source: "tok_123"
|
20
|
-
)
|
21
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{@customer.id}/sources"
|
22
|
-
assert card.is_a?(Stripe::BankAccount)
|
23
|
-
end
|
24
|
-
|
25
|
-
should "be deletable" do
|
26
|
-
card = Stripe::Card.construct_from(customer: @customer.id,
|
27
|
-
id: "card_123")
|
28
|
-
card = card.delete
|
29
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/customers/#{@customer.id}/sources/card_123"
|
30
|
-
assert card.is_a?(Stripe::Card)
|
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,66 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class CustomerSourcesOperationsTest < Test::Unit::TestCase
|
5
|
-
setup do
|
6
|
-
@customer_id = "cus_123"
|
7
|
-
@source_id = "ba_123"
|
8
|
-
end
|
9
|
-
|
10
|
-
context "#create_source" do
|
11
|
-
should "create a source" do
|
12
|
-
source = Stripe::Customer.create_source(
|
13
|
-
@customer_id,
|
14
|
-
source: "tok_123"
|
15
|
-
)
|
16
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{@customer_id}/sources"
|
17
|
-
assert source.is_a?(Stripe::BankAccount)
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
context "#retrieve_source" do
|
22
|
-
should "retrieve a source" do
|
23
|
-
source = Stripe::Customer.retrieve_source(
|
24
|
-
@customer_id,
|
25
|
-
@source_id
|
26
|
-
)
|
27
|
-
assert_requested :get, "#{Stripe.api_base}/v1/customers/#{@customer_id}/sources/#{@source_id}"
|
28
|
-
assert source.is_a?(Stripe::BankAccount)
|
29
|
-
end
|
30
|
-
end
|
31
|
-
|
32
|
-
context "#update_source" do
|
33
|
-
should "update a source" do
|
34
|
-
source = Stripe::Customer.update_source(
|
35
|
-
@customer_id,
|
36
|
-
@source_id,
|
37
|
-
metadata: { foo: "bar" }
|
38
|
-
)
|
39
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{@customer_id}/sources/#{@source_id}"
|
40
|
-
assert source.is_a?(Stripe::Card)
|
41
|
-
end
|
42
|
-
end
|
43
|
-
|
44
|
-
context "#delete_source" do
|
45
|
-
should "delete a source" do
|
46
|
-
source = Stripe::Customer.delete_source(
|
47
|
-
@customer_id,
|
48
|
-
@source_id
|
49
|
-
)
|
50
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/customers/#{@customer_id}/sources/#{@source_id}"
|
51
|
-
assert source.is_a?(Stripe::BankAccount)
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
context "#list_sources" do
|
56
|
-
should "list the customer's sources" do
|
57
|
-
sources = Stripe::Customer.list_sources(
|
58
|
-
@customer_id
|
59
|
-
)
|
60
|
-
assert_requested :get, "#{Stripe.api_base}/v1/customers/#{@customer_id}/sources"
|
61
|
-
assert sources.is_a?(Stripe::ListObject)
|
62
|
-
assert sources.data.is_a?(Array)
|
63
|
-
end
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
@@ -1,113 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class CustomerTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
customers = Stripe::Customer.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/customers"
|
8
|
-
assert customers.data.is_a?(Array)
|
9
|
-
assert customers.first.is_a?(Stripe::Customer)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123"
|
15
|
-
assert customer.is_a?(Stripe::Customer)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "be creatable" do
|
19
|
-
customer = Stripe::Customer.create
|
20
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers"
|
21
|
-
assert customer.is_a?(Stripe::Customer)
|
22
|
-
end
|
23
|
-
|
24
|
-
should "be saveable" do
|
25
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
26
|
-
customer.metadata["key"] = "value"
|
27
|
-
customer.save
|
28
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{customer.id}"
|
29
|
-
end
|
30
|
-
|
31
|
-
should "be updateable" do
|
32
|
-
customer = Stripe::Customer.update("cus_123", metadata: { key: "value" })
|
33
|
-
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123"
|
34
|
-
assert customer.is_a?(Stripe::Customer)
|
35
|
-
end
|
36
|
-
|
37
|
-
should "be deletable" do
|
38
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
39
|
-
customer = customer.delete
|
40
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/customers/#{customer.id}"
|
41
|
-
assert customer.is_a?(Stripe::Customer)
|
42
|
-
end
|
43
|
-
|
44
|
-
context "#create_subscription" do
|
45
|
-
should "create a new subscription" do
|
46
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
47
|
-
subscription = customer.create_subscription(plan: "silver")
|
48
|
-
assert subscription.is_a?(Stripe::Subscription)
|
49
|
-
end
|
50
|
-
end
|
51
|
-
|
52
|
-
context "#create_upcoming_invoice" do
|
53
|
-
should "create a new invoice" do
|
54
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
55
|
-
invoice = customer.create_upcoming_invoice
|
56
|
-
assert invoice.is_a?(Stripe::Invoice)
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
context "#update_subscription" do
|
61
|
-
should "update a subscription" do
|
62
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
63
|
-
|
64
|
-
# deprecated API and not in schema
|
65
|
-
stub_request(:post, "#{Stripe.api_base}/v1/customers/#{customer.id}/subscription")
|
66
|
-
.with(body: { plan: "silver" })
|
67
|
-
.to_return(body: JSON.generate(object: "subscription"))
|
68
|
-
subscription = customer.update_subscription(plan: "silver")
|
69
|
-
assert subscription.is_a?(Stripe::Subscription)
|
70
|
-
end
|
71
|
-
end
|
72
|
-
|
73
|
-
context "#cancel_subscription" do
|
74
|
-
should "cancel a subscription" do
|
75
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
76
|
-
|
77
|
-
# deprecated API and not in schema
|
78
|
-
stub_request(:delete, "#{Stripe.api_base}/v1/customers/#{customer.id}/subscription")
|
79
|
-
.with(query: { at_period_end: "true" })
|
80
|
-
.to_return(body: JSON.generate(object: "subscription"))
|
81
|
-
subscription = customer.cancel_subscription(at_period_end: "true")
|
82
|
-
assert subscription.is_a?(Stripe::Subscription)
|
83
|
-
end
|
84
|
-
end
|
85
|
-
|
86
|
-
context "#delete_discount" do
|
87
|
-
should "delete a discount" do
|
88
|
-
customer = Stripe::Customer.retrieve("cus_123")
|
89
|
-
|
90
|
-
stub_request(:delete, "#{Stripe.api_base}/v1/customers/#{customer.id}/discount")
|
91
|
-
.to_return(body: JSON.generate(object: "customer"))
|
92
|
-
discount = customer.delete_discount
|
93
|
-
assert discount.is_a?(Stripe::Customer)
|
94
|
-
end
|
95
|
-
end
|
96
|
-
|
97
|
-
context "source field" do
|
98
|
-
should "allow setting source with token" do
|
99
|
-
c = Stripe::Customer.new("test_customer")
|
100
|
-
c.source = "tok_123"
|
101
|
-
assert_equal "tok_123", c.source
|
102
|
-
end
|
103
|
-
|
104
|
-
should "allow setting source with hash and set flag" do
|
105
|
-
c = Stripe::Customer.new("test_customer")
|
106
|
-
c.source = {
|
107
|
-
object: "card",
|
108
|
-
}
|
109
|
-
assert_equal true, c.source.save_with_parent
|
110
|
-
end
|
111
|
-
end
|
112
|
-
end
|
113
|
-
end
|
data/test/stripe/dispute_test.rb
DELETED
@@ -1,40 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class DisputeTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
disputes = Stripe::Dispute.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/disputes"
|
8
|
-
assert disputes.data.is_a?(Array)
|
9
|
-
assert disputes.first.is_a?(Stripe::Dispute)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
dispute = Stripe::Dispute.retrieve("dp_123")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/disputes/dp_123"
|
15
|
-
assert dispute.is_a?(Stripe::Dispute)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "be saveable" do
|
19
|
-
dispute = Stripe::Dispute.retrieve("dp_123")
|
20
|
-
dispute.metadata["key"] = "value"
|
21
|
-
dispute.save
|
22
|
-
assert_requested :post, "#{Stripe.api_base}/v1/disputes/#{dispute.id}"
|
23
|
-
end
|
24
|
-
|
25
|
-
should "be updateable" do
|
26
|
-
dispute = Stripe::Dispute.update("dp_123", metadata: { key: "value" })
|
27
|
-
assert_requested :post, "#{Stripe.api_base}/v1/disputes/dp_123"
|
28
|
-
assert dispute.is_a?(Stripe::Dispute)
|
29
|
-
end
|
30
|
-
|
31
|
-
context "#close" do
|
32
|
-
should "be closeable" do
|
33
|
-
dispute = Stripe::Dispute.retrieve("dp_123")
|
34
|
-
dispute.close
|
35
|
-
assert_requested :post,
|
36
|
-
"#{Stripe.api_base}/v1/disputes/#{dispute.id}/close"
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
40
|
-
end
|
@@ -1,84 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class EphemeralKeyTest < Test::Unit::TestCase
|
5
|
-
context "#create" do
|
6
|
-
should "succeed" do
|
7
|
-
key = Stripe::EphemeralKey.create(
|
8
|
-
{ customer: "cus_123" },
|
9
|
-
stripe_version: "2017-05-25"
|
10
|
-
)
|
11
|
-
|
12
|
-
assert_requested(
|
13
|
-
:post,
|
14
|
-
"#{Stripe.api_base}/v1/ephemeral_keys",
|
15
|
-
headers: { "Stripe-Version" => "2017-05-25" }
|
16
|
-
)
|
17
|
-
|
18
|
-
assert key.is_a?(Stripe::EphemeralKey)
|
19
|
-
end
|
20
|
-
|
21
|
-
context "#no global version" do
|
22
|
-
should "use the correct api version" do
|
23
|
-
key = Stripe::EphemeralKey.create(
|
24
|
-
{ customer: "cus_123" },
|
25
|
-
stripe_version: "2017-06-05"
|
26
|
-
)
|
27
|
-
|
28
|
-
assert_requested(
|
29
|
-
:post,
|
30
|
-
"#{Stripe.api_base}/v1/ephemeral_keys",
|
31
|
-
headers: { "Stripe-Version" => "2017-06-05" }
|
32
|
-
)
|
33
|
-
|
34
|
-
assert key.is_a?(Stripe::EphemeralKey)
|
35
|
-
end
|
36
|
-
|
37
|
-
should "error without an explicit api version" do
|
38
|
-
e = assert_raises(ArgumentError) do
|
39
|
-
Stripe::EphemeralKey.create(customer: "cus_123")
|
40
|
-
end
|
41
|
-
assert_match("stripe_version must be specified", e.message)
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
|
-
context "#with global version" do
|
46
|
-
setup do
|
47
|
-
Stripe.api_version = "2017-05-25"
|
48
|
-
end
|
49
|
-
|
50
|
-
teardown do
|
51
|
-
Stripe.api_version = nil
|
52
|
-
end
|
53
|
-
|
54
|
-
should "use the correct api version" do
|
55
|
-
key = Stripe::EphemeralKey.create(
|
56
|
-
{ customer: "cus_123" },
|
57
|
-
stripe_version: "2017-05-25"
|
58
|
-
)
|
59
|
-
|
60
|
-
assert key.is_a?(Stripe::EphemeralKey)
|
61
|
-
end
|
62
|
-
|
63
|
-
should "error without an explicit api version" do
|
64
|
-
e = assert_raises(ArgumentError) do
|
65
|
-
Stripe::EphemeralKey.create(customer: "cus_123")
|
66
|
-
end
|
67
|
-
assert_match("stripe_version must be specified", e.message)
|
68
|
-
end
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
context "#delete" do
|
73
|
-
should "succeed" do
|
74
|
-
key = Stripe::EphemeralKey.create(
|
75
|
-
{ customer: "cus_123" },
|
76
|
-
stripe_version: "2017-05-25"
|
77
|
-
)
|
78
|
-
|
79
|
-
key.delete
|
80
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/ephemeral_keys/#{key.id}"
|
81
|
-
end
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
data/test/stripe/errors_test.rb
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class StripeErrorTest < Test::Unit::TestCase
|
5
|
-
context "#to_s" do
|
6
|
-
should "convert to string" do
|
7
|
-
e = StripeError.new("message")
|
8
|
-
assert_equal "message", e.to_s
|
9
|
-
|
10
|
-
e = StripeError.new("message", http_status: 200)
|
11
|
-
assert_equal "(Status 200) message", e.to_s
|
12
|
-
|
13
|
-
e = StripeError.new("message", http_status: nil, http_body: nil, json_body: nil, http_headers: { request_id: "request-id" })
|
14
|
-
assert_equal "(Request request-id) message", e.to_s
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
@@ -1,18 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class ExchangeRateTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
list_rates = Stripe::ExchangeRate.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/exchange_rates"
|
8
|
-
assert list_rates.data.is_a?(Array)
|
9
|
-
assert list_rates.data.first.is_a?(Stripe::ExchangeRate)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
rates = Stripe::ExchangeRate.retrieve("usd")
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/exchange_rates/usd"
|
15
|
-
assert rates.is_a?(Stripe::ExchangeRate)
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
@@ -1,83 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class FileUploadTest < Test::Unit::TestCase
|
5
|
-
# Note that these tests are written different from others because we
|
6
|
-
# don't have anything on the uploads service in our OpenAPI spec. This is
|
7
|
-
# something that should be looked into at some point. We may need to ship
|
8
|
-
# a separate spec for it though, so it's high effort with low reward for
|
9
|
-
# the time being.
|
10
|
-
FIXTURE = {
|
11
|
-
id: "file_123",
|
12
|
-
object: "file_upload",
|
13
|
-
}.freeze
|
14
|
-
|
15
|
-
should "be listable" do
|
16
|
-
stub_request(:get, "#{Stripe.uploads_base}/v1/files")
|
17
|
-
.to_return(body: JSON.generate(data: [FIXTURE],
|
18
|
-
object: "list",
|
19
|
-
resource_url: "/v1/files"))
|
20
|
-
|
21
|
-
files = Stripe::FileUpload.list
|
22
|
-
assert files.data.is_a?(Array)
|
23
|
-
assert files.data[0].is_a?(Stripe::FileUpload)
|
24
|
-
end
|
25
|
-
|
26
|
-
should "be retrievable" do
|
27
|
-
stub_request(:get, "#{Stripe.uploads_base}/v1/files/file_123")
|
28
|
-
.to_return(body: JSON.generate(FIXTURE))
|
29
|
-
|
30
|
-
file = Stripe::FileUpload.retrieve("file_123")
|
31
|
-
assert file.is_a?(Stripe::FileUpload)
|
32
|
-
end
|
33
|
-
|
34
|
-
should "be creatable with a File" do
|
35
|
-
stub_request(:post, "#{Stripe.uploads_base}/v1/files")
|
36
|
-
.with(headers: {
|
37
|
-
"Content-Type" => /\A#{Faraday::Request::Multipart.mime_type}/,
|
38
|
-
}) do |request|
|
39
|
-
request.body =~ /FileUploadTest/
|
40
|
-
end.to_return(body: JSON.generate(FIXTURE))
|
41
|
-
|
42
|
-
file = Stripe::FileUpload.create(
|
43
|
-
purpose: "dispute_evidence",
|
44
|
-
file: File.new(__FILE__)
|
45
|
-
)
|
46
|
-
assert file.is_a?(Stripe::FileUpload)
|
47
|
-
end
|
48
|
-
|
49
|
-
should "be creatable with a Tempfile" do
|
50
|
-
stub_request(:post, "#{Stripe.uploads_base}/v1/files")
|
51
|
-
.with(headers: {
|
52
|
-
"Content-Type" => /\A#{Faraday::Request::Multipart.mime_type}/,
|
53
|
-
}) do |request|
|
54
|
-
request.body =~ /Hello world/
|
55
|
-
end.to_return(body: JSON.generate(FIXTURE))
|
56
|
-
|
57
|
-
tempfile = Tempfile.new("foo")
|
58
|
-
tempfile.write("Hello world")
|
59
|
-
tempfile.rewind
|
60
|
-
|
61
|
-
file = Stripe::FileUpload.create(
|
62
|
-
purpose: "dispute_evidence",
|
63
|
-
file: tempfile
|
64
|
-
)
|
65
|
-
assert file.is_a?(Stripe::FileUpload)
|
66
|
-
end
|
67
|
-
|
68
|
-
should "be creatable with Faraday::UploadIO" do
|
69
|
-
stub_request(:post, "#{Stripe.uploads_base}/v1/files")
|
70
|
-
.with(headers: {
|
71
|
-
"Content-Type" => /\A#{Faraday::Request::Multipart.mime_type}/,
|
72
|
-
}) do |request|
|
73
|
-
request.body =~ /FileUploadTest/
|
74
|
-
end.to_return(body: JSON.generate(FIXTURE))
|
75
|
-
|
76
|
-
file = Stripe::FileUpload.create(
|
77
|
-
purpose: "dispute_evidence",
|
78
|
-
file: Faraday::UploadIO.new(File.new(__FILE__), nil)
|
79
|
-
)
|
80
|
-
assert file.is_a?(Stripe::FileUpload)
|
81
|
-
end
|
82
|
-
end
|
83
|
-
end
|
@@ -1,53 +0,0 @@
|
|
1
|
-
require File.expand_path("../../test_helper", __FILE__)
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class InvoiceItemTest < Test::Unit::TestCase
|
5
|
-
should "be listable" do
|
6
|
-
invoiceitems = Stripe::InvoiceItem.list
|
7
|
-
assert_requested :get, "#{Stripe.api_base}/v1/invoiceitems"
|
8
|
-
assert invoiceitems.data.is_a?(Array)
|
9
|
-
assert invoiceitems.first.is_a?(Stripe::InvoiceItem)
|
10
|
-
end
|
11
|
-
|
12
|
-
should "be retrievable" do
|
13
|
-
item = Stripe::InvoiceItem.retrieve("ii_123")
|
14
|
-
assert_requested :get,
|
15
|
-
"#{Stripe.api_base}/v1/invoiceitems/ii_123"
|
16
|
-
assert item.is_a?(Stripe::InvoiceItem)
|
17
|
-
end
|
18
|
-
|
19
|
-
should "be creatable" do
|
20
|
-
item = Stripe::InvoiceItem.create(
|
21
|
-
amount: 100,
|
22
|
-
currency: "USD",
|
23
|
-
customer: "cus_123"
|
24
|
-
)
|
25
|
-
assert_requested :post,
|
26
|
-
"#{Stripe.api_base}/v1/invoiceitems"
|
27
|
-
assert item.is_a?(Stripe::InvoiceItem)
|
28
|
-
end
|
29
|
-
|
30
|
-
should "be saveable" do
|
31
|
-
item = Stripe::InvoiceItem.retrieve("ii_123")
|
32
|
-
item.metadata["key"] = "value"
|
33
|
-
item.save
|
34
|
-
assert_requested :post,
|
35
|
-
"#{Stripe.api_base}/v1/invoiceitems/#{item.id}"
|
36
|
-
end
|
37
|
-
|
38
|
-
should "be updateable" do
|
39
|
-
item = Stripe::InvoiceItem.update("ii_123", metadata: { key: "value" })
|
40
|
-
assert_requested :post,
|
41
|
-
"#{Stripe.api_base}/v1/invoiceitems/ii_123"
|
42
|
-
assert item.is_a?(Stripe::InvoiceItem)
|
43
|
-
end
|
44
|
-
|
45
|
-
should "be deletable" do
|
46
|
-
item = Stripe::InvoiceItem.retrieve("ii_123")
|
47
|
-
item = item.delete
|
48
|
-
assert_requested :delete,
|
49
|
-
"#{Stripe.api_base}/v1/invoiceitems/#{item.id}"
|
50
|
-
assert item.is_a?(Stripe::InvoiceItem)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|