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,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
|
data/test/stripe/oauth_test.rb
CHANGED
@@ -1,9 +1,11 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
2
4
|
|
3
5
|
module Stripe
|
4
6
|
class OAuthTest < Test::Unit::TestCase
|
5
7
|
setup do
|
6
|
-
Stripe.client_id =
|
8
|
+
Stripe.client_id = "ca_test"
|
7
9
|
end
|
8
10
|
|
9
11
|
teardown do
|
@@ -12,28 +14,35 @@ module Stripe
|
|
12
14
|
|
13
15
|
context ".authorize_url" do
|
14
16
|
should "return the authorize URL" do
|
15
|
-
uri_str = OAuth.authorize_url(
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
17
|
+
uri_str = OAuth.authorize_url(scope: "read_write",
|
18
|
+
state: "csrf_token",
|
19
|
+
stripe_user: {
|
20
|
+
email: "test@example.com",
|
21
|
+
url: "https://example.com/profile/test",
|
22
|
+
country: "US",
|
23
|
+
})
|
24
|
+
|
25
|
+
uri = URI.parse(uri_str)
|
26
|
+
params = CGI.parse(uri.query)
|
24
27
|
|
25
|
-
uri
|
26
|
-
|
28
|
+
assert_equal("https", uri.scheme)
|
29
|
+
assert_equal("connect.stripe.com", uri.host)
|
30
|
+
assert_equal("/oauth/authorize", uri.path)
|
31
|
+
|
32
|
+
assert_equal(["ca_test"], params["client_id"])
|
33
|
+
assert_equal(["read_write"], params["scope"])
|
34
|
+
assert_equal(["test@example.com"], params["stripe_user[email]"])
|
35
|
+
assert_equal(["https://example.com/profile/test"], params["stripe_user[url]"])
|
36
|
+
assert_equal(["US"], params["stripe_user[country]"])
|
37
|
+
end
|
27
38
|
|
28
|
-
|
29
|
-
|
30
|
-
assert_equal('/oauth/authorize', uri.path)
|
39
|
+
should "optionally return an express path" do
|
40
|
+
uri_str = OAuth.authorize_url({}, express: true)
|
31
41
|
|
32
|
-
|
33
|
-
assert_equal(
|
34
|
-
assert_equal(
|
35
|
-
assert_equal(
|
36
|
-
assert_equal(['US'], params['stripe_user[country]'])
|
42
|
+
uri = URI.parse(uri_str)
|
43
|
+
assert_equal("https", uri.scheme)
|
44
|
+
assert_equal("connect.stripe.com", uri.host)
|
45
|
+
assert_equal("/express/oauth/authorize", uri.path)
|
37
46
|
end
|
38
47
|
end
|
39
48
|
|
@@ -41,26 +50,38 @@ module Stripe
|
|
41
50
|
should "exchange a code for an access token" do
|
42
51
|
# The OpenAPI fixtures don't cover the OAuth endpoints, so we just
|
43
52
|
# stub the request manually.
|
44
|
-
stub_request(:post, "#{Stripe.connect_base}/oauth/token")
|
45
|
-
with(body: {
|
46
|
-
|
47
|
-
|
48
|
-
})
|
49
|
-
to_return(body: JSON.generate(
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
53
|
+
stub_request(:post, "#{Stripe.connect_base}/oauth/token")
|
54
|
+
.with(body: {
|
55
|
+
"grant_type" => "authorization_code",
|
56
|
+
"code" => "this_is_an_authorization_code",
|
57
|
+
})
|
58
|
+
.to_return(body: JSON.generate(access_token: "sk_access_token",
|
59
|
+
scope: "read_only",
|
60
|
+
livemode: false,
|
61
|
+
token_type: "bearer",
|
62
|
+
refresh_token: "sk_refresh_token",
|
63
|
+
stripe_user_id: "acct_test",
|
64
|
+
stripe_publishable_key: "pk_test"))
|
65
|
+
|
66
|
+
resp = OAuth.token(grant_type: "authorization_code",
|
67
|
+
code: "this_is_an_authorization_code")
|
68
|
+
assert_equal("sk_access_token", resp.access_token)
|
69
|
+
end
|
70
|
+
|
71
|
+
should "override the API key when client_secret is passed" do
|
72
|
+
stub_request(:post, "#{Stripe.connect_base}/oauth/token")
|
73
|
+
.with(body: {
|
74
|
+
"client_secret" => "client_secret_override",
|
75
|
+
"grant_type" => "authorization_code",
|
76
|
+
"code" => "this_is_an_authorization_code",
|
77
|
+
})
|
78
|
+
.with(headers: { "Authorization": "Bearer client_secret_override" })
|
79
|
+
.to_return(body: JSON.generate(access_token: "another_access_token"))
|
58
80
|
|
59
|
-
resp = OAuth.token(
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
assert_equal('sk_access_token', resp.access_token)
|
81
|
+
resp = OAuth.token(client_secret: "client_secret_override",
|
82
|
+
grant_type: "authorization_code",
|
83
|
+
code: "this_is_an_authorization_code")
|
84
|
+
assert_equal("another_access_token", resp.access_token)
|
64
85
|
end
|
65
86
|
end
|
66
87
|
|
@@ -68,17 +89,15 @@ module Stripe
|
|
68
89
|
should "deauthorize an account" do
|
69
90
|
# The OpenAPI fixtures don't cover the OAuth endpoints, so we just
|
70
91
|
# stub the request manually.
|
71
|
-
stub_request(:post, "#{Stripe.connect_base}/oauth/deauthorize")
|
72
|
-
with(body: {
|
73
|
-
|
74
|
-
|
75
|
-
})
|
76
|
-
to_return(body: JSON.generate(
|
77
|
-
stripe_user_id: 'acct_test_deauth',
|
78
|
-
}))
|
92
|
+
stub_request(:post, "#{Stripe.connect_base}/oauth/deauthorize")
|
93
|
+
.with(body: {
|
94
|
+
"client_id" => "ca_test",
|
95
|
+
"stripe_user_id" => "acct_test_deauth",
|
96
|
+
})
|
97
|
+
.to_return(body: JSON.generate(stripe_user_id: "acct_test_deauth"))
|
79
98
|
|
80
|
-
resp = OAuth.deauthorize(
|
81
|
-
assert_equal(
|
99
|
+
resp = OAuth.deauthorize(stripe_user_id: "acct_test_deauth")
|
100
|
+
assert_equal("acct_test_deauth", resp.stripe_user_id)
|
82
101
|
end
|
83
102
|
end
|
84
103
|
end
|
@@ -1,19 +1,21 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
2
4
|
|
3
5
|
module Stripe
|
4
6
|
class OrderReturnTest < Test::Unit::TestCase
|
5
7
|
should "be listable" do
|
6
8
|
order_returns = Stripe::OrderReturn.list
|
7
9
|
assert_requested :get, "#{Stripe.api_base}/v1/order_returns"
|
8
|
-
assert order_returns.data.
|
9
|
-
assert order_returns.data[0].
|
10
|
+
assert order_returns.data.is_a?(Array)
|
11
|
+
assert order_returns.data[0].is_a?(Stripe::OrderReturn)
|
10
12
|
end
|
11
13
|
|
12
14
|
should "be retrievable" do
|
13
15
|
order_return = Stripe::OrderReturn.retrieve("orret_123")
|
14
16
|
assert_requested :get,
|
15
|
-
|
16
|
-
assert order_return.
|
17
|
+
"#{Stripe.api_base}/v1/order_returns/orret_123"
|
18
|
+
assert order_return.is_a?(Stripe::OrderReturn)
|
17
19
|
end
|
18
20
|
end
|
19
21
|
end
|
data/test/stripe/order_test.rb
CHANGED
@@ -1,18 +1,20 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
2
4
|
|
3
5
|
module Stripe
|
4
6
|
class OrderTest < Test::Unit::TestCase
|
5
7
|
should "be listable" do
|
6
8
|
orders = Stripe::Order.list
|
7
9
|
assert_requested :get, "#{Stripe.api_base}/v1/orders"
|
8
|
-
assert orders.data.
|
9
|
-
assert orders.first.
|
10
|
+
assert orders.data.is_a?(Array)
|
11
|
+
assert orders.first.is_a?(Stripe::Order)
|
10
12
|
end
|
11
13
|
|
12
14
|
should "be retrievable" do
|
13
15
|
order = Stripe::Order.retrieve("or_123")
|
14
16
|
assert_requested :get, "#{Stripe.api_base}/v1/orders/or_123"
|
15
|
-
assert order.
|
17
|
+
assert order.is_a?(Stripe::Order)
|
16
18
|
end
|
17
19
|
|
18
20
|
should "be creatable" do
|
@@ -20,37 +22,60 @@ module Stripe
|
|
20
22
|
currency: "USD"
|
21
23
|
)
|
22
24
|
assert_requested :post, "#{Stripe.api_base}/v1/orders"
|
23
|
-
assert order.
|
25
|
+
assert order.is_a?(Stripe::Order)
|
24
26
|
end
|
25
27
|
|
26
28
|
should "be saveable" do
|
27
29
|
order = Stripe::Order.retrieve("or_123")
|
28
|
-
order.metadata[
|
30
|
+
order.metadata["key"] = "value"
|
29
31
|
order.save
|
30
32
|
assert_requested :post, "#{Stripe.api_base}/v1/orders/#{order.id}"
|
31
33
|
end
|
32
34
|
|
33
35
|
should "be updateable" do
|
34
|
-
order = Stripe::Order.update("or_123", metadata: { key:
|
36
|
+
order = Stripe::Order.update("or_123", metadata: { key: "value" })
|
35
37
|
assert_requested :post, "#{Stripe.api_base}/v1/orders/or_123"
|
36
|
-
assert order.
|
38
|
+
assert order.is_a?(Stripe::Order)
|
37
39
|
end
|
38
40
|
|
39
41
|
context "#pay" do
|
40
42
|
should "pay an order" do
|
41
43
|
order = Stripe::Order.retrieve("or_123")
|
42
|
-
order = order.pay(
|
43
|
-
|
44
|
+
order = order.pay(source: "tok_123")
|
45
|
+
assert_requested :post, "#{Stripe.api_base}/v1/orders/#{order.id}/pay"
|
46
|
+
assert order.is_a?(Stripe::Order)
|
47
|
+
end
|
48
|
+
|
49
|
+
should "pay an order without additional arguments" do
|
50
|
+
order = Stripe::Order.retrieve("or_123")
|
51
|
+
order = order.pay
|
52
|
+
assert_requested :post, "#{Stripe.api_base}/v1/orders/#{order.id}/pay"
|
53
|
+
assert order.is_a?(Stripe::Order)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
context ".pay" do
|
58
|
+
should "pay an order" do
|
59
|
+
order = Stripe::Order.pay("or_123", source: "tok_123")
|
60
|
+
assert_requested :post, "#{Stripe.api_base}/v1/orders/or_123/pay"
|
61
|
+
assert order.is_a?(Stripe::Order)
|
44
62
|
end
|
45
63
|
end
|
46
64
|
|
47
65
|
context "#return_order" do
|
48
66
|
should "return an order" do
|
49
67
|
order = Stripe::Order.retrieve("or_123")
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
68
|
+
order_return = order.return_order({})
|
69
|
+
assert_requested :post, "#{Stripe.api_base}/v1/orders/#{order.id}/returns"
|
70
|
+
assert order_return.is_a?(Stripe::OrderReturn)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
context ".return_order" do
|
75
|
+
should "return an order" do
|
76
|
+
order_return = Stripe::Order.return_order("or_123")
|
77
|
+
assert_requested :post, "#{Stripe.api_base}/v1/orders/or_123/returns"
|
78
|
+
assert order_return.is_a?(Stripe::OrderReturn)
|
54
79
|
end
|
55
80
|
end
|
56
81
|
end
|
@@ -0,0 +1,107 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
4
|
+
|
5
|
+
module Stripe
|
6
|
+
class PaymentIntentTest < Test::Unit::TestCase
|
7
|
+
TEST_RESOURCE_ID = "pi_123"
|
8
|
+
|
9
|
+
should "be listable" do
|
10
|
+
payment_intents = Stripe::PaymentIntent.list
|
11
|
+
assert_requested :get, "#{Stripe.api_base}/v1/payment_intents"
|
12
|
+
assert payment_intents.data.is_a?(Array)
|
13
|
+
assert payment_intents.data[0].is_a?(Stripe::PaymentIntent)
|
14
|
+
end
|
15
|
+
|
16
|
+
should "be retrievable" do
|
17
|
+
payment_intent = Stripe::PaymentIntent.retrieve("pi_123")
|
18
|
+
assert_requested :get, "#{Stripe.api_base}/v1/payment_intents/pi_123"
|
19
|
+
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
20
|
+
end
|
21
|
+
|
22
|
+
should "be creatable" do
|
23
|
+
payment_intent = Stripe::PaymentIntent.create(
|
24
|
+
amount: 1234,
|
25
|
+
currency: "usd",
|
26
|
+
payment_method_types: ["card"]
|
27
|
+
)
|
28
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents"
|
29
|
+
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
30
|
+
end
|
31
|
+
|
32
|
+
should "be saveable" do
|
33
|
+
payment_intent = Stripe::PaymentIntent.construct_from(id: "pi_123", object: "payment_intent", metadata: {})
|
34
|
+
payment_intent.metadata["key"] = "value"
|
35
|
+
payment_intent.save
|
36
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/#{payment_intent.id}"
|
37
|
+
end
|
38
|
+
|
39
|
+
should "be updateable" do
|
40
|
+
payment_intent = Stripe::PaymentIntent.update("pi_123", metadata: { foo: "bar" })
|
41
|
+
|
42
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123"
|
43
|
+
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
44
|
+
end
|
45
|
+
|
46
|
+
context "#cancel" do
|
47
|
+
should "cancel a payment_intent" do
|
48
|
+
payment_intent = Stripe::PaymentIntent.construct_from(id: "pi_123", object: "payment_intent")
|
49
|
+
payment_intent = payment_intent.cancel
|
50
|
+
|
51
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/cancel"
|
52
|
+
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
context ".cancel" do
|
57
|
+
should "cancel a payment_intent" do
|
58
|
+
payment_intent = Stripe::PaymentIntent.cancel("pi_123")
|
59
|
+
|
60
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/cancel"
|
61
|
+
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
context "#capture" do
|
66
|
+
should "capture a payment_intent" do
|
67
|
+
payment_intent = Stripe::PaymentIntent.construct_from(id: "pi_123", object: "payment_intent")
|
68
|
+
payment_intent = payment_intent.capture(
|
69
|
+
amount_to_capture: 1234
|
70
|
+
)
|
71
|
+
|
72
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/capture"
|
73
|
+
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
context ".capture" do
|
78
|
+
should "capture a payment_intent" do
|
79
|
+
payment_intent = Stripe::PaymentIntent.capture("pi_123", amount_to_capture: 1234)
|
80
|
+
|
81
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/capture"
|
82
|
+
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
context "#confirm" do
|
87
|
+
should "confirm a payment_intent" do
|
88
|
+
payment_intent = Stripe::PaymentIntent.construct_from(id: "pi_123", object: "payment_intent")
|
89
|
+
payment_intent = payment_intent.confirm(
|
90
|
+
payment_method: "pm_123"
|
91
|
+
)
|
92
|
+
|
93
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/confirm"
|
94
|
+
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
context ".confirm" do
|
99
|
+
should "confirm a payment_intent" do
|
100
|
+
payment_intent = Stripe::PaymentIntent.confirm("pi_123", payment_method: "pm_123")
|
101
|
+
|
102
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/confirm"
|
103
|
+
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
104
|
+
end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
@@ -0,0 +1,84 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
4
|
+
|
5
|
+
module Stripe
|
6
|
+
class PaymentMethodTest < Test::Unit::TestCase
|
7
|
+
should "be listable" do
|
8
|
+
payment_methods = Stripe::PaymentMethod.list(
|
9
|
+
customer: "cus_123",
|
10
|
+
type: "card"
|
11
|
+
)
|
12
|
+
assert_requested :get, "#{Stripe.api_base}/v1/payment_methods?customer=cus_123&type=card"
|
13
|
+
assert payment_methods.data.is_a?(Array)
|
14
|
+
assert payment_methods.first.is_a?(Stripe::PaymentMethod)
|
15
|
+
end
|
16
|
+
|
17
|
+
should "be retrievable" do
|
18
|
+
payment_method = Stripe::PaymentMethod.retrieve("pm_123")
|
19
|
+
assert_requested :get, "#{Stripe.api_base}/v1/payment_methods/pm_123"
|
20
|
+
assert payment_method.is_a?(Stripe::PaymentMethod)
|
21
|
+
end
|
22
|
+
|
23
|
+
should "be creatable" do
|
24
|
+
payment_method = Stripe::PaymentMethod.create(
|
25
|
+
type: "card"
|
26
|
+
)
|
27
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods"
|
28
|
+
assert payment_method.is_a?(Stripe::PaymentMethod)
|
29
|
+
end
|
30
|
+
|
31
|
+
should "be saveable" do
|
32
|
+
payment_method = Stripe::PaymentMethod.retrieve("pm_123")
|
33
|
+
payment_method.metadata["key"] = "value"
|
34
|
+
payment_method.save
|
35
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/#{payment_method.id}"
|
36
|
+
end
|
37
|
+
|
38
|
+
should "be updateable" do
|
39
|
+
payment_method = Stripe::PaymentMethod.update("pm_123", metadata: { key: "value" })
|
40
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/pm_123"
|
41
|
+
assert payment_method.is_a?(Stripe::PaymentMethod)
|
42
|
+
end
|
43
|
+
|
44
|
+
context "#attach" do
|
45
|
+
should "attach payment_method" do
|
46
|
+
payment_method = Stripe::PaymentMethod.construct_from(id: "pm_123", object: "payment_method")
|
47
|
+
payment_method = payment_method.attach(
|
48
|
+
customer: "cus_123"
|
49
|
+
)
|
50
|
+
|
51
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/pm_123/attach"
|
52
|
+
assert payment_method.is_a?(Stripe::PaymentMethod)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
context ".attach" do
|
57
|
+
should "attach payment_method" do
|
58
|
+
payment_method = Stripe::PaymentMethod.attach("pm_123", customer: "cus_123")
|
59
|
+
|
60
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/pm_123/attach"
|
61
|
+
assert payment_method.is_a?(Stripe::PaymentMethod)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
context "#detach" do
|
66
|
+
should "detach payment_method" do
|
67
|
+
payment_method = Stripe::PaymentMethod.construct_from(id: "pm_123", object: "payment_method")
|
68
|
+
payment_method = payment_method.detach
|
69
|
+
|
70
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/pm_123/detach"
|
71
|
+
assert payment_method.is_a?(Stripe::PaymentMethod)
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
context ".detach" do
|
76
|
+
should "detach payment_method" do
|
77
|
+
payment_method = Stripe::PaymentMethod.detach("pm_123")
|
78
|
+
|
79
|
+
assert_requested :post, "#{Stripe.api_base}/v1/payment_methods/pm_123/detach"
|
80
|
+
assert payment_method.is_a?(Stripe::PaymentMethod)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
end
|
data/test/stripe/payout_test.rb
CHANGED
@@ -1,18 +1,20 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
2
4
|
|
3
5
|
module Stripe
|
4
6
|
class PayoutTest < Test::Unit::TestCase
|
5
7
|
should "be listable" do
|
6
8
|
payouts = Stripe::Payout.list
|
7
9
|
assert_requested :get, "#{Stripe.api_base}/v1/payouts"
|
8
|
-
assert payouts.data.
|
9
|
-
assert payouts.data[0].
|
10
|
+
assert payouts.data.is_a?(Array)
|
11
|
+
assert payouts.data[0].is_a?(Stripe::Payout)
|
10
12
|
end
|
11
13
|
|
12
14
|
should "be retrievable" do
|
13
15
|
payout = Stripe::Payout.retrieve("tr_123")
|
14
16
|
assert_requested :get, "#{Stripe.api_base}/v1/payouts/tr_123"
|
15
|
-
assert payout.
|
17
|
+
assert payout.is_a?(Stripe::Payout)
|
16
18
|
end
|
17
19
|
|
18
20
|
should "be creatable" do
|
@@ -21,27 +23,34 @@ module Stripe
|
|
21
23
|
currency: "USD"
|
22
24
|
)
|
23
25
|
assert_requested :post, "#{Stripe.api_base}/v1/payouts"
|
24
|
-
assert payout.
|
26
|
+
assert payout.is_a?(Stripe::Payout)
|
25
27
|
end
|
26
28
|
|
27
29
|
should "be saveable" do
|
28
30
|
payout = Stripe::Payout.retrieve("tr_123")
|
29
|
-
payout.metadata[
|
31
|
+
payout.metadata["key"] = "value"
|
30
32
|
payout.save
|
31
33
|
assert_requested :post, "#{Stripe.api_base}/v1/payouts/#{payout.id}"
|
32
34
|
end
|
33
35
|
|
34
36
|
should "be updateable" do
|
35
|
-
payout = Stripe::Payout.update("tr_123", metadata: {foo:
|
37
|
+
payout = Stripe::Payout.update("tr_123", metadata: { foo: "bar" })
|
36
38
|
assert_requested :post, "#{Stripe.api_base}/v1/payouts/tr_123"
|
37
|
-
assert payout.
|
39
|
+
assert payout.is_a?(Stripe::Payout)
|
38
40
|
end
|
39
41
|
|
40
42
|
context "#cancel" do
|
41
43
|
should "cancel a payout" do
|
42
44
|
payout = Stripe::Payout.retrieve("tr_123")
|
43
45
|
payout = payout.cancel
|
44
|
-
assert payout.
|
46
|
+
assert payout.is_a?(Stripe::Payout)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
context ".cancel" do
|
51
|
+
should "cancel a payout" do
|
52
|
+
payout = Stripe::Payout.cancel("pm_123")
|
53
|
+
assert payout.is_a?(Stripe::Payout)
|
45
54
|
end
|
46
55
|
end
|
47
56
|
end
|