stripe 5.26.0 → 5.55.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +126 -0
  3. data/Gemfile +0 -1
  4. data/Makefile +7 -0
  5. data/README.md +10 -5
  6. data/VERSION +1 -1
  7. data/lib/stripe/api_operations/request.rb +35 -2
  8. data/lib/stripe/api_operations/search.rb +19 -0
  9. data/lib/stripe/api_resource.rb +10 -17
  10. data/lib/stripe/api_resource_test_helpers.rb +47 -0
  11. data/lib/stripe/connection_manager.rb +51 -10
  12. data/lib/stripe/error_object.rb +2 -3
  13. data/lib/stripe/instrumentation.rb +3 -1
  14. data/lib/stripe/oauth.rb +4 -3
  15. data/lib/stripe/object_types.rb +19 -1
  16. data/lib/stripe/resources/account.rb +3 -8
  17. data/lib/stripe/resources/application_fee_refund.rb +2 -1
  18. data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
  19. data/lib/stripe/resources/bitcoin_transaction.rb +3 -2
  20. data/lib/stripe/resources/capability.rb +2 -1
  21. data/lib/stripe/resources/cash_balance.rb +22 -0
  22. data/lib/stripe/resources/charge.rb +9 -0
  23. data/lib/stripe/resources/checkout/session.rb +11 -0
  24. data/lib/stripe/resources/credit_note_line_item.rb +1 -0
  25. data/lib/stripe/resources/customer.rb +39 -1
  26. data/lib/stripe/resources/customer_balance_transaction.rb +3 -2
  27. data/lib/stripe/resources/discount.rb +1 -0
  28. data/lib/stripe/resources/file.rb +2 -1
  29. data/lib/stripe/resources/financial_connections/account.rb +31 -0
  30. data/lib/stripe/resources/financial_connections/account_owner.rb +10 -0
  31. data/lib/stripe/resources/financial_connections/account_ownership.rb +10 -0
  32. data/lib/stripe/resources/financial_connections/session.rb +12 -0
  33. data/lib/stripe/resources/funding_instructions.rb +16 -0
  34. data/lib/stripe/resources/identity/verification_report.rb +12 -0
  35. data/lib/stripe/resources/identity/verification_session.rb +35 -0
  36. data/lib/stripe/resources/invoice.rb +9 -0
  37. data/lib/stripe/resources/invoice_line_item.rb +1 -0
  38. data/lib/stripe/resources/issuing/card_details.rb +2 -1
  39. data/lib/stripe/resources/line_item.rb +1 -0
  40. data/lib/stripe/resources/login_link.rb +1 -0
  41. data/lib/stripe/resources/payment_intent.rb +39 -0
  42. data/lib/stripe/resources/payment_link.rb +23 -0
  43. data/lib/stripe/resources/payout.rb +10 -0
  44. data/lib/stripe/resources/person.rb +1 -0
  45. data/lib/stripe/resources/price.rb +9 -0
  46. data/lib/stripe/resources/product.rb +9 -0
  47. data/lib/stripe/resources/quote.rb +105 -0
  48. data/lib/stripe/resources/refund.rb +30 -0
  49. data/lib/stripe/resources/reversal.rb +3 -2
  50. data/lib/stripe/resources/setup_intent.rb +10 -0
  51. data/lib/stripe/resources/shipping_rate.rb +12 -0
  52. data/lib/stripe/resources/source_transaction.rb +1 -0
  53. data/lib/stripe/resources/subscription.rb +9 -0
  54. data/lib/stripe/resources/tax_code.rb +10 -0
  55. data/lib/stripe/resources/tax_id.rb +1 -0
  56. data/lib/stripe/resources/terminal/configuration.rb +15 -0
  57. data/lib/stripe/resources/terminal/reader.rb +60 -0
  58. data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
  59. data/lib/stripe/resources/usage_record.rb +1 -0
  60. data/lib/stripe/resources/usage_record_summary.rb +1 -0
  61. data/lib/stripe/resources.rb +16 -0
  62. data/lib/stripe/search_result_object.rb +86 -0
  63. data/lib/stripe/stripe_client.rb +252 -114
  64. data/lib/stripe/stripe_configuration.rb +35 -8
  65. data/lib/stripe/stripe_object.rb +23 -0
  66. data/lib/stripe/stripe_response.rb +80 -52
  67. data/lib/stripe/util.rb +62 -7
  68. data/lib/stripe/version.rb +1 -1
  69. data/lib/stripe.rb +27 -22
  70. data/stripe.gemspec +12 -5
  71. metadata +26 -196
  72. data/.editorconfig +0 -10
  73. data/.gitattributes +0 -4
  74. data/.github/ISSUE_TEMPLATE.md +0 -5
  75. data/.gitignore +0 -8
  76. data/.rubocop.yml +0 -80
  77. data/.rubocop_todo.yml +0 -33
  78. data/.travis.yml +0 -38
  79. data/.vscode/extensions.json +0 -7
  80. data/.vscode/settings.json +0 -8
  81. data/test/openapi/README.md +0 -9
  82. data/test/stripe/account_link_test.rb +0 -18
  83. data/test/stripe/account_test.rb +0 -412
  84. data/test/stripe/alipay_account_test.rb +0 -37
  85. data/test/stripe/api_operations_test.rb +0 -80
  86. data/test/stripe/api_resource_test.rb +0 -646
  87. data/test/stripe/apple_pay_domain_test.rb +0 -46
  88. data/test/stripe/application_fee_refund_test.rb +0 -37
  89. data/test/stripe/application_fee_test.rb +0 -58
  90. data/test/stripe/balance_test.rb +0 -13
  91. data/test/stripe/balance_transaction_test.rb +0 -20
  92. data/test/stripe/bank_account_test.rb +0 -36
  93. data/test/stripe/billing_portal/session_test.rb +0 -18
  94. data/test/stripe/capability_test.rb +0 -45
  95. data/test/stripe/charge_test.rb +0 -64
  96. data/test/stripe/checkout/session_test.rb +0 -53
  97. data/test/stripe/connection_manager_test.rb +0 -163
  98. data/test/stripe/country_spec_test.rb +0 -20
  99. data/test/stripe/coupon_test.rb +0 -61
  100. data/test/stripe/credit_note_test.rb +0 -90
  101. data/test/stripe/customer_balance_transaction_test.rb +0 -37
  102. data/test/stripe/customer_card_test.rb +0 -48
  103. data/test/stripe/customer_test.rb +0 -226
  104. data/test/stripe/dispute_test.rb +0 -51
  105. data/test/stripe/ephemeral_key_test.rb +0 -93
  106. data/test/stripe/errors_test.rb +0 -53
  107. data/test/stripe/exchange_rate_test.rb +0 -20
  108. data/test/stripe/file_link_test.rb +0 -41
  109. data/test/stripe/file_test.rb +0 -87
  110. data/test/stripe/instrumentation_test.rb +0 -74
  111. data/test/stripe/invoice_item_test.rb +0 -66
  112. data/test/stripe/invoice_line_item_test.rb +0 -8
  113. data/test/stripe/invoice_test.rb +0 -229
  114. data/test/stripe/issuing/authorization_test.rb +0 -72
  115. data/test/stripe/issuing/card_test.rb +0 -74
  116. data/test/stripe/issuing/cardholder_test.rb +0 -53
  117. data/test/stripe/issuing/dispute_test.rb +0 -54
  118. data/test/stripe/issuing/transaction_test.rb +0 -48
  119. data/test/stripe/list_object_test.rb +0 -202
  120. data/test/stripe/login_link_test.rb +0 -37
  121. data/test/stripe/mandate_test.rb +0 -14
  122. data/test/stripe/multipart_encoder_test.rb +0 -130
  123. data/test/stripe/oauth_test.rb +0 -104
  124. data/test/stripe/order_return_test.rb +0 -21
  125. data/test/stripe/order_test.rb +0 -82
  126. data/test/stripe/payment_intent_test.rb +0 -107
  127. data/test/stripe/payment_method_test.rb +0 -84
  128. data/test/stripe/payout_test.rb +0 -57
  129. data/test/stripe/person_test.rb +0 -46
  130. data/test/stripe/plan_test.rb +0 -98
  131. data/test/stripe/price_test.rb +0 -48
  132. data/test/stripe/product_test.rb +0 -58
  133. data/test/stripe/promotion_code_test.rb +0 -42
  134. data/test/stripe/radar/early_fraud_warning_test.rb +0 -22
  135. data/test/stripe/radar/value_list_item_test.rb +0 -48
  136. data/test/stripe/radar/value_list_test.rb +0 -61
  137. data/test/stripe/recipient_test.rb +0 -62
  138. data/test/stripe/refund_test.rb +0 -39
  139. data/test/stripe/reporting/report_run_test.rb +0 -33
  140. data/test/stripe/reporting/report_type_test.rb +0 -22
  141. data/test/stripe/reversal_test.rb +0 -43
  142. data/test/stripe/review_test.rb +0 -27
  143. data/test/stripe/setup_attempt_test.rb +0 -16
  144. data/test/stripe/setup_intent_test.rb +0 -84
  145. data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
  146. data/test/stripe/sku_test.rb +0 -60
  147. data/test/stripe/source_test.rb +0 -119
  148. data/test/stripe/stripe_client_test.rb +0 -1291
  149. data/test/stripe/stripe_configuration_test.rb +0 -128
  150. data/test/stripe/stripe_object_test.rb +0 -500
  151. data/test/stripe/stripe_response_test.rb +0 -95
  152. data/test/stripe/subscription_item_test.rb +0 -84
  153. data/test/stripe/subscription_schedule_test.rb +0 -82
  154. data/test/stripe/subscription_test.rb +0 -80
  155. data/test/stripe/tax_id_test.rb +0 -31
  156. data/test/stripe/tax_rate_test.rb +0 -43
  157. data/test/stripe/terminal/connection_token_test.rb +0 -16
  158. data/test/stripe/terminal/location_test.rb +0 -68
  159. data/test/stripe/terminal/reader_test.rb +0 -62
  160. data/test/stripe/three_d_secure_test.rb +0 -23
  161. data/test/stripe/topup_test.rb +0 -62
  162. data/test/stripe/transfer_test.rb +0 -88
  163. data/test/stripe/usage_record_summary_test.rb +0 -29
  164. data/test/stripe/util_test.rb +0 -402
  165. data/test/stripe/webhook_endpoint_test.rb +0 -59
  166. data/test/stripe/webhook_test.rb +0 -135
  167. data/test/stripe_mock.rb +0 -78
  168. data/test/stripe_test.rb +0 -119
  169. data/test/test_data.rb +0 -61
  170. data/test/test_helper.rb +0 -75
@@ -1,88 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../test_helper", __dir__)
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,29 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../test_helper", __dir__)
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
- old_stderr = $stderr
13
- $stderr = StringIO.new
14
-
15
- begin
16
- transactions = @sub_item.usage_record_summaries
17
-
18
- assert_requested :get, "#{Stripe.api_base}/v1/subscription_items/#{@sub_item.id}/usage_record_summaries"
19
- assert transactions.data.is_a?(Array)
20
- assert transactions.first.is_a?(Stripe::UsageRecordSummary)
21
-
22
- assert_include $stderr.string,
23
- "use SubscriptionItem.list_usage_record_summaries instead"
24
- ensure
25
- $stderr = old_stderr
26
- end
27
- end
28
- end
29
- end
@@ -1,402 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../test_helper", __dir__)
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
@@ -1,59 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../test_helper", __dir__)
4
-
5
- module Stripe
6
- class WebhookEndpointTest < Test::Unit::TestCase
7
- should "be listable" do
8
- webhook_endpoints = Stripe::WebhookEndpoint.list
9
- assert_requested :get, "#{Stripe.api_base}/v1/webhook_endpoints"
10
- assert webhook_endpoints.data.is_a?(Array)
11
- assert webhook_endpoints.first.is_a?(Stripe::WebhookEndpoint)
12
- end
13
-
14
- should "be retrievable" do
15
- webhook_endpoint = Stripe::WebhookEndpoint.retrieve("we_123")
16
- assert_requested :get, "#{Stripe.api_base}/v1/webhook_endpoints/we_123"
17
- assert webhook_endpoint.is_a?(Stripe::WebhookEndpoint)
18
- end
19
-
20
- should "be creatable" do
21
- webhook_endpoint = Stripe::WebhookEndpoint.create(
22
- enabled_events: ["charge.succeeded"],
23
- url: "https://stripe.com"
24
- )
25
- assert_requested :post, "#{Stripe.api_base}/v1/webhook_endpoints"
26
- assert webhook_endpoint.is_a?(Stripe::WebhookEndpoint)
27
- end
28
-
29
- should "be saveable" do
30
- webhook_endpoint = Stripe::WebhookEndpoint.retrieve("we_123")
31
- webhook_endpoint.enabled_events = ["charge.succeeded"]
32
- webhook_endpoint.save
33
- assert_requested :post, "#{Stripe.api_base}/v1/webhook_endpoints/#{webhook_endpoint.id}"
34
- end
35
-
36
- should "be updateable" do
37
- webhook_endpoint = Stripe::WebhookEndpoint.update("we_123", enabled_events: ["charge.succeeded"])
38
- assert_requested :post, "#{Stripe.api_base}/v1/webhook_endpoints/we_123"
39
- assert webhook_endpoint.is_a?(Stripe::WebhookEndpoint)
40
- end
41
-
42
- context "#delete" do
43
- should "be deletable" do
44
- webhook_endpoint = Stripe::WebhookEndpoint.retrieve("we_123")
45
- webhook_endpoint = webhook_endpoint.delete
46
- assert_requested :delete, "#{Stripe.api_base}/v1/webhook_endpoints/#{webhook_endpoint.id}"
47
- assert webhook_endpoint.is_a?(Stripe::WebhookEndpoint)
48
- end
49
- end
50
-
51
- context ".delete" do
52
- should "be deletable" do
53
- webhook_endpoint = Stripe::WebhookEndpoint.delete("we_123")
54
- assert_requested :delete, "#{Stripe.api_base}/v1/webhook_endpoints/we_123"
55
- assert webhook_endpoint.is_a?(Stripe::WebhookEndpoint)
56
- end
57
- end
58
- end
59
- end