stripe 4.9.0 → 5.28.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 +56 -8
- data/.rubocop_todo.yml +8 -25
- data/.travis.yml +4 -8
- data/.vscode/extensions.json +7 -0
- data/.vscode/settings.json +8 -0
- data/CHANGELOG.md +206 -2
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +10 -13
- data/README.md +178 -58
- data/Rakefile +8 -7
- data/VERSION +1 -1
- data/lib/stripe.rb +41 -195
- data/lib/stripe/api_operations/create.rb +1 -1
- data/lib/stripe/api_operations/delete.rb +28 -2
- data/lib/stripe/api_operations/list.rb +1 -12
- data/lib/stripe/api_operations/nested_resource.rb +38 -28
- data/lib/stripe/api_operations/request.rb +47 -8
- data/lib/stripe/api_operations/save.rb +8 -7
- data/lib/stripe/api_resource.rb +52 -3
- data/lib/stripe/connection_manager.rb +162 -0
- data/lib/stripe/error_object.rb +94 -0
- data/lib/stripe/errors.rb +31 -10
- data/lib/stripe/instrumentation.rb +82 -0
- data/lib/stripe/list_object.rb +41 -7
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +4 -3
- data/lib/stripe/object_types.rb +101 -0
- data/lib/stripe/resources.rb +84 -0
- data/lib/stripe/{account.rb → resources/account.rb} +50 -27
- data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +30 -0
- data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
- data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/resources/billing_portal/session.rb +12 -0
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +4 -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} +13 -4
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +16 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +3 -2
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +7 -0
- data/lib/stripe/resources/customer.rb +36 -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 +22 -0
- data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +6 -2
- data/lib/stripe/{event.rb → resources/event.rb} +2 -1
- data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
- data/lib/stripe/{file.rb → resources/file.rb} +9 -11
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +3 -2
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +3 -2
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +1 -1
- data/lib/stripe/resources/issuing/authorization.rb +34 -0
- data/lib/stripe/resources/issuing/card.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/card_details.rb +1 -1
- data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +3 -2
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/transaction.rb +3 -2
- data/lib/stripe/resources/line_item.rb +7 -0
- data/lib/stripe/resources/login_link.rb +14 -0
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
- data/lib/stripe/resources/payment_intent.rb +43 -0
- data/lib/stripe/resources/payment_method.rb +33 -0
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/{person.rb → resources/person.rb} +8 -3
- data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +4 -3
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
- data/lib/stripe/{radar → resources/radar}/value_list.rb +3 -2
- data/lib/stripe/{radar → resources/radar}/value_list_item.rb +3 -2
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +3 -6
- data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
- data/lib/stripe/{refund.rb → resources/refund.rb} +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_run.rb +3 -2
- data/lib/stripe/{reporting → resources/reporting}/report_type.rb +3 -2
- data/lib/stripe/resources/reversal.rb +29 -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 +33 -0
- data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +3 -2
- data/lib/stripe/{sku.rb → resources/sku.rb} +4 -3
- data/lib/stripe/resources/source.rb +47 -0
- data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +1 -1
- 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_id.rb +26 -0
- data/lib/stripe/resources/tax_rate.rb +12 -0
- data/lib/stripe/resources/terminal/connection_token.rb +12 -0
- data/lib/stripe/{terminal → resources/terminal}/location.rb +4 -2
- data/lib/stripe/{terminal → resources/terminal}/reader.rb +4 -2
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
- data/lib/stripe/{token.rb → resources/token.rb} +2 -1
- data/lib/stripe/resources/topup.rb +23 -0
- data/lib/stripe/resources/transfer.rb +27 -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} +3 -2
- data/lib/stripe/singleton_api_resource.rb +3 -1
- data/lib/stripe/stripe_client.rb +493 -236
- data/lib/stripe/stripe_configuration.rb +178 -0
- data/lib/stripe/stripe_object.rb +75 -61
- data/lib/stripe/stripe_response.rb +53 -21
- data/lib/stripe/util.rb +66 -109
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +43 -10
- data/stripe.gemspec +14 -5
- data/test/stripe/account_link_test.rb +4 -4
- 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 +159 -37
- 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/billing_portal/session_test.rb +18 -0
- data/test/stripe/capability_test.rb +45 -0
- data/test/stripe/charge_test.rb +13 -8
- data/test/stripe/checkout/session_test.rb +19 -1
- data/test/stripe/connection_manager_test.rb +167 -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 +90 -0
- data/test/stripe/customer_balance_transaction_test.rb +37 -0
- data/test/stripe/customer_card_test.rb +7 -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 +42 -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/instrumentation_test.rb +74 -0
- 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 +27 -6
- data/test/stripe/issuing/cardholder_test.rb +1 -1
- data/test/stripe/issuing/dispute_test.rb +23 -14
- data/test/stripe/issuing/transaction_test.rb +1 -1
- data/test/stripe/list_object_test.rb +70 -24
- data/test/stripe/login_link_test.rb +2 -2
- data/test/stripe/mandate_test.rb +14 -0
- data/test/stripe/multipart_encoder_test.rb +130 -0
- data/test/stripe/oauth_test.rb +17 -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 +23 -1
- data/test/stripe/person_test.rb +1 -1
- data/test/stripe/plan_test.rb +26 -20
- data/test/stripe/price_test.rb +48 -0
- data/test/stripe/product_test.rb +17 -8
- data/test/stripe/promotion_code_test.rb +42 -0
- 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_attempt_test.rb +16 -0
- 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 +52 -19
- data/test/stripe/stripe_client_test.rb +546 -78
- data/test/stripe/stripe_configuration_test.rb +131 -0
- data/test/stripe/stripe_object_test.rb +16 -41
- data/test/stripe/stripe_response_test.rb +71 -25
- data/test/stripe/subscription_item_test.rb +38 -7
- 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 +15 -5
- data/test/stripe/util_test.rb +1 -1
- data/test/stripe/webhook_endpoint_test.rb +18 -1
- data/test/stripe/webhook_test.rb +48 -9
- data/test/stripe_mock.rb +4 -3
- data/test/stripe_test.rb +102 -33
- data/test/test_helper.rb +16 -12
- metadata +141 -129
- 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/bank_account.rb +0 -32
- data/lib/stripe/charge.rb +0 -84
- data/lib/stripe/checkout/session.rb +0 -11
- data/lib/stripe/customer.rb +0 -90
- data/lib/stripe/dispute.rb +0 -19
- 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/issuing/dispute.rb +0 -13
- 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/source.rb +0 -38
- data/lib/stripe/subscription.rb +0 -25
- data/lib/stripe/subscription_item.rb +0 -17
- data/lib/stripe/subscription_schedule.rb +0 -32
- data/lib/stripe/subscription_schedule_revision.rb +0 -25
- data/lib/stripe/terminal/connection_token.rb +0 -11
- data/lib/stripe/topup.rb +0 -16
- data/lib/stripe/transfer.rb +0 -23
- data/lib/stripe/usage_record.rb +0 -14
- data/test/api_stub_helpers.rb +0 -1
- 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/source_transaction_test.rb +0 -19
- 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/order_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 OrderTest < Test::Unit::TestCase
|
@@ -42,6 +42,22 @@ module Stripe
|
|
42
42
|
should "pay an order" do
|
43
43
|
order = Stripe::Order.retrieve("or_123")
|
44
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"
|
45
61
|
assert order.is_a?(Stripe::Order)
|
46
62
|
end
|
47
63
|
end
|
@@ -49,8 +65,17 @@ module Stripe
|
|
49
65
|
context "#return_order" do
|
50
66
|
should "return an order" do
|
51
67
|
order = Stripe::Order.retrieve("or_123")
|
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
|
@@ -1,11 +1,11 @@
|
|
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
|
-
TEST_RESOURCE_ID = "pi_123".freeze
|
7
|
-
|
8
6
|
class PaymentIntentTest < Test::Unit::TestCase
|
7
|
+
TEST_RESOURCE_ID = "pi_123"
|
8
|
+
|
9
9
|
should "be listable" do
|
10
10
|
payment_intents = Stripe::PaymentIntent.list
|
11
11
|
assert_requested :get, "#{Stripe.api_base}/v1/payment_intents"
|
@@ -53,6 +53,15 @@ module Stripe
|
|
53
53
|
end
|
54
54
|
end
|
55
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
|
+
|
56
65
|
context "#capture" do
|
57
66
|
should "capture a payment_intent" do
|
58
67
|
payment_intent = Stripe::PaymentIntent.construct_from(id: "pi_123", object: "payment_intent")
|
@@ -65,16 +74,34 @@ module Stripe
|
|
65
74
|
end
|
66
75
|
end
|
67
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
|
+
|
68
86
|
context "#confirm" do
|
69
87
|
should "confirm a payment_intent" do
|
70
88
|
payment_intent = Stripe::PaymentIntent.construct_from(id: "pi_123", object: "payment_intent")
|
71
89
|
payment_intent = payment_intent.confirm(
|
72
|
-
|
90
|
+
payment_method: "pm_123"
|
73
91
|
)
|
74
92
|
|
75
93
|
assert_requested :post, "#{Stripe.api_base}/v1/payment_intents/pi_123/confirm"
|
76
94
|
assert payment_intent.is_a?(Stripe::PaymentIntent)
|
77
95
|
end
|
78
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
|
79
106
|
end
|
80
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,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 PayoutTest < Test::Unit::TestCase
|
@@ -46,5 +46,27 @@ module Stripe
|
|
46
46
|
assert payout.is_a?(Stripe::Payout)
|
47
47
|
end
|
48
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)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
context "#reverse" do
|
58
|
+
should "reverse a payout" do
|
59
|
+
payout = Stripe::Payout.retrieve("tr_123")
|
60
|
+
payout = payout.reverse
|
61
|
+
assert payout.is_a?(Stripe::Payout)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
context ".reverse" do
|
66
|
+
should "reverse a payout" do
|
67
|
+
payout = Stripe::Payout.reverse("pm_123")
|
68
|
+
assert payout.is_a?(Stripe::Payout)
|
69
|
+
end
|
70
|
+
end
|
49
71
|
end
|
50
72
|
end
|
data/test/stripe/person_test.rb
CHANGED
data/test/stripe/plan_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 PlanTest < Test::Unit::TestCase
|
@@ -12,8 +12,8 @@ module Stripe
|
|
12
12
|
end
|
13
13
|
|
14
14
|
should "be retrievable" do
|
15
|
-
plan = Stripe::Plan.retrieve("
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/plans/
|
15
|
+
plan = Stripe::Plan.retrieve("pl_123")
|
16
|
+
assert_requested :get, "#{Stripe.api_base}/v1/plans/pl_123"
|
17
17
|
assert plan.is_a?(Stripe::Plan)
|
18
18
|
end
|
19
19
|
|
@@ -21,9 +21,8 @@ module Stripe
|
|
21
21
|
plan = Stripe::Plan.create(
|
22
22
|
amount: 5000,
|
23
23
|
interval: "month",
|
24
|
-
|
25
|
-
currency: "usd"
|
26
|
-
id: "sapphire-elite"
|
24
|
+
nickname: "Sapphire elite",
|
25
|
+
currency: "usd"
|
27
26
|
)
|
28
27
|
assert_requested :post, "#{Stripe.api_base}/v1/plans"
|
29
28
|
assert plan.is_a?(Stripe::Plan)
|
@@ -33,9 +32,8 @@ module Stripe
|
|
33
32
|
plan = Stripe::Plan.create(
|
34
33
|
amount: 5000,
|
35
34
|
interval: "month",
|
36
|
-
|
35
|
+
nickname: "Sapphire elite",
|
37
36
|
currency: "usd",
|
38
|
-
id: "sapphire-elite",
|
39
37
|
usage_type: "metered"
|
40
38
|
)
|
41
39
|
assert_requested :post, "#{Stripe.api_base}/v1/plans"
|
@@ -45,9 +43,8 @@ module Stripe
|
|
45
43
|
should "be creatable with tiered configuration" do
|
46
44
|
plan = Stripe::Plan.create(
|
47
45
|
interval: "month",
|
48
|
-
|
46
|
+
nickname: "Sapphire elite",
|
49
47
|
currency: "usd",
|
50
|
-
id: "sapphire-elite",
|
51
48
|
billing_scheme: "tiered",
|
52
49
|
tiers_mode: "volume",
|
53
50
|
tiers: [{ up_to: 100, amount: 1000 }, { up_to: "inf", amount: 2000 }]
|
@@ -59,9 +56,8 @@ module Stripe
|
|
59
56
|
should "be creatable with transform_usage" do
|
60
57
|
plan = Stripe::Plan.create(
|
61
58
|
interval: "month",
|
62
|
-
|
59
|
+
nickname: "Sapphire elite",
|
63
60
|
currency: "usd",
|
64
|
-
id: "sapphire-elite",
|
65
61
|
amount: 5000,
|
66
62
|
transform_usage: { round: "up", divide_by: 50 }
|
67
63
|
)
|
@@ -70,23 +66,33 @@ module Stripe
|
|
70
66
|
end
|
71
67
|
|
72
68
|
should "be saveable" do
|
73
|
-
plan = Stripe::Plan.retrieve("
|
69
|
+
plan = Stripe::Plan.retrieve("pl_123")
|
74
70
|
plan.metadata["key"] = "value"
|
75
71
|
plan.save
|
76
72
|
assert_requested :post, "#{Stripe.api_base}/v1/plans/#{plan.id}"
|
77
73
|
end
|
78
74
|
|
79
75
|
should "be updateable" do
|
80
|
-
plan = Stripe::Plan.update("
|
81
|
-
assert_requested :post, "#{Stripe.api_base}/v1/plans/
|
76
|
+
plan = Stripe::Plan.update("pl_123", metadata: { foo: "bar" })
|
77
|
+
assert_requested :post, "#{Stripe.api_base}/v1/plans/pl_123"
|
82
78
|
assert plan.is_a?(Stripe::Plan)
|
83
79
|
end
|
84
80
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
81
|
+
context "#delete" do
|
82
|
+
should "be deletable" do
|
83
|
+
plan = Stripe::Plan.retrieve("pl_123")
|
84
|
+
plan = plan.delete
|
85
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/plans/#{plan.id}"
|
86
|
+
assert plan.is_a?(Stripe::Plan)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
context ".delete" do
|
91
|
+
should "be deletable" do
|
92
|
+
plan = Stripe::Plan.delete("pl_123")
|
93
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/plans/pl_123"
|
94
|
+
assert plan.is_a?(Stripe::Plan)
|
95
|
+
end
|
90
96
|
end
|
91
97
|
end
|
92
98
|
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require ::File.expand_path("../test_helper", __dir__)
|
4
|
+
|
5
|
+
module Stripe
|
6
|
+
class PriceTest < Test::Unit::TestCase
|
7
|
+
should "be listable" do
|
8
|
+
prices = Stripe::Price.list
|
9
|
+
assert_requested :get, "#{Stripe.api_base}/v1/prices"
|
10
|
+
assert prices.data.is_a?(Array)
|
11
|
+
assert prices.data[0].is_a?(Stripe::Price)
|
12
|
+
end
|
13
|
+
|
14
|
+
should "be retrievable" do
|
15
|
+
price = Stripe::Price.retrieve("price_123")
|
16
|
+
assert_requested :get, "#{Stripe.api_base}/v1/prices/price_123"
|
17
|
+
assert price.is_a?(Stripe::Price)
|
18
|
+
end
|
19
|
+
|
20
|
+
should "be creatable" do
|
21
|
+
price = Stripe::Price.create(
|
22
|
+
unit_amount: 5000,
|
23
|
+
currency: "usd",
|
24
|
+
recurring: {
|
25
|
+
interval: "month",
|
26
|
+
},
|
27
|
+
product_data: {
|
28
|
+
name: "Product name",
|
29
|
+
}
|
30
|
+
)
|
31
|
+
assert_requested :post, "#{Stripe.api_base}/v1/prices"
|
32
|
+
assert price.is_a?(Stripe::Price)
|
33
|
+
end
|
34
|
+
|
35
|
+
should "be saveable" do
|
36
|
+
price = Stripe::Price.retrieve("price_123")
|
37
|
+
price.metadata["key"] = "value"
|
38
|
+
price.save
|
39
|
+
assert_requested :post, "#{Stripe.api_base}/v1/prices/#{price.id}"
|
40
|
+
end
|
41
|
+
|
42
|
+
should "be updateable" do
|
43
|
+
price = Stripe::Price.update("price_123", metadata: { foo: "bar" })
|
44
|
+
assert_requested :post, "#{Stripe.api_base}/v1/prices/price_123"
|
45
|
+
assert price.is_a?(Stripe::Price)
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
data/test/stripe/product_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 ProductTest < Test::Unit::TestCase
|
@@ -19,8 +19,7 @@ module Stripe
|
|
19
19
|
|
20
20
|
should "be creatable" do
|
21
21
|
product = Stripe::Product.create(
|
22
|
-
name: "My Product"
|
23
|
-
type: "good"
|
22
|
+
name: "My Product"
|
24
23
|
)
|
25
24
|
assert_requested :post, "#{Stripe.api_base}/v1/products"
|
26
25
|
assert product.is_a?(Stripe::Product)
|
@@ -39,11 +38,21 @@ module Stripe
|
|
39
38
|
assert product.is_a?(Stripe::Product)
|
40
39
|
end
|
41
40
|
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
41
|
+
context "#delete" do
|
42
|
+
should "be deletable" do
|
43
|
+
product = Stripe::Product.retrieve("prod_123")
|
44
|
+
product = product.delete
|
45
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/products/#{product.id}"
|
46
|
+
assert product.is_a?(Stripe::Product)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
context ".delete" do
|
51
|
+
should "be deletable" do
|
52
|
+
product = Stripe::Product.delete("prod_123")
|
53
|
+
assert_requested :delete, "#{Stripe.api_base}/v1/products/prod_123"
|
54
|
+
assert product.is_a?(Stripe::Product)
|
55
|
+
end
|
47
56
|
end
|
48
57
|
end
|
49
58
|
end
|