stripe 4.9.0 → 5.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.editorconfig +10 -0
- data/.rubocop.yml +28 -4
- data/.rubocop_todo.yml +11 -22
- data/.travis.yml +3 -6
- data/.vscode/extensions.json +7 -0
- data/.vscode/settings.json +8 -0
- data/CHANGELOG.md +102 -2
- data/Gemfile +2 -10
- data/README.md +96 -40
- data/Rakefile +8 -7
- data/VERSION +1 -1
- data/lib/stripe.rb +64 -85
- data/lib/stripe/api_operations/delete.rb +23 -1
- data/lib/stripe/api_operations/list.rb +0 -6
- data/lib/stripe/api_operations/nested_resource.rb +14 -7
- data/lib/stripe/api_operations/request.rb +3 -7
- data/lib/stripe/api_operations/save.rb +1 -3
- data/lib/stripe/api_resource.rb +50 -2
- data/lib/stripe/connection_manager.rb +141 -0
- data/lib/stripe/error_object.rb +94 -0
- data/lib/stripe/errors.rb +22 -9
- data/lib/stripe/list_object.rb +11 -5
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/object_types.rb +94 -0
- data/lib/stripe/resources.rb +77 -0
- data/lib/stripe/{account.rb → resources/account.rb} +49 -27
- data/lib/stripe/{account_link.rb → resources/account_link.rb} +1 -1
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +1 -1
- 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} +1 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +1 -5
- data/lib/stripe/{bank_account.rb → resources/bank_account.rb} +14 -4
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +3 -3
- data/lib/stripe/{bitcoin_transaction.rb → resources/bitcoin_transaction.rb} +1 -1
- data/lib/stripe/resources/capability.rb +33 -0
- data/lib/stripe/{card.rb → resources/card.rb} +12 -4
- data/lib/stripe/resources/charge.rb +22 -0
- data/lib/stripe/{checkout → resources/checkout}/session.rb +2 -2
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +1 -1
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +2 -2
- data/lib/stripe/resources/credit_note.rb +22 -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/{dispute.rb → resources/dispute.rb} +9 -7
- data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +5 -2
- data/lib/stripe/{event.rb → resources/event.rb} +1 -1
- data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +1 -1
- data/lib/stripe/{file.rb → resources/file.rb} +8 -11
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +2 -2
- data/lib/stripe/resources/invoice.rb +73 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +2 -2
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +1 -1
- data/lib/stripe/resources/issuing/authorization.rb +33 -0
- data/lib/stripe/resources/issuing/card.rb +24 -0
- data/lib/stripe/{issuing → resources/issuing}/card_details.rb +1 -1
- data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +2 -2
- data/lib/stripe/{issuing → resources/issuing}/dispute.rb +2 -2
- data/lib/stripe/{issuing → resources/issuing}/transaction.rb +2 -2
- data/lib/stripe/resources/login_link.rb +14 -0
- data/lib/stripe/resources/order.rb +32 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +1 -1
- 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/{person.rb → resources/person.rb} +8 -3
- data/lib/stripe/{plan.rb → resources/plan.rb} +1 -1
- data/lib/stripe/{product.rb → resources/product.rb} +3 -3
- data/lib/stripe/resources/radar/early_fraud_warning.rb +11 -0
- data/lib/stripe/{radar → resources/radar}/value_list.rb +2 -2
- data/lib/stripe/{radar → resources/radar}/value_list_item.rb +2 -2
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +2 -6
- data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
- data/lib/stripe/{refund.rb → resources/refund.rb} +1 -1
- data/lib/stripe/{reporting → resources/reporting}/report_run.rb +2 -2
- data/lib/stripe/{reporting → resources/reporting}/report_type.rb +2 -2
- 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/{sigma → resources/sigma}/scheduled_query_run.rb +2 -2
- data/lib/stripe/{sku.rb → resources/sku.rb} +3 -3
- data/lib/stripe/{source.rb → resources/source.rb} +17 -15
- data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +1 -1
- data/lib/stripe/resources/subscription.rb +25 -0
- data/lib/stripe/{subscription_item.rb → resources/subscription_item.rb} +5 -2
- 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/{terminal → resources/terminal}/connection_token.rb +2 -2
- data/lib/stripe/{terminal → resources/terminal}/location.rb +3 -2
- data/lib/stripe/{terminal → resources/terminal}/reader.rb +3 -2
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +1 -1
- data/lib/stripe/{token.rb → resources/token.rb} +1 -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/{usage_record_summary.rb → resources/usage_record_summary.rb} +1 -1
- data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +2 -2
- data/lib/stripe/singleton_api_resource.rb +3 -1
- data/lib/stripe/stripe_client.rb +347 -218
- data/lib/stripe/stripe_object.rb +72 -59
- data/lib/stripe/stripe_response.rb +53 -21
- data/lib/stripe/util.rb +54 -109
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +5 -3
- data/stripe.gemspec +14 -5
- data/test/stripe/account_link_test.rb +1 -1
- data/test/stripe/account_test.rb +193 -32
- data/test/stripe/alipay_account_test.rb +1 -1
- data/test/stripe/api_operations_test.rb +3 -4
- data/test/stripe/api_resource_test.rb +119 -30
- data/test/stripe/apple_pay_domain_test.rb +18 -5
- data/test/stripe/application_fee_refund_test.rb +1 -1
- data/test/stripe/application_fee_test.rb +45 -1
- data/test/stripe/balance_test.rb +1 -1
- data/test/stripe/balance_transaction_test.rb +20 -0
- data/test/stripe/bank_account_test.rb +1 -1
- data/test/stripe/capability_test.rb +45 -0
- data/test/stripe/charge_test.rb +13 -8
- data/test/stripe/checkout/session_test.rb +7 -1
- data/test/stripe/connection_manager_test.rb +138 -0
- data/test/stripe/country_spec_test.rb +1 -1
- data/test/stripe/coupon_test.rb +16 -6
- data/test/stripe/credit_note_test.rb +61 -0
- data/test/stripe/customer_balance_transaction_test.rb +37 -0
- data/test/stripe/customer_card_test.rb +1 -1
- data/test/stripe/customer_test.rb +151 -40
- data/test/stripe/dispute_test.rb +10 -1
- data/test/stripe/ephemeral_key_test.rb +8 -1
- data/test/stripe/errors_test.rb +30 -9
- data/test/stripe/exchange_rate_test.rb +1 -1
- data/test/stripe/file_link_test.rb +1 -1
- data/test/stripe/file_test.rb +19 -5
- data/test/stripe/invoice_item_test.rb +18 -7
- data/test/stripe/invoice_line_item_test.rb +1 -1
- data/test/stripe/invoice_test.rb +77 -9
- data/test/stripe/issuing/authorization_test.rb +33 -11
- data/test/stripe/issuing/card_test.rb +15 -6
- data/test/stripe/issuing/cardholder_test.rb +1 -1
- data/test/stripe/issuing/dispute_test.rb +1 -1
- data/test/stripe/issuing/transaction_test.rb +1 -1
- data/test/stripe/list_object_test.rb +1 -17
- data/test/stripe/login_link_test.rb +2 -2
- data/test/stripe/multipart_encoder_test.rb +130 -0
- data/test/stripe/oauth_test.rb +1 -1
- data/test/stripe/order_return_test.rb +1 -1
- data/test/stripe/order_test.rb +28 -3
- data/test/stripe/payment_intent_test.rb +31 -4
- data/test/stripe/payment_method_test.rb +84 -0
- data/test/stripe/payout_test.rb +8 -1
- data/test/stripe/person_test.rb +1 -1
- data/test/stripe/plan_test.rb +26 -20
- data/test/stripe/product_test.rb +16 -6
- data/test/stripe/radar/early_fraud_warning_test.rb +22 -0
- data/test/stripe/radar/value_list_item_test.rb +16 -6
- data/test/stripe/radar/value_list_test.rb +16 -6
- data/test/stripe/recipient_test.rb +18 -5
- data/test/stripe/refund_test.rb +1 -1
- data/test/stripe/reporting/report_run_test.rb +1 -1
- data/test/stripe/reporting/report_type_test.rb +1 -1
- data/test/stripe/reversal_test.rb +1 -1
- data/test/stripe/review_test.rb +1 -1
- data/test/stripe/setup_intent_test.rb +84 -0
- data/test/stripe/sigma/scheduled_query_run_test.rb +1 -1
- data/test/stripe/sku_test.rb +16 -6
- data/test/stripe/source_test.rb +14 -19
- data/test/stripe/source_transaction_test.rb +1 -1
- data/test/stripe/stripe_client_test.rb +242 -26
- data/test/stripe/stripe_object_test.rb +8 -36
- data/test/stripe/stripe_response_test.rb +71 -25
- data/test/stripe/subscription_item_test.rb +28 -6
- data/test/stripe/subscription_schedule_test.rb +19 -1
- data/test/stripe/subscription_test.rb +29 -9
- 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 +1 -1
- data/test/stripe/terminal/location_test.rb +18 -1
- data/test/stripe/terminal/reader_test.rb +18 -1
- data/test/stripe/three_d_secure_test.rb +1 -1
- data/test/stripe/topup_test.rb +9 -1
- data/test/stripe/transfer_test.rb +46 -1
- data/test/stripe/usage_record_summary_test.rb +1 -1
- data/test/stripe/util_test.rb +1 -1
- data/test/stripe/webhook_endpoint_test.rb +18 -1
- data/test/stripe/webhook_test.rb +4 -4
- data/test/stripe_mock.rb +4 -3
- data/test/stripe_test.rb +1 -14
- data/test/test_helper.rb +14 -11
- metadata +117 -125
- data/lib/stripe/alipay_account.rb +0 -27
- data/lib/stripe/application_fee.rb +0 -23
- data/lib/stripe/application_fee_refund.rb +0 -22
- data/lib/stripe/charge.rb +0 -84
- data/lib/stripe/customer.rb +0 -90
- data/lib/stripe/invoice.rb +0 -48
- data/lib/stripe/issuer_fraud_record.rb +0 -9
- data/lib/stripe/issuing/authorization.rb +0 -22
- data/lib/stripe/issuing/card.rb +0 -18
- data/lib/stripe/login_link.rb +0 -11
- data/lib/stripe/order.rb +0 -31
- data/lib/stripe/payment_intent.rb +0 -26
- data/lib/stripe/payout.rb +0 -20
- data/lib/stripe/reversal.rb +0 -22
- data/lib/stripe/review.rb +0 -14
- data/lib/stripe/subscription.rb +0 -25
- data/lib/stripe/subscription_schedule.rb +0 -32
- data/lib/stripe/subscription_schedule_revision.rb +0 -25
- data/lib/stripe/topup.rb +0 -16
- data/lib/stripe/transfer.rb +0 -23
- data/lib/stripe/usage_record.rb +0 -14
- data/test/stripe/account_external_accounts_operations_test.rb +0 -69
- data/test/stripe/account_login_links_operations_test.rb +0 -21
- data/test/stripe/account_persons_operations_test.rb +0 -70
- data/test/stripe/application_fee_refunds_operations_test.rb +0 -56
- data/test/stripe/customer_sources_operations_test.rb +0 -64
- data/test/stripe/file_upload_test.rb +0 -76
- data/test/stripe/issuer_fraud_record_test.rb +0 -20
- data/test/stripe/subscription_schedule_revision_test.rb +0 -37
- data/test/stripe/subscription_schedule_revisions_operations_test.rb +0 -35
- data/test/stripe/transfer_reversals_operations_test.rb +0 -57
- data/test/stripe/usage_record_test.rb +0 -28
data/test/stripe/invoice_test.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require ::File.expand_path("
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
4
4
|
|
5
5
|
module Stripe
|
6
6
|
class InvoiceTest < Test::Unit::TestCase
|
@@ -38,11 +38,21 @@ module Stripe
|
|
38
38
|
assert invoice.is_a?(Stripe::Invoice)
|
39
39
|
end
|
40
40
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
41
|
+
context "#delete" do
|
42
|
+
should "be deletable" do
|
43
|
+
invoice = Stripe::Invoice.retrieve("in_123")
|
44
|
+
invoice = invoice.delete
|
45
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/invoices/#{invoice.id}"
|
46
|
+
assert invoice.is_a?(Stripe::Invoice)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
context ".delete" do
|
51
|
+
should "be deletable" do
|
52
|
+
invoice = Stripe::Invoice.delete("in_123")
|
53
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/invoices/in_123"
|
54
|
+
assert invoice.is_a?(Stripe::Invoice)
|
55
|
+
end
|
46
56
|
end
|
47
57
|
|
48
58
|
context "#finalize" do
|
@@ -55,6 +65,14 @@ module Stripe
|
|
55
65
|
end
|
56
66
|
end
|
57
67
|
|
68
|
+
context ".finalize" do
|
69
|
+
should "finalize invoice" do
|
70
|
+
invoice = Stripe::Invoice.finalize_invoice("in_123")
|
71
|
+
assert_requested :post, "#{Stripe.api_base}/v1/invoices/in_123/finalize"
|
72
|
+
assert invoice.is_a?(Stripe::Invoice)
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
58
76
|
context "#mark_uncollectible" do
|
59
77
|
should "mark invoice as uncollectible" do
|
60
78
|
invoice = Stripe::Invoice.retrieve("in_123")
|
@@ -65,6 +83,14 @@ module Stripe
|
|
65
83
|
end
|
66
84
|
end
|
67
85
|
|
86
|
+
context ".mark_uncollectible" do
|
87
|
+
should "mark invoice as uncollectible" do
|
88
|
+
invoice = Stripe::Invoice.mark_uncollectible("in_123")
|
89
|
+
assert_requested :post, "#{Stripe.api_base}/v1/invoices/in_123/mark_uncollectible"
|
90
|
+
assert invoice.is_a?(Stripe::Invoice)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
68
94
|
context "#pay" do
|
69
95
|
should "pay invoice" do
|
70
96
|
invoice = Stripe::Invoice.retrieve("in_123")
|
@@ -88,7 +114,17 @@ module Stripe
|
|
88
114
|
end
|
89
115
|
end
|
90
116
|
|
91
|
-
context "
|
117
|
+
context ".pay" do
|
118
|
+
should "pay invoice" do
|
119
|
+
invoice = Stripe::Invoice.pay("in_123", source: "src_123")
|
120
|
+
assert_requested :post,
|
121
|
+
"#{Stripe.api_base}/v1/invoices/in_123/pay",
|
122
|
+
body: { source: "src_123" }
|
123
|
+
assert invoice.is_a?(Stripe::Invoice)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
context "#send_invoice" do
|
92
128
|
should "send invoice" do
|
93
129
|
invoice = Stripe::Invoice.retrieve("in_123")
|
94
130
|
invoice = invoice.send_invoice
|
@@ -98,7 +134,15 @@ module Stripe
|
|
98
134
|
end
|
99
135
|
end
|
100
136
|
|
101
|
-
context "
|
137
|
+
context ".send_invoice" do
|
138
|
+
should "send invoice" do
|
139
|
+
invoice = Stripe::Invoice.send_invoice("in_123")
|
140
|
+
assert_requested :post, "#{Stripe.api_base}/v1/invoices/in_123/send"
|
141
|
+
assert invoice.is_a?(Stripe::Invoice)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
context ".upcoming" do
|
102
146
|
should "retrieve upcoming invoices" do
|
103
147
|
invoice = Stripe::Invoice.upcoming(
|
104
148
|
customer: "cus_123",
|
@@ -148,7 +192,23 @@ module Stripe
|
|
148
192
|
end
|
149
193
|
end
|
150
194
|
|
151
|
-
context "
|
195
|
+
context ".list_upcoming_line_items" do
|
196
|
+
should "retrieve upcoming invoices" do
|
197
|
+
line_items = Stripe::Invoice.list_upcoming_line_items(
|
198
|
+
customer: "cus_123",
|
199
|
+
subscription: "sub_123"
|
200
|
+
)
|
201
|
+
assert_requested :get, "#{Stripe.api_base}/v1/invoices/upcoming/lines",
|
202
|
+
query: {
|
203
|
+
customer: "cus_123",
|
204
|
+
subscription: "sub_123",
|
205
|
+
}
|
206
|
+
assert line_items.data.is_a?(Array)
|
207
|
+
assert line_items.data[0].is_a?(Stripe::InvoiceLineItem)
|
208
|
+
end
|
209
|
+
end
|
210
|
+
|
211
|
+
context "#void_invoice" do
|
152
212
|
should "void invoice" do
|
153
213
|
invoice = Stripe::Invoice.retrieve("in_123")
|
154
214
|
invoice = invoice.void_invoice
|
@@ -157,5 +217,13 @@ module Stripe
|
|
157
217
|
assert invoice.is_a?(Stripe::Invoice)
|
158
218
|
end
|
159
219
|
end
|
220
|
+
|
221
|
+
context ".void_invoice" do
|
222
|
+
should "void invoice" do
|
223
|
+
invoice = Stripe::Invoice.void_invoice("in_123")
|
224
|
+
assert_requested :post, "#{Stripe.api_base}/v1/invoices/in_123/void"
|
225
|
+
assert invoice.is_a?(Stripe::Invoice)
|
226
|
+
end
|
227
|
+
end
|
160
228
|
end
|
161
229
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require ::File.expand_path("
|
3
|
+
require ::File.expand_path("../../test_helper", __dir__)
|
4
4
|
|
5
5
|
module Stripe
|
6
6
|
module Issuing
|
@@ -32,18 +32,40 @@ module Stripe
|
|
32
32
|
assert authorization.is_a?(Stripe::Issuing::Authorization)
|
33
33
|
end
|
34
34
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
35
|
+
context ".approve" do
|
36
|
+
should "approve an authorization" do
|
37
|
+
payment_intent = Stripe::Issuing::Authorization.approve("iauth_123")
|
38
|
+
|
39
|
+
assert_requested :post, "#{Stripe.api_base}/v1/issuing/authorizations/iauth_123/approve"
|
40
|
+
assert payment_intent.is_a?(Stripe::Issuing::Authorization)
|
41
|
+
end
|
40
42
|
end
|
41
43
|
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
44
|
+
context "#approve" do
|
45
|
+
should "approve an authorization" do
|
46
|
+
authorization = Stripe::Issuing::Authorization.retrieve("iauth_123")
|
47
|
+
authorization.approve
|
48
|
+
assert_requested :post, "#{Stripe.api_base}/v1/issuing/authorizations/iauth_123/approve"
|
49
|
+
assert authorization.is_a?(Stripe::Issuing::Authorization)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
context ".decline" do
|
54
|
+
should "decline an authorization" do
|
55
|
+
payment_intent = Stripe::Issuing::Authorization.decline("iauth_123")
|
56
|
+
|
57
|
+
assert_requested :post, "#{Stripe.api_base}/v1/issuing/authorizations/iauth_123/decline"
|
58
|
+
assert payment_intent.is_a?(Stripe::Issuing::Authorization)
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
context "#decline" do
|
63
|
+
should "decline an authorization" do
|
64
|
+
authorization = Stripe::Issuing::Authorization.retrieve("iauth_123")
|
65
|
+
authorization.decline
|
66
|
+
assert_requested :post, "#{Stripe.api_base}/v1/issuing/authorizations/iauth_123/decline"
|
67
|
+
assert authorization.is_a?(Stripe::Issuing::Authorization)
|
68
|
+
end
|
47
69
|
end
|
48
70
|
end
|
49
71
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require ::File.expand_path("
|
3
|
+
require ::File.expand_path("../../test_helper", __dir__)
|
4
4
|
|
5
5
|
module Stripe
|
6
6
|
module Issuing
|
@@ -41,12 +41,21 @@ module Stripe
|
|
41
41
|
assert card.is_a?(Stripe::Issuing::Card)
|
42
42
|
end
|
43
43
|
|
44
|
-
|
45
|
-
card
|
44
|
+
context "#details" do
|
45
|
+
should "retrieve a card's details" do
|
46
|
+
card_details = Stripe::Issuing::Card.details("ic_123")
|
47
|
+
assert_requested :get, "#{Stripe.api_base}/v1/issuing/cards/ic_123/details"
|
48
|
+
assert card_details.is_a?(Stripe::Issuing::CardDetails)
|
49
|
+
end
|
50
|
+
end
|
46
51
|
|
47
|
-
|
48
|
-
|
49
|
-
|
52
|
+
context ".details" do
|
53
|
+
should "retrieve a card's details" do
|
54
|
+
card = Stripe::Issuing::Card.retrieve("ic_123")
|
55
|
+
card_details = card.details
|
56
|
+
assert_requested :get, "#{Stripe.api_base}/v1/issuing/cards/ic_123/details"
|
57
|
+
assert card_details.is_a?(Stripe::Issuing::CardDetails)
|
58
|
+
end
|
50
59
|
end
|
51
60
|
end
|
52
61
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require ::File.expand_path("
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
4
4
|
|
5
5
|
module Stripe
|
6
6
|
class ListObjectTest < Test::Unit::TestCase
|
@@ -132,22 +132,6 @@ module Stripe
|
|
132
132
|
next_list = list.previous_page
|
133
133
|
assert_equal({ expand: ["data.source"], limit: 3 }, next_list.filters)
|
134
134
|
end
|
135
|
-
|
136
|
-
#
|
137
|
-
# backward compatibility
|
138
|
-
#
|
139
|
-
|
140
|
-
# note that the name #all is deprecated, as is using it fetch the next page
|
141
|
-
# in a list
|
142
|
-
should "be able to retrieve full lists given a listobject" do
|
143
|
-
c = Stripe::Charge.all
|
144
|
-
assert c.is_a?(Stripe::ListObject)
|
145
|
-
assert_equal("/v1/charges", c.resource_url)
|
146
|
-
all = c.all
|
147
|
-
assert all.is_a?(Stripe::ListObject)
|
148
|
-
assert_equal("/v1/charges", all.resource_url)
|
149
|
-
assert all.data.is_a?(Array)
|
150
|
-
end
|
151
135
|
end
|
152
136
|
end
|
153
137
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require ::File.expand_path("
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
4
4
|
|
5
5
|
module Stripe
|
6
6
|
class LoginLinkTest < Test::Unit::TestCase
|
@@ -12,7 +12,7 @@ module Stripe
|
|
12
12
|
"data" => [],
|
13
13
|
"has_more" => false,
|
14
14
|
"object" => "list",
|
15
|
-
"url" =>
|
15
|
+
"url" => "/v1/accounts/acct_123/login_links",
|
16
16
|
},
|
17
17
|
}
|
18
18
|
@account = Stripe::Account.construct_from(account_fixture)
|
@@ -0,0 +1,130 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
4
|
+
|
5
|
+
module Stripe
|
6
|
+
class MultipartEncoderTest < Test::Unit::TestCase
|
7
|
+
should "multipart encode parameters" do
|
8
|
+
Tempfile.create("image.jpg") do |f|
|
9
|
+
f.write "file-content"
|
10
|
+
f.flush
|
11
|
+
f.rewind
|
12
|
+
|
13
|
+
encoder = MultipartEncoder.new
|
14
|
+
encoder.encode(
|
15
|
+
file: f,
|
16
|
+
other_param: "other-param-content"
|
17
|
+
)
|
18
|
+
encoder.close
|
19
|
+
body = encoder.body
|
20
|
+
|
21
|
+
assert_equal <<~BODY.rstrip, body
|
22
|
+
--#{encoder.boundary}\r
|
23
|
+
Content-Disposition: form-data; name="file"; filename="#{::File.basename(f.path)}"\r
|
24
|
+
Content-Type: application/octet-stream\r
|
25
|
+
\r
|
26
|
+
file-content\r
|
27
|
+
--#{encoder.boundary}\r
|
28
|
+
Content-Disposition: form-data; name="other_param"\r
|
29
|
+
\r
|
30
|
+
other-param-content\r
|
31
|
+
--#{encoder.boundary}--
|
32
|
+
BODY
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
should "encode file-like objects" do
|
37
|
+
klass = Class.new do
|
38
|
+
def read
|
39
|
+
"klass-read-content"
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
encoder = MultipartEncoder.new
|
44
|
+
encoder.encode(
|
45
|
+
file_like: klass.new
|
46
|
+
)
|
47
|
+
encoder.close
|
48
|
+
body = encoder.body
|
49
|
+
|
50
|
+
assert_equal <<~BODY.rstrip, body
|
51
|
+
--#{encoder.boundary}\r
|
52
|
+
Content-Disposition: form-data; name="file_like"; filename="blob"\r
|
53
|
+
Content-Type: application/octet-stream\r
|
54
|
+
\r
|
55
|
+
klass-read-content\r
|
56
|
+
--#{encoder.boundary}--
|
57
|
+
BODY
|
58
|
+
end
|
59
|
+
|
60
|
+
should "escape quotes and line break characters in parameter names" do
|
61
|
+
encoder = MultipartEncoder.new
|
62
|
+
encoder.encode(
|
63
|
+
%("quoted\n\r") => "content"
|
64
|
+
)
|
65
|
+
encoder.close
|
66
|
+
body = encoder.body
|
67
|
+
|
68
|
+
assert_equal <<~BODY.rstrip, body
|
69
|
+
--#{encoder.boundary}\r
|
70
|
+
Content-Disposition: form-data; name="%22quoted %22"\r
|
71
|
+
\r
|
72
|
+
content\r
|
73
|
+
--#{encoder.boundary}--
|
74
|
+
BODY
|
75
|
+
end
|
76
|
+
|
77
|
+
context ".encode" do
|
78
|
+
should "provide an easy encoding shortcut" do
|
79
|
+
body, content_type = MultipartEncoder.encode(
|
80
|
+
param: "content"
|
81
|
+
)
|
82
|
+
assert_include body, %(Content-Disposition: form-data; name="param")
|
83
|
+
assert_include content_type, "#{MultipartEncoder::MULTIPART_FORM_DATA}; boundary="
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
context "#body" do
|
88
|
+
should "error if not yet closed" do
|
89
|
+
encoder = MultipartEncoder.new
|
90
|
+
|
91
|
+
e = assert_raises RuntimeError do
|
92
|
+
encoder.body
|
93
|
+
end
|
94
|
+
assert_equal "object must be closed before getting body", e.message
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
context "#close" do
|
99
|
+
should "error if closed twice" do
|
100
|
+
encoder = MultipartEncoder.new
|
101
|
+
encoder.close
|
102
|
+
|
103
|
+
e = assert_raises RuntimeError do
|
104
|
+
encoder.close
|
105
|
+
end
|
106
|
+
assert_equal "object already closed", e.message
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
context "#content_type" do
|
111
|
+
should "produce a content type containing boundary" do
|
112
|
+
encoder = MultipartEncoder.new
|
113
|
+
assert_equal "#{MultipartEncoder::MULTIPART_FORM_DATA}; boundary=#{encoder.boundary}",
|
114
|
+
encoder.content_type
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
context "#encode" do
|
119
|
+
should "error if already closed" do
|
120
|
+
encoder = MultipartEncoder.new
|
121
|
+
encoder.close
|
122
|
+
|
123
|
+
e = assert_raises RuntimeError do
|
124
|
+
encoder.encode(param: "content")
|
125
|
+
end
|
126
|
+
assert_equal "no more parameters can be written to closed object", e.message
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|