stripe 4.18.1 → 5.42.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +232 -1
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +10 -16
- data/README.md +168 -63
- data/Rakefile +8 -7
- data/VERSION +1 -1
- data/lib/stripe/api_operations/create.rb +1 -1
- data/lib/stripe/api_operations/delete.rb +7 -3
- data/lib/stripe/api_operations/list.rb +1 -12
- data/lib/stripe/api_operations/nested_resource.rb +29 -26
- data/lib/stripe/api_operations/request.rb +82 -6
- data/lib/stripe/api_operations/save.rb +7 -4
- data/lib/stripe/api_resource.rb +27 -2
- data/lib/stripe/connection_manager.rb +200 -0
- data/lib/stripe/error_object.rb +93 -0
- data/lib/stripe/errors.rb +24 -3
- data/lib/stripe/instrumentation.rb +84 -0
- data/lib/stripe/list_object.rb +34 -5
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +8 -6
- data/lib/stripe/object_types.rb +108 -0
- data/lib/stripe/{account.rb → resources/account.rb} +23 -26
- data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
- data/lib/stripe/{alipay_account.rb → resources/alipay_account.rb} +1 -1
- 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/{application_fee_refund.rb → resources/application_fee_refund.rb} +3 -2
- 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/{bank_account.rb → resources/bank_account.rb} +5 -6
- data/lib/stripe/{issuing/dispute.rb → resources/billing_portal/configuration.rb} +4 -3
- data/lib/stripe/{checkout → resources/billing_portal}/session.rb +3 -2
- data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +5 -5
- data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
- data/lib/stripe/{capability.rb → resources/capability.rb} +3 -2
- data/lib/stripe/{card.rb → resources/card.rb} +5 -7
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +27 -0
- data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +2 -1
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +8 -0
- data/lib/stripe/resources/customer.rb +52 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
- data/lib/stripe/{discount.rb → resources/discount.rb} +2 -1
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +2 -1
- 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} +7 -12
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +2 -1
- data/lib/stripe/resources/identity/verification_report.rb +12 -0
- data/lib/stripe/resources/identity/verification_session.rb +35 -0
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +2 -1
- data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +2 -1
- data/lib/stripe/{issuing → resources/issuing}/authorization.rb +14 -5
- data/lib/stripe/{issuing → resources/issuing}/card.rb +8 -3
- data/lib/stripe/resources/issuing/card_details.rb +10 -0
- data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +2 -1
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/{issuing → resources/issuing}/transaction.rb +2 -1
- data/lib/stripe/resources/line_item.rb +8 -0
- data/lib/stripe/{login_link.rb → resources/login_link.rb} +2 -1
- 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/{payment_method.rb → resources/payment_method.rb} +14 -5
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/{person.rb → resources/person.rb} +2 -1
- 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} +2 -1
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/quote.rb +105 -0
- data/lib/stripe/{radar → resources/radar}/early_fraud_warning.rb +2 -1
- data/lib/stripe/{radar → resources/radar}/value_list.rb +2 -1
- data/lib/stripe/{radar → resources/radar}/value_list_item.rb +2 -1
- data/lib/stripe/{recipient.rb → resources/recipient.rb} +2 -5
- 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 +2 -1
- data/lib/stripe/{reporting → resources/reporting}/report_type.rb +2 -1
- data/lib/stripe/{reversal.rb → resources/reversal.rb} +4 -3
- data/lib/stripe/{review.rb → resources/review.rb} +8 -3
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +33 -0
- data/lib/stripe/resources/shipping_rate.rb +12 -0
- data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +2 -1
- data/lib/stripe/{sku.rb → resources/sku.rb} +2 -1
- data/lib/stripe/{source.rb → resources/source.rb} +20 -15
- data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +2 -1
- data/lib/stripe/{subscription.rb → resources/subscription.rb} +12 -11
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_code.rb +10 -0
- data/lib/stripe/{tax_id.rb → resources/tax_id.rb} +2 -1
- data/lib/stripe/{tax_rate.rb → resources/tax_rate.rb} +2 -1
- data/lib/stripe/{terminal → resources/terminal}/connection_token.rb +2 -1
- data/lib/stripe/{terminal → resources/terminal}/location.rb +2 -1
- data/lib/stripe/{terminal → resources/terminal}/reader.rb +2 -1
- 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/{topup.rb → resources/topup.rb} +8 -3
- data/lib/stripe/{transfer.rb → resources/transfer.rb} +9 -8
- data/lib/stripe/resources/usage_record.rb +8 -0
- data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +2 -1
- data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +2 -1
- data/lib/stripe/resources.rb +91 -0
- data/lib/stripe/stripe_client.rb +617 -243
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +30 -25
- data/lib/stripe/stripe_response.rb +87 -27
- data/lib/stripe/util.rb +43 -103
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +39 -8
- data/lib/stripe.rb +41 -205
- data/stripe.gemspec +19 -5
- metadata +109 -287
- data/.editorconfig +0 -10
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -8
- data/.rubocop.yml +0 -42
- data/.rubocop_todo.yml +0 -38
- data/.travis.yml +0 -43
- data/.vscode/extensions.json +0 -7
- data/.vscode/settings.json +0 -8
- data/lib/stripe/application_fee.rb +0 -24
- data/lib/stripe/bitcoin_transaction.rb +0 -15
- data/lib/stripe/charge.rb +0 -84
- data/lib/stripe/credit_note.rb +0 -18
- data/lib/stripe/customer.rb +0 -93
- data/lib/stripe/dispute.rb +0 -23
- data/lib/stripe/invoice.rb +0 -49
- data/lib/stripe/issuer_fraud_record.rb +0 -9
- data/lib/stripe/issuing/card_details.rb +0 -9
- data/lib/stripe/order.rb +0 -32
- data/lib/stripe/payment_intent.rb +0 -30
- data/lib/stripe/payout.rb +0 -24
- data/lib/stripe/subscription_item.rb +0 -18
- data/lib/stripe/subscription_schedule.rb +0 -35
- data/lib/stripe/subscription_schedule_revision.rb +0 -34
- data/lib/stripe/usage_record.rb +0 -23
- data/test/api_stub_helpers.rb +0 -1
- data/test/openapi/README.md +0 -9
- data/test/stripe/account_link_test.rb +0 -18
- data/test/stripe/account_test.rb +0 -428
- data/test/stripe/alipay_account_test.rb +0 -37
- data/test/stripe/api_operations_test.rb +0 -80
- data/test/stripe/api_resource_test.rb +0 -523
- data/test/stripe/apple_pay_domain_test.rb +0 -46
- data/test/stripe/application_fee_refund_test.rb +0 -37
- data/test/stripe/application_fee_test.rb +0 -58
- data/test/stripe/balance_test.rb +0 -13
- data/test/stripe/bank_account_test.rb +0 -36
- data/test/stripe/capability_test.rb +0 -45
- data/test/stripe/charge_test.rb +0 -80
- data/test/stripe/checkout/session_test.rb +0 -41
- data/test/stripe/country_spec_test.rb +0 -20
- data/test/stripe/coupon_test.rb +0 -61
- data/test/stripe/credit_note_test.rb +0 -61
- data/test/stripe/customer_card_test.rb +0 -42
- data/test/stripe/customer_test.rb +0 -226
- data/test/stripe/dispute_test.rb +0 -51
- data/test/stripe/ephemeral_key_test.rb +0 -93
- data/test/stripe/errors_test.rb +0 -20
- data/test/stripe/exchange_rate_test.rb +0 -20
- data/test/stripe/file_link_test.rb +0 -41
- data/test/stripe/file_test.rb +0 -97
- data/test/stripe/file_upload_test.rb +0 -79
- data/test/stripe/invoice_item_test.rb +0 -66
- data/test/stripe/invoice_line_item_test.rb +0 -8
- data/test/stripe/invoice_test.rb +0 -213
- data/test/stripe/issuer_fraud_record_test.rb +0 -20
- data/test/stripe/issuing/authorization_test.rb +0 -72
- data/test/stripe/issuing/card_test.rb +0 -62
- data/test/stripe/issuing/cardholder_test.rb +0 -53
- data/test/stripe/issuing/dispute_test.rb +0 -45
- data/test/stripe/issuing/transaction_test.rb +0 -48
- data/test/stripe/list_object_test.rb +0 -156
- data/test/stripe/login_link_test.rb +0 -37
- data/test/stripe/oauth_test.rb +0 -88
- data/test/stripe/order_return_test.rb +0 -21
- data/test/stripe/order_test.rb +0 -82
- data/test/stripe/payment_intent_test.rb +0 -107
- data/test/stripe/payment_method_test.rb +0 -84
- data/test/stripe/payout_test.rb +0 -57
- data/test/stripe/person_test.rb +0 -46
- data/test/stripe/plan_test.rb +0 -98
- data/test/stripe/product_test.rb +0 -59
- data/test/stripe/radar/early_fraud_warning_test.rb +0 -22
- data/test/stripe/radar/value_list_item_test.rb +0 -48
- data/test/stripe/radar/value_list_test.rb +0 -61
- data/test/stripe/recipient_test.rb +0 -62
- data/test/stripe/refund_test.rb +0 -39
- data/test/stripe/reporting/report_run_test.rb +0 -33
- data/test/stripe/reporting/report_type_test.rb +0 -22
- data/test/stripe/reversal_test.rb +0 -43
- data/test/stripe/review_test.rb +0 -27
- data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
- data/test/stripe/sku_test.rb +0 -60
- data/test/stripe/source_test.rb +0 -99
- data/test/stripe/source_transaction_test.rb +0 -19
- data/test/stripe/stripe_client_test.rb +0 -842
- data/test/stripe/stripe_object_test.rb +0 -525
- data/test/stripe/stripe_response_test.rb +0 -49
- data/test/stripe/subscription_item_test.rb +0 -63
- data/test/stripe/subscription_schedule_revision_test.rb +0 -37
- data/test/stripe/subscription_schedule_test.rb +0 -116
- data/test/stripe/subscription_test.rb +0 -80
- data/test/stripe/tax_id_test.rb +0 -31
- data/test/stripe/tax_rate_test.rb +0 -43
- data/test/stripe/terminal/connection_token_test.rb +0 -16
- data/test/stripe/terminal/location_test.rb +0 -68
- data/test/stripe/terminal/reader_test.rb +0 -62
- data/test/stripe/three_d_secure_test.rb +0 -23
- data/test/stripe/topup_test.rb +0 -62
- data/test/stripe/transfer_test.rb +0 -88
- data/test/stripe/usage_record_summary_test.rb +0 -19
- data/test/stripe/usage_record_test.rb +0 -28
- data/test/stripe/util_test.rb +0 -402
- data/test/stripe/webhook_endpoint_test.rb +0 -59
- data/test/stripe/webhook_test.rb +0 -96
- data/test/stripe_mock.rb +0 -77
- data/test/stripe_test.rb +0 -63
- data/test/test_data.rb +0 -61
- data/test/test_helper.rb +0 -71
@@ -1,72 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Issuing
|
7
|
-
class AuthorizationTest < Test::Unit::TestCase
|
8
|
-
should "be listable" do
|
9
|
-
authorizations = Stripe::Issuing::Authorization.list
|
10
|
-
assert_requested :get, "#{Stripe.api_base}/v1/issuing/authorizations"
|
11
|
-
assert authorizations.data.is_a?(Array)
|
12
|
-
assert authorizations.data[0].is_a?(Stripe::Issuing::Authorization)
|
13
|
-
end
|
14
|
-
|
15
|
-
should "be retrievable" do
|
16
|
-
authorization = Stripe::Issuing::Authorization.retrieve("iauth_123")
|
17
|
-
assert_requested :get, "#{Stripe.api_base}/v1/issuing/authorizations/iauth_123"
|
18
|
-
assert authorization.is_a?(Stripe::Issuing::Authorization)
|
19
|
-
end
|
20
|
-
|
21
|
-
should "be saveable" do
|
22
|
-
authorization = Stripe::Issuing::Authorization.retrieve("iauth_123")
|
23
|
-
authorization.metadata["key"] = "value"
|
24
|
-
authorization.save
|
25
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/authorizations/#{authorization.id}"
|
26
|
-
assert authorization.is_a?(Stripe::Issuing::Authorization)
|
27
|
-
end
|
28
|
-
|
29
|
-
should "be updateable" do
|
30
|
-
authorization = Stripe::Issuing::Authorization.update("iauth_123", metadata: { foo: "bar" })
|
31
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/authorizations/iauth_123"
|
32
|
-
assert authorization.is_a?(Stripe::Issuing::Authorization)
|
33
|
-
end
|
34
|
-
|
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
|
42
|
-
end
|
43
|
-
|
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
|
69
|
-
end
|
70
|
-
end
|
71
|
-
end
|
72
|
-
end
|
@@ -1,62 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Issuing
|
7
|
-
class CardTest < Test::Unit::TestCase
|
8
|
-
should "be creatable" do
|
9
|
-
card = Stripe::Issuing::Card.create(
|
10
|
-
currency: "usd",
|
11
|
-
type: "physical"
|
12
|
-
)
|
13
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/cards"
|
14
|
-
assert card.is_a?(Stripe::Issuing::Card)
|
15
|
-
end
|
16
|
-
|
17
|
-
should "be listable" do
|
18
|
-
cards = Stripe::Issuing::Card.list
|
19
|
-
assert_requested :get, "#{Stripe.api_base}/v1/issuing/cards"
|
20
|
-
assert cards.data.is_a?(Array)
|
21
|
-
assert cards.data[0].is_a?(Stripe::Issuing::Card)
|
22
|
-
end
|
23
|
-
|
24
|
-
should "be retrievable" do
|
25
|
-
card = Stripe::Issuing::Card.retrieve("ic_123")
|
26
|
-
assert_requested :get, "#{Stripe.api_base}/v1/issuing/cards/ic_123"
|
27
|
-
assert card.is_a?(Stripe::Issuing::Card)
|
28
|
-
end
|
29
|
-
|
30
|
-
should "be saveable" do
|
31
|
-
card = Stripe::Issuing::Card.retrieve("ic_123")
|
32
|
-
card.metadata["key"] = "value"
|
33
|
-
card.save
|
34
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/cards/ic_123"
|
35
|
-
assert card.is_a?(Stripe::Issuing::Card)
|
36
|
-
end
|
37
|
-
|
38
|
-
should "be updateable" do
|
39
|
-
card = Stripe::Issuing::Card.update("ic_123", metadata: { foo: "bar" })
|
40
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/cards/ic_123"
|
41
|
-
assert card.is_a?(Stripe::Issuing::Card)
|
42
|
-
end
|
43
|
-
|
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
|
51
|
-
|
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
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
@@ -1,53 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Issuing
|
7
|
-
class CardholderTest < Test::Unit::TestCase
|
8
|
-
should "be creatable" do
|
9
|
-
cardholder = Stripe::Issuing::Cardholder.create(
|
10
|
-
billing: {
|
11
|
-
address: {
|
12
|
-
city: "city",
|
13
|
-
country: "US",
|
14
|
-
line1: "line1",
|
15
|
-
postal_code: "postal_code",
|
16
|
-
},
|
17
|
-
},
|
18
|
-
name: "Jenny Rosen",
|
19
|
-
type: "individual"
|
20
|
-
)
|
21
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/cardholders"
|
22
|
-
assert cardholder.is_a?(Stripe::Issuing::Cardholder)
|
23
|
-
end
|
24
|
-
|
25
|
-
should "be listable" do
|
26
|
-
cardholders = Stripe::Issuing::Cardholder.list
|
27
|
-
assert_requested :get, "#{Stripe.api_base}/v1/issuing/cardholders"
|
28
|
-
assert cardholders.data.is_a?(Array)
|
29
|
-
assert cardholders.data[0].is_a?(Stripe::Issuing::Cardholder)
|
30
|
-
end
|
31
|
-
|
32
|
-
should "be retrievable" do
|
33
|
-
cardholder = Stripe::Issuing::Cardholder.retrieve("ich_123")
|
34
|
-
assert_requested :get, "#{Stripe.api_base}/v1/issuing/cardholders/ich_123"
|
35
|
-
assert cardholder.is_a?(Stripe::Issuing::Cardholder)
|
36
|
-
end
|
37
|
-
|
38
|
-
should "be saveable" do
|
39
|
-
cardholder = Stripe::Issuing::Cardholder.retrieve("ich_123")
|
40
|
-
cardholder.metadata["key"] = "value"
|
41
|
-
cardholder.save
|
42
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/cardholders/#{cardholder.id}"
|
43
|
-
assert cardholder.is_a?(Stripe::Issuing::Cardholder)
|
44
|
-
end
|
45
|
-
|
46
|
-
should "be updateable" do
|
47
|
-
cardholder = Stripe::Issuing::Cardholder.update("ich_123", metadata: { foo: "bar" })
|
48
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/cardholders/ich_123"
|
49
|
-
assert cardholder.is_a?(Stripe::Issuing::Cardholder)
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
53
|
-
end
|
@@ -1,45 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Issuing
|
7
|
-
class DisputeTest < Test::Unit::TestCase
|
8
|
-
should "be creatable" do
|
9
|
-
dispute = Stripe::Issuing::Dispute.create(
|
10
|
-
reason: "fraudulent",
|
11
|
-
disputed_transaction: "ipi_123"
|
12
|
-
)
|
13
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/disputes"
|
14
|
-
assert dispute.is_a?(Stripe::Issuing::Dispute)
|
15
|
-
end
|
16
|
-
|
17
|
-
should "be listable" do
|
18
|
-
disputes = Stripe::Issuing::Dispute.list
|
19
|
-
assert_requested :get, "#{Stripe.api_base}/v1/issuing/disputes"
|
20
|
-
assert disputes.data.is_a?(Array)
|
21
|
-
assert disputes.data[0].is_a?(Stripe::Issuing::Dispute)
|
22
|
-
end
|
23
|
-
|
24
|
-
should "be retrievable" do
|
25
|
-
dispute = Stripe::Issuing::Dispute.retrieve("ich_123")
|
26
|
-
assert_requested :get, "#{Stripe.api_base}/v1/issuing/disputes/ich_123"
|
27
|
-
assert dispute.is_a?(Stripe::Issuing::Dispute)
|
28
|
-
end
|
29
|
-
|
30
|
-
should "be saveable" do
|
31
|
-
dispute = Stripe::Issuing::Dispute.retrieve("ich_123")
|
32
|
-
dispute.metadata["key"] = "value"
|
33
|
-
dispute.save
|
34
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/disputes/#{dispute.id}"
|
35
|
-
assert dispute.is_a?(Stripe::Issuing::Dispute)
|
36
|
-
end
|
37
|
-
|
38
|
-
should "be updateable" do
|
39
|
-
dispute = Stripe::Issuing::Dispute.update("ich_123", metadata: { foo: "bar" })
|
40
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/disputes/ich_123"
|
41
|
-
assert dispute.is_a?(Stripe::Issuing::Dispute)
|
42
|
-
end
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
@@ -1,48 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Issuing
|
7
|
-
class TransactionTest < Test::Unit::TestCase
|
8
|
-
should "be listable" do
|
9
|
-
stub_request(:get, "#{Stripe.api_base}/v1/issuing/transactions")
|
10
|
-
.to_return(body: JSON.generate(object: "list", data: [{ id: "ipi_123", object: "issuing.transaction" }]))
|
11
|
-
|
12
|
-
transactions = Stripe::Issuing::Transaction.list
|
13
|
-
assert_requested :get, "#{Stripe.api_base}/v1/issuing/transactions"
|
14
|
-
assert transactions.data.is_a?(Array)
|
15
|
-
assert transactions.data[0].is_a?(Stripe::Issuing::Transaction)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "be retrievable" do
|
19
|
-
stub_request(:get, "#{Stripe.api_base}/v1/issuing/transactions/ipi_123")
|
20
|
-
.to_return(body: JSON.generate(id: "ipi_123", object: "issuing.transaction"))
|
21
|
-
|
22
|
-
transaction = Stripe::Issuing::Transaction.retrieve("ipi_123")
|
23
|
-
assert_requested :get, "#{Stripe.api_base}/v1/issuing/transactions/ipi_123"
|
24
|
-
assert transaction.is_a?(Stripe::Issuing::Transaction)
|
25
|
-
end
|
26
|
-
|
27
|
-
should "be saveable" do
|
28
|
-
stub_request(:post, "#{Stripe.api_base}/v1/issuing/transactions/ipi_123")
|
29
|
-
.to_return(body: JSON.generate(id: "ipi_123", object: "issuing.transaction"))
|
30
|
-
|
31
|
-
transaction = Stripe::Issuing::Transaction.construct_from(id: "ipi_123", object: "issuing.transaction", metadata: {})
|
32
|
-
transaction.metadata["key"] = "value"
|
33
|
-
transaction.save
|
34
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/transactions/#{transaction.id}"
|
35
|
-
assert transaction.is_a?(Stripe::Issuing::Transaction)
|
36
|
-
end
|
37
|
-
|
38
|
-
should "be updateable" do
|
39
|
-
stub_request(:post, "#{Stripe.api_base}/v1/issuing/transactions/ipi_123")
|
40
|
-
.to_return(body: JSON.generate(id: "ipi_123", object: "issuing.transaction"))
|
41
|
-
|
42
|
-
transaction = Stripe::Issuing::Transaction.update("ipi_123", metadata: { foo: "bar" })
|
43
|
-
assert_requested :post, "#{Stripe.api_base}/v1/issuing/transactions/ipi_123"
|
44
|
-
assert transaction.is_a?(Stripe::Issuing::Transaction)
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
48
|
-
end
|
@@ -1,156 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class ListObjectTest < Test::Unit::TestCase
|
7
|
-
should "provide .empty_list" do
|
8
|
-
list = Stripe::ListObject.empty_list
|
9
|
-
assert list.empty?
|
10
|
-
end
|
11
|
-
|
12
|
-
should "provide #count via enumerable" do
|
13
|
-
list = Stripe::ListObject.construct_from(data: [{ object: "charge" }])
|
14
|
-
assert_equal 1, list.count
|
15
|
-
end
|
16
|
-
|
17
|
-
should "provide #each" do
|
18
|
-
arr = [
|
19
|
-
{ id: 1 },
|
20
|
-
{ id: 2 },
|
21
|
-
{ id: 3 },
|
22
|
-
]
|
23
|
-
expected = Util.convert_to_stripe_object(arr, {})
|
24
|
-
list = Stripe::ListObject.construct_from(data: arr)
|
25
|
-
assert_equal expected, list.each.to_a
|
26
|
-
end
|
27
|
-
|
28
|
-
should "provide #auto_paging_each" do
|
29
|
-
arr = [
|
30
|
-
{ id: 1 },
|
31
|
-
{ id: 2 },
|
32
|
-
{ id: 3 },
|
33
|
-
]
|
34
|
-
expected = Util.convert_to_stripe_object(arr, {})
|
35
|
-
|
36
|
-
list = TestListObject.construct_from(data: [{ id: 1 }],
|
37
|
-
has_more: true,
|
38
|
-
url: "/things")
|
39
|
-
stub_request(:get, "#{Stripe.api_base}/things")
|
40
|
-
.with(query: { starting_after: "1" })
|
41
|
-
.to_return(body: JSON.generate(data: [{ id: 2 }, { id: 3 }], has_more: false))
|
42
|
-
|
43
|
-
assert_equal expected, list.auto_paging_each.to_a
|
44
|
-
end
|
45
|
-
|
46
|
-
should "provide #auto_paging_each that responds to a block" do
|
47
|
-
arr = [
|
48
|
-
{ id: 1 },
|
49
|
-
{ id: 2 },
|
50
|
-
{ id: 3 },
|
51
|
-
]
|
52
|
-
expected = Util.convert_to_stripe_object(arr, {})
|
53
|
-
|
54
|
-
list = TestListObject.construct_from(data: [{ id: 1 }],
|
55
|
-
has_more: true,
|
56
|
-
url: "/things")
|
57
|
-
stub_request(:get, "#{Stripe.api_base}/things")
|
58
|
-
.with(query: { starting_after: "1" })
|
59
|
-
.to_return(body: JSON.generate(data: [{ id: 2 }, { id: 3 }], has_more: false))
|
60
|
-
|
61
|
-
actual = []
|
62
|
-
list.auto_paging_each do |obj|
|
63
|
-
actual << obj
|
64
|
-
end
|
65
|
-
|
66
|
-
assert_equal expected, actual
|
67
|
-
end
|
68
|
-
|
69
|
-
should "provide #empty?" do
|
70
|
-
list = Stripe::ListObject.construct_from(data: [])
|
71
|
-
assert list.empty?
|
72
|
-
list = Stripe::ListObject.construct_from(data: [{}])
|
73
|
-
refute list.empty?
|
74
|
-
end
|
75
|
-
|
76
|
-
#
|
77
|
-
# next_page
|
78
|
-
#
|
79
|
-
|
80
|
-
should "fetch a next page through #next_page" do
|
81
|
-
list = TestListObject.construct_from(data: [{ id: 1 }],
|
82
|
-
has_more: true,
|
83
|
-
url: "/things")
|
84
|
-
stub_request(:get, "#{Stripe.api_base}/things")
|
85
|
-
.with(query: { starting_after: "1" })
|
86
|
-
.to_return(body: JSON.generate(data: [{ id: 2 }], has_more: false))
|
87
|
-
next_list = list.next_page
|
88
|
-
refute next_list.empty?
|
89
|
-
end
|
90
|
-
|
91
|
-
should "fetch a next page through #next_page and respect limit" do
|
92
|
-
list = TestListObject.construct_from(data: [{ id: 1 }],
|
93
|
-
has_more: true,
|
94
|
-
url: "/things")
|
95
|
-
list.filters = { expand: ["data.source"], limit: 3 }
|
96
|
-
stub_request(:get, "#{Stripe.api_base}/things")
|
97
|
-
.with(query: { "expand[]" => "data.source", "limit" => "3", "starting_after" => "1" })
|
98
|
-
.to_return(body: JSON.generate(data: [{ id: 2 }], has_more: false))
|
99
|
-
next_list = list.next_page
|
100
|
-
assert_equal({ expand: ["data.source"], limit: 3 }, next_list.filters)
|
101
|
-
end
|
102
|
-
|
103
|
-
should "fetch an empty page through #next_page" do
|
104
|
-
list = TestListObject.construct_from(data: [{ id: 1 }],
|
105
|
-
has_more: false,
|
106
|
-
url: "/things")
|
107
|
-
next_list = list.next_page
|
108
|
-
assert_equal Stripe::ListObject.empty_list, next_list
|
109
|
-
end
|
110
|
-
|
111
|
-
#
|
112
|
-
# previous_page
|
113
|
-
#
|
114
|
-
|
115
|
-
should "fetch a next page through #previous_page" do
|
116
|
-
list = TestListObject.construct_from(data: [{ id: 2 }],
|
117
|
-
url: "/things")
|
118
|
-
stub_request(:get, "#{Stripe.api_base}/things")
|
119
|
-
.with(query: { ending_before: "2" })
|
120
|
-
.to_return(body: JSON.generate(data: [{ id: 1 }]))
|
121
|
-
next_list = list.previous_page
|
122
|
-
refute next_list.empty?
|
123
|
-
end
|
124
|
-
|
125
|
-
should "fetch a next page through #previous_page and respect limit" do
|
126
|
-
list = TestListObject.construct_from(data: [{ id: 2 }],
|
127
|
-
url: "/things")
|
128
|
-
list.filters = { expand: ["data.source"], limit: 3 }
|
129
|
-
stub_request(:get, "#{Stripe.api_base}/things")
|
130
|
-
.with(query: { "expand[]" => "data.source", "limit" => "3", "ending_before" => "2" })
|
131
|
-
.to_return(body: JSON.generate(data: [{ id: 1 }]))
|
132
|
-
next_list = list.previous_page
|
133
|
-
assert_equal({ expand: ["data.source"], limit: 3 }, next_list.filters)
|
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
|
-
end
|
152
|
-
end
|
153
|
-
|
154
|
-
# A helper class with a URL that allows us to try out pagination.
|
155
|
-
class TestListObject < Stripe::ListObject
|
156
|
-
end
|
@@ -1,37 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class LoginLinkTest < Test::Unit::TestCase
|
7
|
-
setup do
|
8
|
-
account_fixture = {
|
9
|
-
"id" => "acct_123",
|
10
|
-
"object" => "account",
|
11
|
-
"login_links" => {
|
12
|
-
"data" => [],
|
13
|
-
"has_more" => false,
|
14
|
-
"object" => "list",
|
15
|
-
"url" => "/v1/accounts/acct_123/login_links",
|
16
|
-
},
|
17
|
-
}
|
18
|
-
@account = Stripe::Account.construct_from(account_fixture)
|
19
|
-
end
|
20
|
-
|
21
|
-
should "not be retrievable" do
|
22
|
-
assert_raises NotImplementedError do
|
23
|
-
Stripe::LoginLink.retrieve("foo")
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
should "be creatable" do
|
28
|
-
stub_request(:post, "#{Stripe.api_base}/v1/accounts/#{@account.id}/login_links")
|
29
|
-
.to_return(body: JSON.generate(object: "login_link"))
|
30
|
-
|
31
|
-
login_link = @account.login_links.create
|
32
|
-
assert_requested :post,
|
33
|
-
"#{Stripe.api_base}/v1/accounts/#{@account.id}/login_links"
|
34
|
-
assert login_link.is_a?(Stripe::LoginLink)
|
35
|
-
end
|
36
|
-
end
|
37
|
-
end
|
data/test/stripe/oauth_test.rb
DELETED
@@ -1,88 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class OAuthTest < Test::Unit::TestCase
|
7
|
-
setup do
|
8
|
-
Stripe.client_id = "ca_test"
|
9
|
-
end
|
10
|
-
|
11
|
-
teardown do
|
12
|
-
Stripe.client_id = nil
|
13
|
-
end
|
14
|
-
|
15
|
-
context ".authorize_url" do
|
16
|
-
should "return the authorize URL" do
|
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)
|
27
|
-
|
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
|
38
|
-
|
39
|
-
should "optionally return an express path" do
|
40
|
-
uri_str = OAuth.authorize_url({}, express: true)
|
41
|
-
|
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)
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
context ".token" do
|
50
|
-
should "exchange a code for an access token" do
|
51
|
-
# The OpenAPI fixtures don't cover the OAuth endpoints, so we just
|
52
|
-
# stub the request manually.
|
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
|
-
end
|
71
|
-
|
72
|
-
context ".deauthorize" do
|
73
|
-
should "deauthorize an account" do
|
74
|
-
# The OpenAPI fixtures don't cover the OAuth endpoints, so we just
|
75
|
-
# stub the request manually.
|
76
|
-
stub_request(:post, "#{Stripe.connect_base}/oauth/deauthorize")
|
77
|
-
.with(body: {
|
78
|
-
"client_id" => "ca_test",
|
79
|
-
"stripe_user_id" => "acct_test_deauth",
|
80
|
-
})
|
81
|
-
.to_return(body: JSON.generate(stripe_user_id: "acct_test_deauth"))
|
82
|
-
|
83
|
-
resp = OAuth.deauthorize(stripe_user_id: "acct_test_deauth")
|
84
|
-
assert_equal("acct_test_deauth", resp.stripe_user_id)
|
85
|
-
end
|
86
|
-
end
|
87
|
-
end
|
88
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class OrderReturnTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
order_returns = Stripe::OrderReturn.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/order_returns"
|
10
|
-
assert order_returns.data.is_a?(Array)
|
11
|
-
assert order_returns.data[0].is_a?(Stripe::OrderReturn)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
order_return = Stripe::OrderReturn.retrieve("orret_123")
|
16
|
-
assert_requested :get,
|
17
|
-
"#{Stripe.api_base}/v1/order_returns/orret_123"
|
18
|
-
assert order_return.is_a?(Stripe::OrderReturn)
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
data/test/stripe/order_test.rb
DELETED
@@ -1,82 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../test_helper", __dir__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class OrderTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
orders = Stripe::Order.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/orders"
|
10
|
-
assert orders.data.is_a?(Array)
|
11
|
-
assert orders.first.is_a?(Stripe::Order)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
order = Stripe::Order.retrieve("or_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/orders/or_123"
|
17
|
-
assert order.is_a?(Stripe::Order)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
order = Stripe::Order.create(
|
22
|
-
currency: "USD"
|
23
|
-
)
|
24
|
-
assert_requested :post, "#{Stripe.api_base}/v1/orders"
|
25
|
-
assert order.is_a?(Stripe::Order)
|
26
|
-
end
|
27
|
-
|
28
|
-
should "be saveable" do
|
29
|
-
order = Stripe::Order.retrieve("or_123")
|
30
|
-
order.metadata["key"] = "value"
|
31
|
-
order.save
|
32
|
-
assert_requested :post, "#{Stripe.api_base}/v1/orders/#{order.id}"
|
33
|
-
end
|
34
|
-
|
35
|
-
should "be updateable" do
|
36
|
-
order = Stripe::Order.update("or_123", metadata: { key: "value" })
|
37
|
-
assert_requested :post, "#{Stripe.api_base}/v1/orders/or_123"
|
38
|
-
assert order.is_a?(Stripe::Order)
|
39
|
-
end
|
40
|
-
|
41
|
-
context "#pay" do
|
42
|
-
should "pay an order" do
|
43
|
-
order = Stripe::Order.retrieve("or_123")
|
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)
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
context "#return_order" do
|
66
|
-
should "return an order" do
|
67
|
-
order = Stripe::Order.retrieve("or_123")
|
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)
|
79
|
-
end
|
80
|
-
end
|
81
|
-
end
|
82
|
-
end
|