stripe 4.17.0 → 5.32.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 +193 -1
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +10 -14
- data/README.md +167 -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 +36 -27
- data/lib/stripe/api_operations/request.rb +47 -8
- data/lib/stripe/api_operations/save.rb +8 -7
- data/lib/stripe/api_resource.rb +30 -5
- data/lib/stripe/connection_manager.rb +164 -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 +8 -6
- data/lib/stripe/object_types.rb +102 -0
- data/lib/stripe/{account.rb → resources/account.rb} +44 -33
- 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/{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} +4 -3
- data/lib/stripe/{bitcoin_transaction.rb → resources/bitcoin_transaction.rb} +1 -1
- data/lib/stripe/{capability.rb → resources/capability.rb} +11 -4
- data/lib/stripe/{card.rb → resources/card.rb} +12 -3
- 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} +2 -1
- 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 +41 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +30 -0
- data/lib/stripe/{discount.rb → resources/discount.rb} +1 -1
- 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} +7 -12
- data/lib/stripe/{file_link.rb → resources/file_link.rb} +2 -1
- 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} +1 -1
- data/lib/stripe/{issuing → resources/issuing}/authorization.rb +14 -5
- data/lib/stripe/{issuing → resources/issuing}/card.rb +8 -3
- data/lib/stripe/{issuing → resources/issuing}/card_details.rb +1 -1
- 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 +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/{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} +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} +2 -1
- 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 +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/resources/reversal.rb +29 -0
- 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/{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} +22 -15
- data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +1 -1
- data/lib/stripe/{subscription.rb → resources/subscription.rb} +12 -13
- 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/{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/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} +2 -1
- data/lib/stripe/resources.rb +85 -0
- data/lib/stripe/singleton_api_resource.rb +3 -1
- data/lib/stripe/stripe_client.rb +576 -254
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +80 -61
- data/lib/stripe/stripe_response.rb +53 -21
- data/lib/stripe/util.rb +76 -121
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +43 -10
- data/lib/stripe.rb +42 -203
- data/stripe.gemspec +23 -7
- metadata +107 -284
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -8
- data/.rubocop.yml +0 -32
- data/.rubocop_todo.yml +0 -50
- data/.travis.yml +0 -42
- 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 -86
- data/lib/stripe/credit_note.rb +0 -18
- data/lib/stripe/customer.rb +0 -95
- data/lib/stripe/dispute.rb +0 -23
- data/lib/stripe/invoice.rb +0 -48
- data/lib/stripe/issuer_fraud_record.rb +0 -9
- data/lib/stripe/login_link.rb +0 -11
- data/lib/stripe/order.rb +0 -34
- data/lib/stripe/payment_intent.rb +0 -30
- data/lib/stripe/payout.rb +0 -24
- data/lib/stripe/reversal.rb +0 -22
- data/lib/stripe/subscription_item.rb +0 -17
- data/lib/stripe/subscription_schedule.rb +0 -35
- data/lib/stripe/subscription_schedule_revision.rb +0 -25
- data/lib/stripe/tax_id.rb +0 -22
- data/lib/stripe/transfer.rb +0 -25
- data/lib/stripe/usage_record.rb +0 -14
- 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 -81
- data/test/stripe/api_resource_test.rb +0 -526
- 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 -75
- 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/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 -73
@@ -1,68 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Terminal
|
7
|
-
class LocationTest < Test::Unit::TestCase
|
8
|
-
should "be creatable" do
|
9
|
-
location = Stripe::Terminal::Location.create(
|
10
|
-
address: {
|
11
|
-
line1: "line1",
|
12
|
-
country: "US",
|
13
|
-
postal_code: "12345",
|
14
|
-
city: "San Francisco",
|
15
|
-
state: "CA",
|
16
|
-
},
|
17
|
-
display_name: "name"
|
18
|
-
)
|
19
|
-
assert_requested :post, "#{Stripe.api_base}/v1/terminal/locations"
|
20
|
-
assert location.is_a?(Stripe::Terminal::Location)
|
21
|
-
end
|
22
|
-
|
23
|
-
should "be listable" do
|
24
|
-
locations = Stripe::Terminal::Location.list
|
25
|
-
assert_requested :get, "#{Stripe.api_base}/v1/terminal/locations"
|
26
|
-
assert locations.data.is_a?(Array)
|
27
|
-
assert locations.data[0].is_a?(Stripe::Terminal::Location)
|
28
|
-
end
|
29
|
-
|
30
|
-
should "be retrievable" do
|
31
|
-
location = Stripe::Terminal::Location.retrieve("loc_123")
|
32
|
-
assert_requested :get, "#{Stripe.api_base}/v1/terminal/locations/loc_123"
|
33
|
-
assert location.is_a?(Stripe::Terminal::Location)
|
34
|
-
end
|
35
|
-
|
36
|
-
should "be saveable" do
|
37
|
-
location = Stripe::Terminal::Location.retrieve("loc_123")
|
38
|
-
location["display_name"] = "new name"
|
39
|
-
location.save
|
40
|
-
assert_requested :post, "#{Stripe.api_base}/v1/terminal/locations/loc_123"
|
41
|
-
assert location.is_a?(Stripe::Terminal::Location)
|
42
|
-
end
|
43
|
-
|
44
|
-
should "be updateable" do
|
45
|
-
location = Stripe::Terminal::Location.update("loc_123", display_name: "new name")
|
46
|
-
assert_requested :post, "#{Stripe.api_base}/v1/terminal/locations/loc_123"
|
47
|
-
assert location.is_a?(Stripe::Terminal::Location)
|
48
|
-
end
|
49
|
-
|
50
|
-
context "#delete" do
|
51
|
-
should "be deletable" do
|
52
|
-
location = Stripe::Terminal::Location.retrieve("loc_123")
|
53
|
-
location = location.delete
|
54
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/terminal/locations/#{location.id}"
|
55
|
-
assert location.is_a?(Stripe::Terminal::Location)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
|
59
|
-
context ".delete" do
|
60
|
-
should "be deletable" do
|
61
|
-
location = Stripe::Terminal::Location.delete("loc_123")
|
62
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/terminal/locations/loc_123"
|
63
|
-
assert location.is_a?(Stripe::Terminal::Location)
|
64
|
-
end
|
65
|
-
end
|
66
|
-
end
|
67
|
-
end
|
68
|
-
end
|
@@ -1,62 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
module Terminal
|
7
|
-
class ReaderTest < Test::Unit::TestCase
|
8
|
-
should "be creatable" do
|
9
|
-
reader = Stripe::Terminal::Reader.create(
|
10
|
-
registration_code: "elegant-orange-aqua",
|
11
|
-
label: "label"
|
12
|
-
)
|
13
|
-
assert_requested :post, "#{Stripe.api_base}/v1/terminal/readers"
|
14
|
-
assert reader.is_a?(Stripe::Terminal::Reader)
|
15
|
-
end
|
16
|
-
|
17
|
-
should "be listable" do
|
18
|
-
readers = Stripe::Terminal::Reader.list
|
19
|
-
assert_requested :get, "#{Stripe.api_base}/v1/terminal/readers"
|
20
|
-
assert readers.data.is_a?(Array)
|
21
|
-
assert readers.data[0].is_a?(Stripe::Terminal::Reader)
|
22
|
-
end
|
23
|
-
|
24
|
-
should "be retrievable" do
|
25
|
-
reader = Stripe::Terminal::Reader.retrieve("rdr_123")
|
26
|
-
assert_requested :get, "#{Stripe.api_base}/v1/terminal/readers/rdr_123"
|
27
|
-
assert reader.is_a?(Stripe::Terminal::Reader)
|
28
|
-
end
|
29
|
-
|
30
|
-
should "be saveable" do
|
31
|
-
reader = Stripe::Terminal::Reader.retrieve("rdr_123")
|
32
|
-
reader["label"] = "new label"
|
33
|
-
reader.save
|
34
|
-
assert_requested :post, "#{Stripe.api_base}/v1/terminal/readers/rdr_123"
|
35
|
-
assert reader.is_a?(Stripe::Terminal::Reader)
|
36
|
-
end
|
37
|
-
|
38
|
-
should "be updateable" do
|
39
|
-
reader = Stripe::Terminal::Reader.update("rdr_123", label: "new label")
|
40
|
-
assert_requested :post, "#{Stripe.api_base}/v1/terminal/readers/rdr_123"
|
41
|
-
assert reader.is_a?(Stripe::Terminal::Reader)
|
42
|
-
end
|
43
|
-
|
44
|
-
context "#delete" do
|
45
|
-
should "be deletable" do
|
46
|
-
reader = Stripe::Terminal::Reader.retrieve("rdr_123")
|
47
|
-
reader = reader.delete
|
48
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/terminal/readers/#{reader.id}"
|
49
|
-
assert reader.is_a?(Stripe::Terminal::Reader)
|
50
|
-
end
|
51
|
-
end
|
52
|
-
|
53
|
-
context ".delete" do
|
54
|
-
should "be deletable" do
|
55
|
-
reader = Stripe::Terminal::Reader.delete("rdr_123")
|
56
|
-
assert_requested :delete, "#{Stripe.api_base}/v1/terminal/readers/rdr_123"
|
57
|
-
assert reader.is_a?(Stripe::Terminal::Reader)
|
58
|
-
end
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class ThreeDSecureTest < Test::Unit::TestCase
|
7
|
-
should "be retrievable" do
|
8
|
-
secure = Stripe::ThreeDSecure.retrieve("tdsrc_123")
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/3d_secure/tdsrc_123"
|
10
|
-
assert secure.is_a?(Stripe::ThreeDSecure)
|
11
|
-
end
|
12
|
-
|
13
|
-
should "be creatable" do
|
14
|
-
_ = Stripe::ThreeDSecure.create(
|
15
|
-
card: "tok_123",
|
16
|
-
amount: 1500,
|
17
|
-
currency: "usd",
|
18
|
-
return_url: "https://example.org/3d-secure-result"
|
19
|
-
)
|
20
|
-
assert_requested :post, "#{Stripe.api_base}/v1/3d_secure"
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
data/test/stripe/topup_test.rb
DELETED
@@ -1,62 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class TopupTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
topups = Stripe::Topup.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/topups"
|
10
|
-
assert topups.data.is_a?(Array)
|
11
|
-
assert topups.data[0].is_a?(Stripe::Topup)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
topup = Stripe::Topup.retrieve("tu_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/topups/tu_123"
|
17
|
-
assert topup.is_a?(Stripe::Topup)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
topup = Stripe::Topup.create(
|
22
|
-
amount: 100,
|
23
|
-
currency: "USD",
|
24
|
-
source: "src_123",
|
25
|
-
description: "description",
|
26
|
-
statement_descriptor: "statement descriptor"
|
27
|
-
)
|
28
|
-
assert_requested :post, "#{Stripe.api_base}/v1/topups"
|
29
|
-
assert topup.is_a?(Stripe::Topup)
|
30
|
-
end
|
31
|
-
|
32
|
-
should "be saveable" do
|
33
|
-
topup = Stripe::Topup.retrieve("tu_123")
|
34
|
-
topup.metadata["key"] = "value"
|
35
|
-
topup.save
|
36
|
-
assert_requested :post, "#{Stripe.api_base}/v1/topups/#{topup.id}"
|
37
|
-
end
|
38
|
-
|
39
|
-
should "be updateable" do
|
40
|
-
topup = Stripe::Topup.update("tu_123", metadata: { foo: "bar" })
|
41
|
-
assert_requested :post, "#{Stripe.api_base}/v1/topups/tu_123"
|
42
|
-
assert topup.is_a?(Stripe::Topup)
|
43
|
-
end
|
44
|
-
|
45
|
-
context "#cancel" do
|
46
|
-
should "cancel the topup" do
|
47
|
-
topup = Stripe::Topup.retrieve("tu_123")
|
48
|
-
topup = topup.cancel
|
49
|
-
assert_requested :post, "#{Stripe.api_base}/v1/topups/#{topup.id}/cancel"
|
50
|
-
assert topup.is_a?(Stripe::Topup)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
context ".cancel" do
|
55
|
-
should "cancel the topup" do
|
56
|
-
topup = Stripe::Topup.cancel("tu_123")
|
57
|
-
assert_requested :post, "#{Stripe.api_base}/v1/topups/tu_123/cancel"
|
58
|
-
assert topup.is_a?(Stripe::Topup)
|
59
|
-
end
|
60
|
-
end
|
61
|
-
end
|
62
|
-
end
|
@@ -1,88 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class TransferTest < Test::Unit::TestCase
|
7
|
-
should "be listable" do
|
8
|
-
transfers = Stripe::Transfer.list
|
9
|
-
assert_requested :get, "#{Stripe.api_base}/v1/transfers"
|
10
|
-
assert transfers.data.is_a?(Array)
|
11
|
-
assert transfers.data[0].is_a?(Stripe::Transfer)
|
12
|
-
end
|
13
|
-
|
14
|
-
should "be retrievable" do
|
15
|
-
transfer = Stripe::Transfer.retrieve("tr_123")
|
16
|
-
assert_requested :get, "#{Stripe.api_base}/v1/transfers/tr_123"
|
17
|
-
assert transfer.is_a?(Stripe::Transfer)
|
18
|
-
end
|
19
|
-
|
20
|
-
should "be creatable" do
|
21
|
-
transfer = Stripe::Transfer.create(
|
22
|
-
amount: 100,
|
23
|
-
currency: "USD",
|
24
|
-
destination: "acct_123"
|
25
|
-
)
|
26
|
-
assert_requested :post, "#{Stripe.api_base}/v1/transfers"
|
27
|
-
assert transfer.is_a?(Stripe::Transfer)
|
28
|
-
end
|
29
|
-
|
30
|
-
should "be saveable" do
|
31
|
-
transfer = Stripe::Transfer.retrieve("tr_123")
|
32
|
-
transfer.metadata["key"] = "value"
|
33
|
-
transfer.save
|
34
|
-
assert_requested :post, "#{Stripe.api_base}/v1/transfers/#{transfer.id}"
|
35
|
-
end
|
36
|
-
|
37
|
-
should "be updateable" do
|
38
|
-
transfer = Stripe::Transfer.update("tr_123", metadata: { foo: "bar" })
|
39
|
-
assert_requested :post, "#{Stripe.api_base}/v1/transfers/tr_123"
|
40
|
-
assert transfer.is_a?(Stripe::Transfer)
|
41
|
-
end
|
42
|
-
|
43
|
-
context "#create_reversal" do
|
44
|
-
should "create a reversal" do
|
45
|
-
reversal = Stripe::Transfer.create_reversal(
|
46
|
-
"tr_123",
|
47
|
-
amount: 100
|
48
|
-
)
|
49
|
-
assert_requested :post, "#{Stripe.api_base}/v1/transfers/tr_123/reversals"
|
50
|
-
assert reversal.is_a?(Stripe::Reversal)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
context "#retrieve_reversal" do
|
55
|
-
should "retrieve a reversal" do
|
56
|
-
reversal = Stripe::Transfer.retrieve_reversal(
|
57
|
-
"tr_123",
|
58
|
-
"trr_123"
|
59
|
-
)
|
60
|
-
assert_requested :get, "#{Stripe.api_base}/v1/transfers/tr_123/reversals/trr_123"
|
61
|
-
assert reversal.is_a?(Stripe::Reversal)
|
62
|
-
end
|
63
|
-
end
|
64
|
-
|
65
|
-
context "#update_reversal" do
|
66
|
-
should "update a reversal" do
|
67
|
-
reversal = Stripe::Transfer.update_reversal(
|
68
|
-
"tr_123",
|
69
|
-
"trr_123",
|
70
|
-
metadata: { foo: "bar" }
|
71
|
-
)
|
72
|
-
assert_requested :post, "#{Stripe.api_base}/v1/transfers/tr_123/reversals/trr_123"
|
73
|
-
assert reversal.is_a?(Stripe::Reversal)
|
74
|
-
end
|
75
|
-
end
|
76
|
-
|
77
|
-
context "#list_reversals" do
|
78
|
-
should "list the transfer's reversals" do
|
79
|
-
reversals = Stripe::Transfer.list_reversals(
|
80
|
-
"tr_123"
|
81
|
-
)
|
82
|
-
assert_requested :get, "#{Stripe.api_base}/v1/transfers/tr_123/reversals"
|
83
|
-
assert reversals.is_a?(Stripe::ListObject)
|
84
|
-
assert reversals.data.is_a?(Array)
|
85
|
-
end
|
86
|
-
end
|
87
|
-
end
|
88
|
-
end
|
@@ -1,19 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require File.expand_path("../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class UsageRecordSummaryTest < Test::Unit::TestCase
|
7
|
-
setup do
|
8
|
-
@sub_item = Stripe::SubscriptionItem.retrieve("si_123")
|
9
|
-
end
|
10
|
-
|
11
|
-
should "be listable" do
|
12
|
-
transactions = @sub_item.usage_record_summaries
|
13
|
-
|
14
|
-
assert_requested :get, "#{Stripe.api_base}/v1/subscription_items/#{@sub_item.id}/usage_record_summaries"
|
15
|
-
assert transactions.data.is_a?(Array)
|
16
|
-
assert transactions.first.is_a?(Stripe::UsageRecordSummary)
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
@@ -1,28 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class UsageRecordTest < Test::Unit::TestCase
|
7
|
-
should "be creatable" do
|
8
|
-
usage_record = Stripe::UsageRecord.create(
|
9
|
-
quantity: 5000,
|
10
|
-
subscription_item: "si_abc",
|
11
|
-
timestamp: Time.now.to_i,
|
12
|
-
action: "increment"
|
13
|
-
)
|
14
|
-
assert_requested :post, "#{Stripe.api_base}/v1/subscription_items/si_abc/usage_records"
|
15
|
-
assert usage_record.is_a?(Stripe::UsageRecord)
|
16
|
-
end
|
17
|
-
|
18
|
-
should "raise when subscription_item is missing" do
|
19
|
-
assert_raise ArgumentError do
|
20
|
-
Stripe::UsageRecord.create(
|
21
|
-
quantity: 5000,
|
22
|
-
timestamp: Time.now.to_i,
|
23
|
-
action: "increment"
|
24
|
-
)
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
data/test/stripe/util_test.rb
DELETED
@@ -1,402 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
require ::File.expand_path("../../test_helper", __FILE__)
|
4
|
-
|
5
|
-
module Stripe
|
6
|
-
class UtilTest < Test::Unit::TestCase
|
7
|
-
context "OPTS_COPYABLE" do
|
8
|
-
should "include :apibase" do
|
9
|
-
assert_include Stripe::Util::OPTS_COPYABLE, :api_base
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
context "OPTS_PERSISTABLE" do
|
14
|
-
should "include :client" do
|
15
|
-
assert_include Stripe::Util::OPTS_PERSISTABLE, :client
|
16
|
-
end
|
17
|
-
|
18
|
-
should "not include :idempotency_key" do
|
19
|
-
refute_includes Stripe::Util::OPTS_PERSISTABLE, :idempotency_key
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
should "#encode_parameters should prepare parameters for an HTTP request" do
|
24
|
-
params = {
|
25
|
-
a: 3,
|
26
|
-
b: "+foo?",
|
27
|
-
c: "bar&baz",
|
28
|
-
d: { a: "a", b: "b" },
|
29
|
-
e: [0, 1],
|
30
|
-
f: "",
|
31
|
-
|
32
|
-
# note the empty hash won't even show up in the request
|
33
|
-
g: [],
|
34
|
-
}
|
35
|
-
assert_equal(
|
36
|
-
"a=3&b=%2Bfoo%3F&c=bar%26baz&d[a]=a&d[b]=b&e[0]=0&e[1]=1&f=",
|
37
|
-
Stripe::Util.encode_parameters(params)
|
38
|
-
)
|
39
|
-
end
|
40
|
-
|
41
|
-
should "#url_encode should prepare strings for HTTP" do
|
42
|
-
assert_equal "foo", Stripe::Util.url_encode("foo")
|
43
|
-
assert_equal "foo", Stripe::Util.url_encode(:foo)
|
44
|
-
assert_equal "foo%2B", Stripe::Util.url_encode("foo+")
|
45
|
-
assert_equal "foo%26", Stripe::Util.url_encode("foo&")
|
46
|
-
assert_equal "foo[bar]", Stripe::Util.url_encode("foo[bar]")
|
47
|
-
end
|
48
|
-
|
49
|
-
should "#flatten_params should encode parameters according to Rails convention" do
|
50
|
-
params = [
|
51
|
-
[:a, 3],
|
52
|
-
[:b, "foo?"],
|
53
|
-
[:c, "bar&baz"],
|
54
|
-
[:d, { a: "a", b: "b" }],
|
55
|
-
[:e, [0, 1]],
|
56
|
-
[:f, [
|
57
|
-
{ foo: "1", ghi: "2" },
|
58
|
-
{ foo: "3", bar: "4" },
|
59
|
-
],],
|
60
|
-
]
|
61
|
-
assert_equal([
|
62
|
-
["a", 3],
|
63
|
-
["b", "foo?"],
|
64
|
-
["c", "bar&baz"],
|
65
|
-
["d[a]", "a"],
|
66
|
-
["d[b]", "b"],
|
67
|
-
["e[0]", 0],
|
68
|
-
["e[1]", 1],
|
69
|
-
|
70
|
-
# *The key here is the order*. In order to be properly interpreted as
|
71
|
-
# an array of hashes on the server, everything from a single hash must
|
72
|
-
# come in at once. A duplicate key in an array triggers a new element.
|
73
|
-
["f[0][foo]", "1"],
|
74
|
-
["f[0][ghi]", "2"],
|
75
|
-
["f[1][foo]", "3"],
|
76
|
-
["f[1][bar]", "4"],
|
77
|
-
], Stripe::Util.flatten_params(params))
|
78
|
-
end
|
79
|
-
|
80
|
-
should "#symbolize_names should convert names to symbols" do
|
81
|
-
start = {
|
82
|
-
"foo" => "bar",
|
83
|
-
"array" => [{ "foo" => "bar" }],
|
84
|
-
"nested" => {
|
85
|
-
1 => 2,
|
86
|
-
:symbol => 9,
|
87
|
-
"string" => nil,
|
88
|
-
},
|
89
|
-
}
|
90
|
-
finish = {
|
91
|
-
foo: "bar",
|
92
|
-
array: [{ foo: "bar" }],
|
93
|
-
nested: {
|
94
|
-
1 => 2,
|
95
|
-
:symbol => 9,
|
96
|
-
:string => nil,
|
97
|
-
},
|
98
|
-
}
|
99
|
-
|
100
|
-
symbolized = Stripe::Util.symbolize_names(start)
|
101
|
-
assert_equal(finish, symbolized)
|
102
|
-
end
|
103
|
-
|
104
|
-
should "#normalize_opts should reject nil keys" do
|
105
|
-
assert_raise { Stripe::Util.normalize_opts(nil) }
|
106
|
-
assert_raise { Stripe::Util.normalize_opts(api_key: nil) }
|
107
|
-
end
|
108
|
-
|
109
|
-
should "#convert_to_stripe_object should pass through unknown types" do
|
110
|
-
obj = Util.convert_to_stripe_object(7, {})
|
111
|
-
assert_equal 7, obj
|
112
|
-
end
|
113
|
-
|
114
|
-
should "#convert_to_stripe_object should turn hashes into StripeObjects" do
|
115
|
-
obj = Util.convert_to_stripe_object({ foo: "bar" }, {})
|
116
|
-
assert obj.is_a?(StripeObject)
|
117
|
-
assert_equal "bar", obj.foo
|
118
|
-
end
|
119
|
-
|
120
|
-
should "#convert_to_stripe_object should turn lists into ListObjects" do
|
121
|
-
obj = Util.convert_to_stripe_object({ object: "list" }, {})
|
122
|
-
assert obj.is_a?(ListObject)
|
123
|
-
end
|
124
|
-
|
125
|
-
should "#convert_to_stripe_object should marshal other classes" do
|
126
|
-
obj = Util.convert_to_stripe_object({ object: "account" }, {})
|
127
|
-
assert obj.is_a?(Account)
|
128
|
-
end
|
129
|
-
|
130
|
-
should "#convert_to_stripe_object should marshal arrays" do
|
131
|
-
obj = Util.convert_to_stripe_object([1, 2, 3], {})
|
132
|
-
assert_equal [1, 2, 3], obj
|
133
|
-
end
|
134
|
-
|
135
|
-
context ".request_id_dashboard_url" do
|
136
|
-
should "generate a livemode URL" do
|
137
|
-
assert_equal "https://dashboard.stripe.com/live/logs/request-id",
|
138
|
-
Util.request_id_dashboard_url("request-id", "sk_live_123")
|
139
|
-
end
|
140
|
-
|
141
|
-
should "generate a testmode URL" do
|
142
|
-
assert_equal "https://dashboard.stripe.com/test/logs/request-id",
|
143
|
-
Util.request_id_dashboard_url("request-id", "sk_test_123")
|
144
|
-
end
|
145
|
-
|
146
|
-
should "default to a testmode URL" do
|
147
|
-
assert_equal "https://dashboard.stripe.com/test/logs/request-id",
|
148
|
-
Util.request_id_dashboard_url("request-id", nil)
|
149
|
-
end
|
150
|
-
end
|
151
|
-
|
152
|
-
context ".log_*" do
|
153
|
-
setup do
|
154
|
-
@old_log_level = Stripe.log_level
|
155
|
-
Stripe.log_level = nil
|
156
|
-
|
157
|
-
@old_stderr = $stderr
|
158
|
-
$stderr = StringIO.new
|
159
|
-
|
160
|
-
@old_stdout = $stdout
|
161
|
-
$stdout = StringIO.new
|
162
|
-
end
|
163
|
-
|
164
|
-
teardown do
|
165
|
-
Stripe.log_level = @old_log_level
|
166
|
-
$stderr = @old_stderr
|
167
|
-
$stdout = @old_stdout
|
168
|
-
end
|
169
|
-
|
170
|
-
context ".log_debug" do
|
171
|
-
should "not log if logging is disabled" do
|
172
|
-
Util.log_debug("foo")
|
173
|
-
assert_equal "", $stdout.string
|
174
|
-
end
|
175
|
-
|
176
|
-
should "log if level set to debug" do
|
177
|
-
Stripe.log_level = Stripe::LEVEL_DEBUG
|
178
|
-
Util.log_debug("foo")
|
179
|
-
assert_equal "message=foo level=debug \n", $stdout.string
|
180
|
-
end
|
181
|
-
|
182
|
-
should "not log if level set to error" do
|
183
|
-
Stripe.log_level = Stripe::LEVEL_ERROR
|
184
|
-
Util.log_debug("foo")
|
185
|
-
assert_equal "", $stdout.string
|
186
|
-
end
|
187
|
-
|
188
|
-
should "not log if level set to info" do
|
189
|
-
Stripe.log_level = Stripe::LEVEL_INFO
|
190
|
-
Util.log_debug("foo")
|
191
|
-
assert_equal "", $stdout.string
|
192
|
-
end
|
193
|
-
end
|
194
|
-
|
195
|
-
context ".log_error" do
|
196
|
-
should "not log if logging is disabled" do
|
197
|
-
Util.log_error("foo")
|
198
|
-
assert_equal "", $stdout.string
|
199
|
-
end
|
200
|
-
|
201
|
-
should "log if level set to debug" do
|
202
|
-
Stripe.log_level = Stripe::LEVEL_DEBUG
|
203
|
-
Util.log_error("foo")
|
204
|
-
assert_equal "message=foo level=error \n", $stderr.string
|
205
|
-
end
|
206
|
-
|
207
|
-
should "log if level set to error" do
|
208
|
-
Stripe.log_level = Stripe::LEVEL_ERROR
|
209
|
-
Util.log_error("foo")
|
210
|
-
assert_equal "message=foo level=error \n", $stderr.string
|
211
|
-
end
|
212
|
-
|
213
|
-
should "log if level set to info" do
|
214
|
-
Stripe.log_level = Stripe::LEVEL_INFO
|
215
|
-
Util.log_error("foo")
|
216
|
-
assert_equal "message=foo level=error \n", $stderr.string
|
217
|
-
end
|
218
|
-
end
|
219
|
-
|
220
|
-
context ".log_info" do
|
221
|
-
should "not log if logging is disabled" do
|
222
|
-
Util.log_info("foo")
|
223
|
-
assert_equal "", $stdout.string
|
224
|
-
end
|
225
|
-
|
226
|
-
should "log if level set to debug" do
|
227
|
-
Stripe.log_level = Stripe::LEVEL_DEBUG
|
228
|
-
Util.log_info("foo")
|
229
|
-
assert_equal "message=foo level=info \n", $stdout.string
|
230
|
-
end
|
231
|
-
|
232
|
-
should "not log if level set to error" do
|
233
|
-
Stripe.log_level = Stripe::LEVEL_ERROR
|
234
|
-
Util.log_debug("foo")
|
235
|
-
assert_equal "", $stdout.string
|
236
|
-
end
|
237
|
-
|
238
|
-
should "log if level set to info" do
|
239
|
-
Stripe.log_level = Stripe::LEVEL_INFO
|
240
|
-
Util.log_info("foo")
|
241
|
-
assert_equal "message=foo level=info \n", $stdout.string
|
242
|
-
end
|
243
|
-
end
|
244
|
-
end
|
245
|
-
|
246
|
-
context ".log_* with a logger" do
|
247
|
-
setup do
|
248
|
-
@out = StringIO.new
|
249
|
-
logger = ::Logger.new(@out)
|
250
|
-
|
251
|
-
# Set a really simple formatter to make matching output as easy as
|
252
|
-
# possible.
|
253
|
-
logger.formatter = proc { |_severity, _datetime, _progname, message|
|
254
|
-
message
|
255
|
-
}
|
256
|
-
|
257
|
-
Stripe.logger = logger
|
258
|
-
end
|
259
|
-
|
260
|
-
context ".log_debug" do
|
261
|
-
should "log to the logger" do
|
262
|
-
Util.log_debug("foo")
|
263
|
-
assert_equal "message=foo ", @out.string
|
264
|
-
end
|
265
|
-
end
|
266
|
-
|
267
|
-
context ".log_error" do
|
268
|
-
should "log to the logger" do
|
269
|
-
Util.log_error("foo")
|
270
|
-
assert_equal "message=foo ", @out.string
|
271
|
-
end
|
272
|
-
end
|
273
|
-
|
274
|
-
context ".log_info" do
|
275
|
-
should "log to the logger" do
|
276
|
-
Util.log_info("foo")
|
277
|
-
assert_equal "message=foo ", @out.string
|
278
|
-
end
|
279
|
-
end
|
280
|
-
end
|
281
|
-
|
282
|
-
context ".normalize_headers" do
|
283
|
-
should "normalize the format of a header key" do
|
284
|
-
assert_equal({ "Request-Id" => nil },
|
285
|
-
Util.normalize_headers("Request-Id" => nil))
|
286
|
-
assert_equal({ "Request-Id" => nil },
|
287
|
-
Util.normalize_headers("request-id" => nil))
|
288
|
-
assert_equal({ "Request-Id" => nil },
|
289
|
-
Util.normalize_headers("Request-ID" => nil))
|
290
|
-
assert_equal({ "Request-Id" => nil },
|
291
|
-
Util.normalize_headers(request_id: nil))
|
292
|
-
end
|
293
|
-
|
294
|
-
should "tolerate bad formatting" do
|
295
|
-
assert_equal({ "Request-Id" => nil },
|
296
|
-
Util.normalize_headers("-Request--Id-" => nil))
|
297
|
-
assert_equal({ "Request-Id" => nil },
|
298
|
-
Util.normalize_headers(request__id: nil))
|
299
|
-
end
|
300
|
-
end
|
301
|
-
|
302
|
-
#
|
303
|
-
# private
|
304
|
-
#
|
305
|
-
# I don't feel particularly good about using #send to invoke these, but I
|
306
|
-
# want them hidden from the public interface, and each method is far easier
|
307
|
-
# to test in isolation (as opposed to going through a public method).
|
308
|
-
#
|
309
|
-
|
310
|
-
context ".colorize" do
|
311
|
-
should "colorize for a TTY" do
|
312
|
-
assert_equal "\033[0;32;49mfoo\033[0m",
|
313
|
-
Util.send(:colorize, "foo", :green, true)
|
314
|
-
end
|
315
|
-
|
316
|
-
should "not colorize otherwise" do
|
317
|
-
assert_equal "foo", Util.send(:colorize, "foo", :green, false)
|
318
|
-
end
|
319
|
-
end
|
320
|
-
|
321
|
-
context ".level_name" do
|
322
|
-
should "convert levels to names" do
|
323
|
-
assert_equal "debug", Util.send(:level_name, LEVEL_DEBUG)
|
324
|
-
assert_equal "error", Util.send(:level_name, LEVEL_ERROR)
|
325
|
-
assert_equal "info", Util.send(:level_name, LEVEL_INFO)
|
326
|
-
end
|
327
|
-
end
|
328
|
-
|
329
|
-
context ".log_internal" do
|
330
|
-
should "log in a terminal friendly way" do
|
331
|
-
out = StringIO.new
|
332
|
-
|
333
|
-
# Sketchy as anything, but saves us from pulling in a mocking library.
|
334
|
-
# Open this instance of StringIO, and add a method override so that it
|
335
|
-
# looks like a TTY.
|
336
|
-
out.instance_eval do
|
337
|
-
def isatty
|
338
|
-
true
|
339
|
-
end
|
340
|
-
end
|
341
|
-
|
342
|
-
Util.send(:log_internal, "message", { foo: "bar" },
|
343
|
-
color: :green, level: Stripe::LEVEL_DEBUG, logger: nil, out: out)
|
344
|
-
assert_equal "\e[0;32;49mDEBU\e[0m message \e[0;32;49mfoo\e[0m=bar\n",
|
345
|
-
out.string
|
346
|
-
end
|
347
|
-
|
348
|
-
should "log in a data friendly way" do
|
349
|
-
out = StringIO.new
|
350
|
-
Util.send(:log_internal, "message", { foo: "bar" },
|
351
|
-
color: :green, level: Stripe::LEVEL_DEBUG, logger: nil, out: out)
|
352
|
-
assert_equal "message=message level=debug foo=bar\n",
|
353
|
-
out.string
|
354
|
-
end
|
355
|
-
|
356
|
-
should "log to a logger if set" do
|
357
|
-
out = StringIO.new
|
358
|
-
logger = ::Logger.new(out)
|
359
|
-
|
360
|
-
# Set a really simple formatter to make matching output as easy as
|
361
|
-
# possible.
|
362
|
-
logger.formatter = proc { |_severity, _datetime, _progname, message|
|
363
|
-
message
|
364
|
-
}
|
365
|
-
|
366
|
-
Util.send(:log_internal, "message", { foo: "bar" },
|
367
|
-
color: :green, level: Stripe::LEVEL_DEBUG, logger: logger, out: $stdout)
|
368
|
-
assert_equal "message=message foo=bar",
|
369
|
-
out.string
|
370
|
-
end
|
371
|
-
end
|
372
|
-
|
373
|
-
context ".wrap_logfmt_value" do
|
374
|
-
should "pass through simple values" do
|
375
|
-
assert_equal "abc", Util.send(:wrap_logfmt_value, "abc")
|
376
|
-
assert_equal "123", Util.send(:wrap_logfmt_value, "123")
|
377
|
-
assert_equal "a-b_c/d", Util.send(:wrap_logfmt_value, "a-b_c/d")
|
378
|
-
end
|
379
|
-
|
380
|
-
should "pass through numerics" do
|
381
|
-
assert_equal 123, Util.send(:wrap_logfmt_value, 123)
|
382
|
-
assert_equal 1.23, Util.send(:wrap_logfmt_value, 1.23)
|
383
|
-
end
|
384
|
-
|
385
|
-
should "wrap more complex values in double quotes" do
|
386
|
-
assert_equal %("abc=123"), Util.send(:wrap_logfmt_value, %(abc=123))
|
387
|
-
end
|
388
|
-
|
389
|
-
should "escape double quotes already in the value" do
|
390
|
-
assert_equal %("abc=\\"123\\""), Util.send(:wrap_logfmt_value, %(abc="123"))
|
391
|
-
end
|
392
|
-
|
393
|
-
should "remove newlines" do
|
394
|
-
assert_equal %("abc"), Util.send(:wrap_logfmt_value, "a\nb\nc")
|
395
|
-
end
|
396
|
-
|
397
|
-
should "not error if given a non-string" do
|
398
|
-
assert_equal "true", Util.send(:wrap_logfmt_value, true)
|
399
|
-
end
|
400
|
-
end
|
401
|
-
end
|
402
|
-
end
|