stripe 3.2.0 → 5.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.editorconfig +10 -0
- data/.gitignore +3 -0
- data/.rubocop.yml +80 -0
- data/.rubocop_todo.yml +33 -0
- data/.travis.yml +9 -7
- data/.vscode/extensions.json +7 -0
- data/.vscode/settings.json +8 -0
- data/CHANGELOG.md +876 -0
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +21 -21
- data/History.txt +1 -678
- data/README.md +195 -53
- data/Rakefile +18 -12
- data/VERSION +1 -1
- data/bin/stripe-console +5 -3
- data/lib/stripe/api_operations/create.rb +3 -1
- data/lib/stripe/api_operations/delete.rb +26 -2
- data/lib/stripe/api_operations/list.rb +3 -12
- data/lib/stripe/api_operations/nested_resource.rb +72 -0
- data/lib/stripe/api_operations/request.rb +33 -15
- data/lib/stripe/api_operations/save.rb +18 -9
- data/lib/stripe/api_resource.rb +60 -10
- data/lib/stripe/connection_manager.rb +159 -0
- data/lib/stripe/error_object.rb +94 -0
- data/lib/stripe/errors.rb +39 -19
- data/lib/stripe/instrumentation.rb +82 -0
- data/lib/stripe/list_object.rb +54 -22
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +22 -14
- data/lib/stripe/object_types.rb +96 -0
- data/lib/stripe/{account.rb → resources/account.rb} +72 -34
- data/lib/stripe/resources/account_link.rb +9 -0
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +4 -2
- data/lib/stripe/resources/application_fee.rb +13 -0
- data/lib/stripe/resources/application_fee_refund.rb +30 -0
- data/lib/stripe/{balance.rb → resources/balance.rb} +3 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +3 -5
- data/lib/stripe/resources/bank_account.rb +42 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +6 -5
- data/lib/stripe/resources/bitcoin_transaction.rb +15 -0
- data/lib/stripe/resources/capability.rb +33 -0
- data/lib/stripe/resources/card.rb +37 -0
- data/lib/stripe/resources/charge.rb +22 -0
- data/lib/stripe/resources/checkout/session.rb +12 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +3 -5
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +4 -2
- data/lib/stripe/resources/credit_note.rb +32 -0
- data/lib/stripe/resources/credit_note_line_item.rb +7 -0
- data/lib/stripe/resources/customer.rb +35 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +30 -0
- data/lib/stripe/resources/discount.rb +7 -0
- data/lib/stripe/resources/dispute.rb +21 -0
- data/lib/stripe/resources/ephemeral_key.rb +19 -0
- data/lib/stripe/{event.rb → resources/event.rb} +3 -1
- data/lib/stripe/resources/exchange_rate.rb +9 -0
- data/lib/stripe/resources/file.rb +34 -0
- data/lib/stripe/resources/file_link.rb +11 -0
- data/lib/stripe/resources/invoice.rb +73 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +4 -2
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +3 -1
- data/lib/stripe/resources/issuing/authorization.rb +33 -0
- data/lib/stripe/resources/issuing/card.rb +24 -0
- data/lib/stripe/resources/issuing/card_details.rb +9 -0
- data/lib/stripe/resources/issuing/cardholder.rb +13 -0
- data/lib/stripe/resources/issuing/dispute.rb +13 -0
- data/lib/stripe/resources/issuing/transaction.rb +12 -0
- data/lib/stripe/resources/login_link.rb +14 -0
- data/lib/stripe/resources/mandate.rb +7 -0
- data/lib/stripe/resources/order.rb +32 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +3 -5
- data/lib/stripe/resources/payment_intent.rb +42 -0
- data/lib/stripe/resources/payment_method.rb +32 -0
- data/lib/stripe/resources/payout.rb +22 -0
- data/lib/stripe/resources/person.rb +31 -0
- data/lib/stripe/{plan.rb → resources/plan.rb} +3 -1
- data/lib/stripe/{product.rb → resources/product.rb} +5 -3
- data/lib/stripe/resources/radar/early_fraud_warning.rb +11 -0
- data/lib/stripe/resources/radar/value_list.rb +14 -0
- data/lib/stripe/resources/radar/value_list_item.rb +13 -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} +3 -1
- data/lib/stripe/resources/reporting/report_run.rb +12 -0
- data/lib/stripe/resources/reporting/report_type.rb +12 -0
- data/lib/stripe/resources/reversal.rb +29 -0
- data/lib/stripe/resources/review.rb +20 -0
- data/lib/stripe/resources/setup_intent.rb +32 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +15 -0
- data/lib/stripe/{sku.rb → resources/sku.rb} +5 -3
- data/lib/stripe/resources/source.rb +46 -0
- data/lib/stripe/resources/source_transaction.rb +7 -0
- data/lib/stripe/resources/subscription.rb +25 -0
- data/lib/stripe/resources/subscription_item.rb +25 -0
- data/lib/stripe/resources/subscription_schedule.rb +32 -0
- data/lib/stripe/resources/tax_id.rb +26 -0
- data/lib/stripe/resources/tax_rate.rb +11 -0
- data/lib/stripe/resources/terminal/connection_token.rb +11 -0
- data/lib/stripe/resources/terminal/location.rb +14 -0
- data/lib/stripe/resources/terminal/reader.rb +14 -0
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +3 -1
- data/lib/stripe/{token.rb → resources/token.rb} +3 -1
- data/lib/stripe/resources/topup.rb +22 -0
- data/lib/stripe/resources/transfer.rb +26 -0
- data/lib/stripe/resources/usage_record.rb +7 -0
- data/lib/stripe/resources/usage_record_summary.rb +7 -0
- data/lib/stripe/resources/webhook_endpoint.rb +12 -0
- data/lib/stripe/resources.rb +79 -0
- data/lib/stripe/singleton_api_resource.rb +10 -4
- data/lib/stripe/stripe_client.rb +658 -337
- data/lib/stripe/stripe_object.rb +248 -126
- data/lib/stripe/stripe_response.rb +55 -21
- data/lib/stripe/util.rb +145 -187
- data/lib/stripe/version.rb +3 -1
- data/lib/stripe/webhook.rb +27 -16
- data/lib/stripe.rb +139 -90
- data/stripe.gemspec +26 -14
- data/test/openapi/README.md +9 -0
- data/test/stripe/account_link_test.rb +18 -0
- data/test/stripe/account_test.rb +311 -101
- data/test/stripe/alipay_account_test.rb +21 -1
- data/test/stripe/api_operations_test.rb +57 -8
- data/test/stripe/api_resource_test.rb +359 -271
- data/test/stripe/apple_pay_domain_test.rb +26 -11
- data/test/stripe/application_fee_refund_test.rb +10 -8
- data/test/stripe/application_fee_test.rb +49 -3
- data/test/stripe/balance_test.rb +4 -2
- data/test/stripe/balance_transaction_test.rb +20 -0
- data/test/stripe/bank_account_test.rb +11 -11
- data/test/stripe/capability_test.rb +45 -0
- data/test/stripe/charge_test.rb +25 -18
- data/test/stripe/checkout/session_test.rb +41 -0
- data/test/stripe/connection_manager_test.rb +163 -0
- data/test/stripe/country_spec_test.rb +6 -4
- data/test/stripe/coupon_test.rb +29 -10
- data/test/stripe/credit_note_test.rb +90 -0
- data/test/stripe/customer_balance_transaction_test.rb +37 -0
- data/test/stripe/customer_card_test.rb +13 -17
- data/test/stripe/customer_test.rb +161 -49
- data/test/stripe/dispute_test.rb +19 -8
- data/test/stripe/ephemeral_key_test.rb +23 -14
- data/test/stripe/errors_test.rb +32 -9
- data/test/stripe/exchange_rate_test.rb +20 -0
- data/test/stripe/file_link_test.rb +41 -0
- data/test/stripe/file_test.rb +87 -0
- data/test/stripe/instrumentation_test.rb +74 -0
- data/test/stripe/invoice_item_test.rb +31 -18
- data/test/stripe/invoice_line_item_test.rb +3 -1
- data/test/stripe/invoice_test.rb +158 -39
- data/test/stripe/issuing/authorization_test.rb +72 -0
- data/test/stripe/issuing/card_test.rb +62 -0
- data/test/stripe/issuing/cardholder_test.rb +53 -0
- data/test/stripe/issuing/dispute_test.rb +45 -0
- data/test/stripe/issuing/transaction_test.rb +48 -0
- data/test/stripe/list_object_test.rb +120 -88
- data/test/stripe/login_link_test.rb +16 -14
- data/test/stripe/mandate_test.rb +14 -0
- data/test/stripe/multipart_encoder_test.rb +130 -0
- data/test/stripe/oauth_test.rb +69 -50
- data/test/stripe/order_return_test.rb +7 -5
- data/test/stripe/order_test.rb +39 -14
- data/test/stripe/payment_intent_test.rb +107 -0
- data/test/stripe/payment_method_test.rb +84 -0
- data/test/stripe/payout_test.rb +18 -9
- data/test/stripe/person_test.rb +46 -0
- data/test/stripe/plan_test.rb +67 -19
- data/test/stripe/product_test.rb +28 -14
- data/test/stripe/radar/early_fraud_warning_test.rb +22 -0
- data/test/stripe/radar/value_list_item_test.rb +48 -0
- data/test/stripe/radar/value_list_test.rb +61 -0
- data/test/stripe/recipient_test.rb +27 -13
- data/test/stripe/refund_test.rb +11 -9
- data/test/stripe/reporting/report_run_test.rb +33 -0
- data/test/stripe/reporting/report_type_test.rb +22 -0
- data/test/stripe/reversal_test.rb +12 -10
- data/test/stripe/review_test.rb +27 -0
- data/test/stripe/setup_intent_test.rb +84 -0
- data/test/stripe/sigma/scheduled_query_run_test.rb +22 -0
- data/test/stripe/sku_test.rb +24 -12
- data/test/stripe/source_test.rb +70 -19
- data/test/stripe/stripe_client_test.rb +867 -326
- data/test/stripe/stripe_object_test.rb +284 -182
- data/test/stripe/stripe_response_test.rb +73 -24
- data/test/stripe/subscription_item_test.rb +47 -15
- data/test/stripe/subscription_schedule_test.rb +82 -0
- data/test/stripe/subscription_test.rb +41 -19
- data/test/stripe/tax_id_test.rb +31 -0
- data/test/stripe/tax_rate_test.rb +43 -0
- data/test/stripe/terminal/connection_token_test.rb +16 -0
- data/test/stripe/terminal/location_test.rb +68 -0
- data/test/stripe/terminal/reader_test.rb +62 -0
- data/test/stripe/three_d_secure_test.rb +4 -2
- data/test/stripe/topup_test.rb +62 -0
- data/test/stripe/transfer_test.rb +55 -8
- data/test/stripe/usage_record_summary_test.rb +29 -0
- data/test/stripe/util_test.rb +173 -84
- data/test/stripe/webhook_endpoint_test.rb +59 -0
- data/test/stripe/webhook_test.rb +21 -17
- data/test/stripe_mock.rb +78 -0
- data/test/stripe_test.rb +6 -15
- data/test/test_data.rb +28 -26
- data/test/test_helper.rb +48 -29
- metadata +183 -70
- data/lib/stripe/alipay_account.rb +0 -22
- data/lib/stripe/application_fee.rb +0 -22
- data/lib/stripe/application_fee_refund.rb +0 -20
- data/lib/stripe/bank_account.rb +0 -30
- data/lib/stripe/bitcoin_transaction.rb +0 -11
- data/lib/stripe/card.rb +0 -27
- data/lib/stripe/charge.rb +0 -82
- data/lib/stripe/customer.rb +0 -79
- data/lib/stripe/dispute.rb +0 -17
- data/lib/stripe/ephemeral_key.rb +0 -18
- data/lib/stripe/file_upload.rb +0 -33
- data/lib/stripe/invoice.rb +0 -29
- data/lib/stripe/login_link.rb +0 -9
- data/lib/stripe/order.rb +0 -29
- data/lib/stripe/payout.rb +0 -18
- data/lib/stripe/recipient_transfer.rb +0 -6
- data/lib/stripe/reversal.rb +0 -20
- data/lib/stripe/source.rb +0 -23
- data/lib/stripe/subscription.rb +0 -33
- data/lib/stripe/subscription_item.rb +0 -14
- data/lib/stripe/transfer.rb +0 -18
- data/test/api_stub_helpers.rb +0 -0
- data/test/stripe/bitcoin_receiver_test.rb +0 -67
- data/test/stripe/bitcoin_transaction_test.rb +0 -19
- data/test/stripe/file_upload_test.rb +0 -66
- data/test/stripe/recipient_card_test.rb +0 -44
@@ -0,0 +1,90 @@
|
|
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 ".preview" do
|
44
|
+
should "preview a credit note" do
|
45
|
+
invoice = Stripe::CreditNote.preview(
|
46
|
+
invoice: "in_123",
|
47
|
+
amount: 500
|
48
|
+
)
|
49
|
+
assert_requested :get, "#{Stripe.api_base}/v1/credit_notes/preview",
|
50
|
+
query: {
|
51
|
+
invoice: "in_123",
|
52
|
+
amount: 500,
|
53
|
+
}
|
54
|
+
assert invoice.is_a?(Stripe::CreditNote)
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
context "#void_credit_note" do
|
59
|
+
should "void credit_note" do
|
60
|
+
credit_note = Stripe::CreditNote.retrieve("cn_123")
|
61
|
+
credit_note = credit_note.void_credit_note
|
62
|
+
assert_requested :post,
|
63
|
+
"#{Stripe.api_base}/v1/credit_notes/#{credit_note.id}/void"
|
64
|
+
assert credit_note.is_a?(Stripe::CreditNote)
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
context ".void_credit_note" do
|
69
|
+
should "void credit_note" do
|
70
|
+
credit_note = Stripe::CreditNote.void_credit_note("cn_123")
|
71
|
+
assert_requested :post, "#{Stripe.api_base}/v1/credit_notes/cn_123/void"
|
72
|
+
assert credit_note.is_a?(Stripe::CreditNote)
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
context ".list_preview_line_items" do
|
77
|
+
should "list_preview_line_items" do
|
78
|
+
line_items = Stripe::CreditNote.list_preview_line_items(
|
79
|
+
invoice: "in_123"
|
80
|
+
)
|
81
|
+
assert_requested :get, "#{Stripe.api_base}/v1/credit_notes/preview/lines",
|
82
|
+
query: {
|
83
|
+
invoice: "in_123",
|
84
|
+
}
|
85
|
+
assert line_items.data.is_a?(Array)
|
86
|
+
assert line_items.data[0].is_a?(Stripe::CreditNoteLineItem)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../../test_helper", __FILE__)
|
4
|
+
|
5
|
+
module Stripe
|
6
|
+
class CustomerBalanceTransactionTest < Test::Unit::TestCase
|
7
|
+
context "#resource_url" do
|
8
|
+
should "return a resource URL" do
|
9
|
+
transaction = Stripe::CustomerBalanceTransaction.construct_from(
|
10
|
+
id: "cbtxn_123",
|
11
|
+
customer: "cus_123"
|
12
|
+
)
|
13
|
+
assert_equal "/v1/customers/cus_123/balance_transactions/cbtxn_123",
|
14
|
+
transaction.resource_url
|
15
|
+
end
|
16
|
+
|
17
|
+
should "raise without a customer" do
|
18
|
+
transaction = Stripe::CustomerBalanceTransaction.construct_from(id: "cbtxn_123")
|
19
|
+
assert_raises NotImplementedError do
|
20
|
+
transaction.resource_url
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
should "raise on #retrieve" do
|
26
|
+
assert_raises NotImplementedError do
|
27
|
+
Stripe::CustomerBalanceTransaction.retrieve("cbtxn_123")
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
should "raise on #update" do
|
32
|
+
assert_raises NotImplementedError do
|
33
|
+
Stripe::CustomerBalanceTransaction.update("cbtxn_123")
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
2
4
|
|
3
5
|
module Stripe
|
4
6
|
class CustomerCardTest < Test::Unit::TestCase
|
@@ -8,37 +10,31 @@ module Stripe
|
|
8
10
|
|
9
11
|
should "be listable" do
|
10
12
|
sources = @customer.sources.list
|
11
|
-
assert sources.data.
|
13
|
+
assert sources.data.is_a?(Array)
|
12
14
|
# because of the terrible :wildcard nature of sources, the API stub
|
13
15
|
# cannot currently replace this response with anything meaningful so we
|
14
16
|
# don't assert on the type of individual items like we do in other tests
|
15
17
|
end
|
16
18
|
|
17
19
|
should "be creatable" do
|
18
|
-
|
19
|
-
source: "tok_123"
|
20
|
+
@customer.sources.create(
|
21
|
+
source: "tok_123"
|
20
22
|
)
|
21
23
|
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{@customer.id}/sources"
|
22
|
-
assert card.kind_of?(Stripe::BankAccount)
|
23
24
|
end
|
24
25
|
|
25
26
|
should "be deletable" do
|
26
|
-
card = Stripe::Card.construct_from(
|
27
|
-
|
28
|
-
|
29
|
-
})
|
30
|
-
card = card.delete
|
27
|
+
card = Stripe::Card.construct_from(customer: @customer.id,
|
28
|
+
id: "card_123")
|
29
|
+
card.delete
|
31
30
|
assert_requested :delete, "#{Stripe.api_base}/v1/customers/#{@customer.id}/sources/card_123"
|
32
|
-
assert card.kind_of?(Stripe::Card)
|
33
31
|
end
|
34
32
|
|
35
33
|
should "be saveable" do
|
36
|
-
card = Stripe::Card.construct_from(
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
})
|
41
|
-
card.metadata['key'] = 'value'
|
34
|
+
card = Stripe::Card.construct_from(customer: @customer.id,
|
35
|
+
id: "card_123",
|
36
|
+
metadata: {})
|
37
|
+
card.metadata["key"] = "value"
|
42
38
|
card.save
|
43
39
|
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{@customer.id}/sources/card_123"
|
44
40
|
end
|
@@ -1,96 +1,124 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
2
4
|
|
3
5
|
module Stripe
|
4
6
|
class CustomerTest < Test::Unit::TestCase
|
5
7
|
should "be listable" do
|
6
8
|
customers = Stripe::Customer.list
|
7
9
|
assert_requested :get, "#{Stripe.api_base}/v1/customers"
|
8
|
-
assert customers.data.
|
9
|
-
assert customers.first.
|
10
|
+
assert customers.data.is_a?(Array)
|
11
|
+
assert customers.first.is_a?(Stripe::Customer)
|
10
12
|
end
|
11
13
|
|
12
14
|
should "be retrievable" do
|
13
15
|
customer = Stripe::Customer.retrieve("cus_123")
|
14
16
|
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123"
|
15
|
-
assert customer.
|
17
|
+
assert customer.is_a?(Stripe::Customer)
|
16
18
|
end
|
17
19
|
|
18
20
|
should "be creatable" do
|
19
21
|
customer = Stripe::Customer.create
|
20
22
|
assert_requested :post, "#{Stripe.api_base}/v1/customers"
|
21
|
-
assert customer.
|
23
|
+
assert customer.is_a?(Stripe::Customer)
|
22
24
|
end
|
23
25
|
|
24
26
|
should "be saveable" do
|
25
27
|
customer = Stripe::Customer.retrieve("cus_123")
|
26
|
-
customer.metadata[
|
28
|
+
customer.metadata["key"] = "value"
|
27
29
|
customer.save
|
28
30
|
assert_requested :post, "#{Stripe.api_base}/v1/customers/#{customer.id}"
|
29
31
|
end
|
30
32
|
|
31
33
|
should "be updateable" do
|
32
|
-
customer = Stripe::Customer.update("cus_123", metadata: { key:
|
34
|
+
customer = Stripe::Customer.update("cus_123", metadata: { key: "value" })
|
33
35
|
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123"
|
34
|
-
assert customer.
|
36
|
+
assert customer.is_a?(Stripe::Customer)
|
35
37
|
end
|
36
38
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
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
|
42
46
|
end
|
43
47
|
|
44
|
-
context "
|
45
|
-
should "
|
46
|
-
customer = Stripe::Customer.
|
47
|
-
|
48
|
-
assert
|
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)
|
49
53
|
end
|
50
54
|
end
|
51
55
|
|
52
|
-
context "#
|
53
|
-
should "
|
56
|
+
context "#delete_discount" do
|
57
|
+
should "delete a discount" do
|
54
58
|
customer = Stripe::Customer.retrieve("cus_123")
|
55
|
-
|
56
|
-
|
59
|
+
customer = customer.delete_discount
|
60
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/customers/#{customer.id}/discount"
|
61
|
+
assert customer.is_a?(Stripe::Customer)
|
57
62
|
end
|
58
63
|
end
|
59
64
|
|
60
|
-
context "
|
61
|
-
should "
|
62
|
-
|
65
|
+
context ".delete_discount" do
|
66
|
+
should "delete a discount" do
|
67
|
+
discount = Stripe::Customer.delete_discount("cus_123")
|
68
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/customers/cus_123/discount"
|
69
|
+
assert discount.is_a?(Stripe::Discount)
|
70
|
+
end
|
71
|
+
end
|
63
72
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
73
|
+
context "#create_source" do
|
74
|
+
should "create a source" do
|
75
|
+
Stripe::Customer.create_source(
|
76
|
+
"cus_123",
|
77
|
+
source: "tok_123"
|
78
|
+
)
|
79
|
+
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123/sources"
|
70
80
|
end
|
71
81
|
end
|
72
82
|
|
73
|
-
context "#
|
74
|
-
should "
|
75
|
-
|
83
|
+
context "#retrieve_source" do
|
84
|
+
should "retrieve a source" do
|
85
|
+
Stripe::Customer.retrieve_source(
|
86
|
+
"cus_123",
|
87
|
+
"ba_123"
|
88
|
+
)
|
89
|
+
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123/sources/ba_123"
|
90
|
+
end
|
91
|
+
end
|
76
92
|
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
93
|
+
context "#update_source" do
|
94
|
+
should "update a source" do
|
95
|
+
Stripe::Customer.update_source(
|
96
|
+
"cus_123",
|
97
|
+
"ba_123",
|
98
|
+
metadata: { foo: "bar" }
|
99
|
+
)
|
100
|
+
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123/sources/ba_123"
|
83
101
|
end
|
84
102
|
end
|
85
103
|
|
86
|
-
context "#
|
87
|
-
should "delete a
|
88
|
-
|
104
|
+
context "#delete_source" do
|
105
|
+
should "delete a source" do
|
106
|
+
Stripe::Customer.delete_source(
|
107
|
+
"cus_123",
|
108
|
+
"ba_123"
|
109
|
+
)
|
110
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/customers/cus_123/sources/ba_123"
|
111
|
+
end
|
112
|
+
end
|
89
113
|
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
114
|
+
context "#list_sources" do
|
115
|
+
should "list the customer's sources" do
|
116
|
+
sources = Stripe::Customer.list_sources(
|
117
|
+
"cus_123"
|
118
|
+
)
|
119
|
+
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123/sources"
|
120
|
+
assert sources.is_a?(Stripe::ListObject)
|
121
|
+
assert sources.data.is_a?(Array)
|
94
122
|
end
|
95
123
|
end
|
96
124
|
|
@@ -104,11 +132,95 @@ module Stripe
|
|
104
132
|
should "allow setting source with hash and set flag" do
|
105
133
|
c = Stripe::Customer.new("test_customer")
|
106
134
|
c.source = {
|
107
|
-
:
|
135
|
+
object: "card",
|
108
136
|
}
|
109
137
|
assert_equal true, c.source.save_with_parent
|
110
138
|
end
|
111
139
|
end
|
140
|
+
|
141
|
+
context "#create_tax_id" do
|
142
|
+
should "create a tax id" do
|
143
|
+
Stripe::Customer.create_tax_id(
|
144
|
+
"cus_123",
|
145
|
+
type: "eu_vat",
|
146
|
+
value: "11111"
|
147
|
+
)
|
148
|
+
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123/tax_ids"
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
context "#retrieve_tax_id" do
|
153
|
+
should "retrieve a tax id" do
|
154
|
+
Stripe::Customer.retrieve_tax_id(
|
155
|
+
"cus_123",
|
156
|
+
"txi_123"
|
157
|
+
)
|
158
|
+
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123/tax_ids/txi_123"
|
159
|
+
end
|
160
|
+
end
|
161
|
+
|
162
|
+
context "#delete_tax_id" do
|
163
|
+
should "delete a tax id" do
|
164
|
+
Stripe::Customer.delete_tax_id(
|
165
|
+
"cus_123",
|
166
|
+
"txi_123"
|
167
|
+
)
|
168
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/customers/cus_123/tax_ids/txi_123"
|
169
|
+
end
|
170
|
+
end
|
171
|
+
|
172
|
+
context "#list_tax_ids" do
|
173
|
+
should "list the customer's tax ids" do
|
174
|
+
sources = Stripe::Customer.list_tax_ids(
|
175
|
+
"cus_123"
|
176
|
+
)
|
177
|
+
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123/tax_ids"
|
178
|
+
assert sources.is_a?(Stripe::ListObject)
|
179
|
+
assert sources.data.is_a?(Array)
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
context "#create_balance_transaction" do
|
184
|
+
should "create a customer balance transaction" do
|
185
|
+
Stripe::Customer.create_balance_transaction(
|
186
|
+
"cus_123",
|
187
|
+
amount: 1234,
|
188
|
+
currency: "usd"
|
189
|
+
)
|
190
|
+
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123/balance_transactions"
|
191
|
+
end
|
192
|
+
end
|
193
|
+
|
194
|
+
context "#retrieve_balance_transaction" do
|
195
|
+
should "retrieve a customer balance transaction" do
|
196
|
+
Stripe::Customer.retrieve_balance_transaction(
|
197
|
+
"cus_123",
|
198
|
+
"cbtxn_123"
|
199
|
+
)
|
200
|
+
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123/balance_transactions/cbtxn_123"
|
201
|
+
end
|
202
|
+
end
|
203
|
+
|
204
|
+
context "#update_balance_transaction" do
|
205
|
+
should "update a customer balance transaction" do
|
206
|
+
Stripe::Customer.update_balance_transaction(
|
207
|
+
"cus_123",
|
208
|
+
"cbtxn_123",
|
209
|
+
description: "new"
|
210
|
+
)
|
211
|
+
assert_requested :post, "#{Stripe.api_base}/v1/customers/cus_123/balance_transactions/cbtxn_123"
|
212
|
+
end
|
213
|
+
end
|
214
|
+
|
215
|
+
context "#list_balance_transactions" do
|
216
|
+
should "list the customer balance transactions" do
|
217
|
+
sources = Stripe::Customer.list_balance_transactions(
|
218
|
+
"cus_123"
|
219
|
+
)
|
220
|
+
assert_requested :get, "#{Stripe.api_base}/v1/customers/cus_123/balance_transactions"
|
221
|
+
assert sources.is_a?(Stripe::ListObject)
|
222
|
+
assert sources.data.is_a?(Array)
|
223
|
+
end
|
224
|
+
end
|
112
225
|
end
|
113
226
|
end
|
114
|
-
|
data/test/stripe/dispute_test.rb
CHANGED
@@ -1,31 +1,33 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
2
4
|
|
3
5
|
module Stripe
|
4
6
|
class DisputeTest < Test::Unit::TestCase
|
5
7
|
should "be listable" do
|
6
8
|
disputes = Stripe::Dispute.list
|
7
9
|
assert_requested :get, "#{Stripe.api_base}/v1/disputes"
|
8
|
-
assert disputes.data.
|
9
|
-
assert disputes.first.
|
10
|
+
assert disputes.data.is_a?(Array)
|
11
|
+
assert disputes.first.is_a?(Stripe::Dispute)
|
10
12
|
end
|
11
13
|
|
12
14
|
should "be retrievable" do
|
13
15
|
dispute = Stripe::Dispute.retrieve("dp_123")
|
14
16
|
assert_requested :get, "#{Stripe.api_base}/v1/disputes/dp_123"
|
15
|
-
assert dispute.
|
17
|
+
assert dispute.is_a?(Stripe::Dispute)
|
16
18
|
end
|
17
19
|
|
18
20
|
should "be saveable" do
|
19
21
|
dispute = Stripe::Dispute.retrieve("dp_123")
|
20
|
-
dispute.metadata[
|
22
|
+
dispute.metadata["key"] = "value"
|
21
23
|
dispute.save
|
22
24
|
assert_requested :post, "#{Stripe.api_base}/v1/disputes/#{dispute.id}"
|
23
25
|
end
|
24
26
|
|
25
27
|
should "be updateable" do
|
26
|
-
dispute = Stripe::Dispute.update("dp_123", metadata: { key:
|
28
|
+
dispute = Stripe::Dispute.update("dp_123", metadata: { key: "value" })
|
27
29
|
assert_requested :post, "#{Stripe.api_base}/v1/disputes/dp_123"
|
28
|
-
assert dispute.
|
30
|
+
assert dispute.is_a?(Stripe::Dispute)
|
29
31
|
end
|
30
32
|
|
31
33
|
context "#close" do
|
@@ -33,7 +35,16 @@ module Stripe
|
|
33
35
|
dispute = Stripe::Dispute.retrieve("dp_123")
|
34
36
|
dispute.close
|
35
37
|
assert_requested :post,
|
36
|
-
|
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)
|
37
48
|
end
|
38
49
|
end
|
39
50
|
end
|
@@ -1,37 +1,39 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
2
4
|
|
3
5
|
module Stripe
|
4
6
|
class EphemeralKeyTest < Test::Unit::TestCase
|
5
7
|
context "#create" do
|
6
8
|
should "succeed" do
|
7
9
|
key = Stripe::EphemeralKey.create(
|
8
|
-
{customer:"cus_123"},
|
9
|
-
|
10
|
+
{ customer: "cus_123" },
|
11
|
+
stripe_version: "2017-05-25"
|
10
12
|
)
|
11
13
|
|
12
14
|
assert_requested(
|
13
15
|
:post,
|
14
16
|
"#{Stripe.api_base}/v1/ephemeral_keys",
|
15
|
-
headers: {
|
17
|
+
headers: { "Stripe-Version" => "2017-05-25" }
|
16
18
|
)
|
17
19
|
|
18
|
-
assert key.
|
20
|
+
assert key.is_a?(Stripe::EphemeralKey)
|
19
21
|
end
|
20
22
|
|
21
23
|
context "#no global version" do
|
22
24
|
should "use the correct api version" do
|
23
25
|
key = Stripe::EphemeralKey.create(
|
24
|
-
{customer: "cus_123"},
|
25
|
-
|
26
|
+
{ customer: "cus_123" },
|
27
|
+
stripe_version: "2017-06-05"
|
26
28
|
)
|
27
29
|
|
28
30
|
assert_requested(
|
29
31
|
:post,
|
30
32
|
"#{Stripe.api_base}/v1/ephemeral_keys",
|
31
|
-
headers: {
|
33
|
+
headers: { "Stripe-Version" => "2017-06-05" }
|
32
34
|
)
|
33
35
|
|
34
|
-
assert key.
|
36
|
+
assert key.is_a?(Stripe::EphemeralKey)
|
35
37
|
end
|
36
38
|
|
37
39
|
should "error without an explicit api version" do
|
@@ -53,11 +55,11 @@ module Stripe
|
|
53
55
|
|
54
56
|
should "use the correct api version" do
|
55
57
|
key = Stripe::EphemeralKey.create(
|
56
|
-
{customer: "cus_123"},
|
57
|
-
|
58
|
+
{ customer: "cus_123" },
|
59
|
+
stripe_version: "2017-05-25"
|
58
60
|
)
|
59
61
|
|
60
|
-
assert key.
|
62
|
+
assert key.is_a?(Stripe::EphemeralKey)
|
61
63
|
end
|
62
64
|
|
63
65
|
should "error without an explicit api version" do
|
@@ -72,13 +74,20 @@ module Stripe
|
|
72
74
|
context "#delete" do
|
73
75
|
should "succeed" do
|
74
76
|
key = Stripe::EphemeralKey.create(
|
75
|
-
{customer:
|
76
|
-
|
77
|
+
{ customer: "cus_123" },
|
78
|
+
stripe_version: "2017-05-25"
|
77
79
|
)
|
78
80
|
|
79
81
|
key.delete
|
80
82
|
assert_requested :delete, "#{Stripe.api_base}/v1/ephemeral_keys/#{key.id}"
|
81
83
|
end
|
82
84
|
end
|
85
|
+
|
86
|
+
context ".delete" do
|
87
|
+
should "succeed" do
|
88
|
+
Stripe::EphemeralKey.delete("ephkey_123")
|
89
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/ephemeral_keys/ephkey_123"
|
90
|
+
end
|
91
|
+
end
|
83
92
|
end
|
84
93
|
end
|
data/test/stripe/errors_test.rb
CHANGED
@@ -1,17 +1,40 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
2
4
|
|
3
5
|
module Stripe
|
4
6
|
class StripeErrorTest < Test::Unit::TestCase
|
5
|
-
context "
|
6
|
-
|
7
|
-
|
8
|
-
|
7
|
+
context "StripeError" do
|
8
|
+
context "#initialize" do
|
9
|
+
should "initialize error if json_body is set" do
|
10
|
+
e = StripeError.new("message", json_body: { error: { code: "some_error" } })
|
11
|
+
assert_not_nil e.error
|
12
|
+
assert_equal "some_error", e.error.code
|
13
|
+
assert_nil e.error.charge
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
context "#to_s" do
|
18
|
+
should "convert to string" do
|
19
|
+
e = StripeError.new("message")
|
20
|
+
assert_equal "message", e.to_s
|
9
21
|
|
10
|
-
|
11
|
-
|
22
|
+
e = StripeError.new("message", http_status: 200)
|
23
|
+
assert_equal "(Status 200) message", e.to_s
|
24
|
+
|
25
|
+
e = StripeError.new("message", http_status: nil, http_body: nil, json_body: nil, http_headers: { "request-id" => "request-id" })
|
26
|
+
assert_equal "(Request request-id) message", e.to_s
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
12
30
|
|
13
|
-
|
14
|
-
|
31
|
+
context "OAuth::OAuthError" do
|
32
|
+
context "#initialize" do
|
33
|
+
should "initialize error if json_body is set" do
|
34
|
+
e = OAuth::OAuthError.new("message", "description", json_body: { error: "some_oauth_error" })
|
35
|
+
assert_not_nil e.error
|
36
|
+
assert_equal "some_oauth_error", e.error.error
|
37
|
+
end
|
15
38
|
end
|
16
39
|
end
|
17
40
|
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
4
|
+
|
5
|
+
module Stripe
|
6
|
+
class ExchangeRateTest < Test::Unit::TestCase
|
7
|
+
should "be listable" do
|
8
|
+
list_rates = Stripe::ExchangeRate.list
|
9
|
+
assert_requested :get, "#{Stripe.api_base}/v1/exchange_rates"
|
10
|
+
assert list_rates.data.is_a?(Array)
|
11
|
+
assert list_rates.data.first.is_a?(Stripe::ExchangeRate)
|
12
|
+
end
|
13
|
+
|
14
|
+
should "be retrievable" do
|
15
|
+
rates = Stripe::ExchangeRate.retrieve("usd")
|
16
|
+
assert_requested :get, "#{Stripe.api_base}/v1/exchange_rates/usd"
|
17
|
+
assert rates.is_a?(Stripe::ExchangeRate)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|