stripe 4.10.0 → 5.55.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (258) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +316 -1
  3. data/CODE_OF_CONDUCT.md +77 -0
  4. data/Gemfile +10 -14
  5. data/Makefile +7 -0
  6. data/README.md +186 -62
  7. data/Rakefile +8 -7
  8. data/VERSION +1 -1
  9. data/lib/stripe/api_operations/create.rb +1 -1
  10. data/lib/stripe/api_operations/delete.rb +28 -2
  11. data/lib/stripe/api_operations/list.rb +1 -12
  12. data/lib/stripe/api_operations/nested_resource.rb +38 -28
  13. data/lib/stripe/api_operations/request.rb +81 -9
  14. data/lib/stripe/api_operations/save.rb +8 -7
  15. data/lib/stripe/api_operations/search.rb +19 -0
  16. data/lib/stripe/api_resource.rb +45 -3
  17. data/lib/stripe/api_resource_test_helpers.rb +47 -0
  18. data/lib/stripe/connection_manager.rb +200 -0
  19. data/lib/stripe/error_object.rb +93 -0
  20. data/lib/stripe/errors.rb +31 -10
  21. data/lib/stripe/instrumentation.rb +84 -0
  22. data/lib/stripe/list_object.rb +41 -7
  23. data/lib/stripe/multipart_encoder.rb +131 -0
  24. data/lib/stripe/oauth.rb +8 -6
  25. data/lib/stripe/object_types.rb +119 -0
  26. data/lib/stripe/{account.rb → resources/account.rb} +48 -30
  27. data/lib/stripe/{account_link.rb → resources/account_link.rb} +2 -1
  28. data/lib/stripe/resources/alipay_account.rb +34 -0
  29. data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +2 -1
  30. data/lib/stripe/resources/application_fee.rb +14 -0
  31. data/lib/stripe/resources/application_fee_refund.rb +31 -0
  32. data/lib/stripe/{balance.rb → resources/balance.rb} +2 -1
  33. data/lib/stripe/{balance_transaction.rb → resources/balance_transaction.rb} +2 -5
  34. data/lib/stripe/resources/bank_account.rb +43 -0
  35. data/lib/stripe/{issuing/dispute.rb → resources/billing_portal/configuration.rb} +4 -3
  36. data/lib/stripe/resources/billing_portal/session.rb +12 -0
  37. data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +4 -3
  38. data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
  39. data/lib/stripe/resources/capability.rb +34 -0
  40. data/lib/stripe/{card.rb → resources/card.rb} +13 -4
  41. data/lib/stripe/resources/cash_balance.rb +22 -0
  42. data/lib/stripe/resources/charge.rb +32 -0
  43. data/lib/stripe/resources/checkout/session.rb +27 -0
  44. data/lib/stripe/{country_spec.rb → resources/country_spec.rb} +2 -1
  45. data/lib/stripe/{coupon.rb → resources/coupon.rb} +3 -2
  46. data/lib/stripe/resources/credit_note.rb +33 -0
  47. data/lib/stripe/resources/credit_note_line_item.rb +8 -0
  48. data/lib/stripe/resources/customer.rb +74 -0
  49. data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
  50. data/lib/stripe/resources/discount.rb +8 -0
  51. data/lib/stripe/resources/dispute.rb +22 -0
  52. data/lib/stripe/{ephemeral_key.rb → resources/ephemeral_key.rb} +6 -2
  53. data/lib/stripe/{event.rb → resources/event.rb} +2 -1
  54. data/lib/stripe/{exchange_rate.rb → resources/exchange_rate.rb} +2 -1
  55. data/lib/stripe/resources/file.rb +36 -0
  56. data/lib/stripe/{file_link.rb → resources/file_link.rb} +3 -2
  57. data/lib/stripe/resources/financial_connections/account.rb +31 -0
  58. data/lib/stripe/resources/financial_connections/account_owner.rb +10 -0
  59. data/lib/stripe/resources/financial_connections/account_ownership.rb +10 -0
  60. data/lib/stripe/resources/financial_connections/session.rb +12 -0
  61. data/lib/stripe/resources/funding_instructions.rb +16 -0
  62. data/lib/stripe/resources/identity/verification_report.rb +12 -0
  63. data/lib/stripe/resources/identity/verification_session.rb +35 -0
  64. data/lib/stripe/resources/invoice.rb +83 -0
  65. data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +3 -2
  66. data/lib/stripe/{invoice_line_item.rb → resources/invoice_line_item.rb} +2 -1
  67. data/lib/stripe/resources/issuing/authorization.rb +34 -0
  68. data/lib/stripe/resources/issuing/card.rb +25 -0
  69. data/lib/stripe/resources/issuing/card_details.rb +10 -0
  70. data/lib/stripe/{issuing → resources/issuing}/cardholder.rb +3 -2
  71. data/lib/stripe/resources/issuing/dispute.rb +25 -0
  72. data/lib/stripe/{issuing → resources/issuing}/transaction.rb +3 -2
  73. data/lib/stripe/resources/line_item.rb +8 -0
  74. data/lib/stripe/resources/login_link.rb +15 -0
  75. data/lib/stripe/resources/mandate.rb +8 -0
  76. data/lib/stripe/resources/order.rb +33 -0
  77. data/lib/stripe/{order_return.rb → resources/order_return.rb} +2 -1
  78. data/lib/stripe/resources/payment_intent.rb +82 -0
  79. data/lib/stripe/resources/payment_link.rb +23 -0
  80. data/lib/stripe/resources/payment_method.rb +33 -0
  81. data/lib/stripe/resources/payout.rb +33 -0
  82. data/lib/stripe/{person.rb → resources/person.rb} +9 -3
  83. data/lib/stripe/{plan.rb → resources/plan.rb} +2 -1
  84. data/lib/stripe/resources/price.rb +21 -0
  85. data/lib/stripe/resources/product.rb +22 -0
  86. data/lib/stripe/resources/promotion_code.rb +12 -0
  87. data/lib/stripe/resources/quote.rb +105 -0
  88. data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
  89. data/lib/stripe/{radar → resources/radar}/value_list.rb +3 -2
  90. data/lib/stripe/{radar → resources/radar}/value_list_item.rb +3 -2
  91. data/lib/stripe/{recipient.rb → resources/recipient.rb} +3 -6
  92. data/lib/stripe/{recipient_transfer.rb → resources/recipient_transfer.rb} +1 -1
  93. data/lib/stripe/resources/refund.rb +42 -0
  94. data/lib/stripe/{reporting → resources/reporting}/report_run.rb +3 -2
  95. data/lib/stripe/{reporting → resources/reporting}/report_type.rb +3 -2
  96. data/lib/stripe/resources/reversal.rb +30 -0
  97. data/lib/stripe/resources/review.rb +21 -0
  98. data/lib/stripe/resources/setup_attempt.rb +10 -0
  99. data/lib/stripe/resources/setup_intent.rb +43 -0
  100. data/lib/stripe/{product.rb → resources/shipping_rate.rb} +4 -4
  101. data/lib/stripe/{sigma → resources/sigma}/scheduled_query_run.rb +3 -2
  102. data/lib/stripe/{sku.rb → resources/sku.rb} +4 -3
  103. data/lib/stripe/resources/source.rb +47 -0
  104. data/lib/stripe/{source_transaction.rb → resources/source_transaction.rb} +2 -1
  105. data/lib/stripe/resources/subscription.rb +35 -0
  106. data/lib/stripe/resources/subscription_item.rb +26 -0
  107. data/lib/stripe/resources/subscription_schedule.rb +33 -0
  108. data/lib/stripe/resources/tax_code.rb +10 -0
  109. data/lib/stripe/resources/tax_id.rb +27 -0
  110. data/lib/stripe/{refund.rb → resources/tax_rate.rb} +3 -2
  111. data/lib/stripe/{terminal/reader.rb → resources/terminal/configuration.rb} +3 -2
  112. data/lib/stripe/resources/terminal/connection_token.rb +12 -0
  113. data/lib/stripe/{terminal → resources/terminal}/location.rb +3 -2
  114. data/lib/stripe/resources/terminal/reader.rb +75 -0
  115. data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
  116. data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +2 -1
  117. data/lib/stripe/{token.rb → resources/token.rb} +2 -1
  118. data/lib/stripe/resources/topup.rb +23 -0
  119. data/lib/stripe/resources/transfer.rb +27 -0
  120. data/lib/stripe/resources/usage_record.rb +8 -0
  121. data/lib/stripe/{usage_record_summary.rb → resources/usage_record_summary.rb} +2 -1
  122. data/lib/stripe/{webhook_endpoint.rb → resources/webhook_endpoint.rb} +3 -2
  123. data/lib/stripe/resources.rb +100 -0
  124. data/lib/stripe/search_result_object.rb +86 -0
  125. data/lib/stripe/singleton_api_resource.rb +3 -1
  126. data/lib/stripe/stripe_client.rb +661 -266
  127. data/lib/stripe/stripe_configuration.rb +194 -0
  128. data/lib/stripe/stripe_object.rb +80 -61
  129. data/lib/stripe/stripe_response.rb +87 -27
  130. data/lib/stripe/util.rb +128 -117
  131. data/lib/stripe/version.rb +1 -1
  132. data/lib/stripe/webhook.rb +43 -10
  133. data/lib/stripe.rb +46 -197
  134. data/stripe.gemspec +24 -8
  135. metadata +123 -283
  136. data/.gitattributes +0 -4
  137. data/.github/ISSUE_TEMPLATE.md +0 -5
  138. data/.gitignore +0 -8
  139. data/.rubocop.yml +0 -32
  140. data/.rubocop_todo.yml +0 -50
  141. data/.travis.yml +0 -42
  142. data/lib/stripe/alipay_account.rb +0 -27
  143. data/lib/stripe/application_fee.rb +0 -23
  144. data/lib/stripe/application_fee_refund.rb +0 -22
  145. data/lib/stripe/bank_account.rb +0 -32
  146. data/lib/stripe/bitcoin_transaction.rb +0 -15
  147. data/lib/stripe/charge.rb +0 -84
  148. data/lib/stripe/checkout/session.rb +0 -11
  149. data/lib/stripe/customer.rb +0 -90
  150. data/lib/stripe/dispute.rb +0 -19
  151. data/lib/stripe/file.rb +0 -37
  152. data/lib/stripe/invoice.rb +0 -48
  153. data/lib/stripe/issuer_fraud_record.rb +0 -9
  154. data/lib/stripe/issuing/authorization.rb +0 -22
  155. data/lib/stripe/issuing/card.rb +0 -18
  156. data/lib/stripe/issuing/card_details.rb +0 -9
  157. data/lib/stripe/login_link.rb +0 -11
  158. data/lib/stripe/order.rb +0 -31
  159. data/lib/stripe/payment_intent.rb +0 -26
  160. data/lib/stripe/payment_method.rb +0 -23
  161. data/lib/stripe/payout.rb +0 -20
  162. data/lib/stripe/reversal.rb +0 -22
  163. data/lib/stripe/review.rb +0 -14
  164. data/lib/stripe/source.rb +0 -38
  165. data/lib/stripe/subscription.rb +0 -25
  166. data/lib/stripe/subscription_item.rb +0 -17
  167. data/lib/stripe/subscription_schedule.rb +0 -32
  168. data/lib/stripe/subscription_schedule_revision.rb +0 -25
  169. data/lib/stripe/terminal/connection_token.rb +0 -11
  170. data/lib/stripe/topup.rb +0 -16
  171. data/lib/stripe/transfer.rb +0 -23
  172. data/lib/stripe/usage_record.rb +0 -14
  173. data/test/api_stub_helpers.rb +0 -1
  174. data/test/openapi/README.md +0 -9
  175. data/test/stripe/account_external_accounts_operations_test.rb +0 -69
  176. data/test/stripe/account_link_test.rb +0 -18
  177. data/test/stripe/account_login_links_operations_test.rb +0 -21
  178. data/test/stripe/account_persons_operations_test.rb +0 -70
  179. data/test/stripe/account_test.rb +0 -256
  180. data/test/stripe/alipay_account_test.rb +0 -37
  181. data/test/stripe/api_operations_test.rb +0 -81
  182. data/test/stripe/api_resource_test.rb +0 -526
  183. data/test/stripe/apple_pay_domain_test.rb +0 -33
  184. data/test/stripe/application_fee_refund_test.rb +0 -37
  185. data/test/stripe/application_fee_refunds_operations_test.rb +0 -56
  186. data/test/stripe/application_fee_test.rb +0 -14
  187. data/test/stripe/balance_test.rb +0 -13
  188. data/test/stripe/bank_account_test.rb +0 -36
  189. data/test/stripe/charge_test.rb +0 -59
  190. data/test/stripe/checkout/session_test.rb +0 -41
  191. data/test/stripe/country_spec_test.rb +0 -20
  192. data/test/stripe/coupon_test.rb +0 -51
  193. data/test/stripe/customer_card_test.rb +0 -42
  194. data/test/stripe/customer_sources_operations_test.rb +0 -64
  195. data/test/stripe/customer_test.rb +0 -115
  196. data/test/stripe/dispute_test.rb +0 -42
  197. data/test/stripe/ephemeral_key_test.rb +0 -86
  198. data/test/stripe/errors_test.rb +0 -20
  199. data/test/stripe/exchange_rate_test.rb +0 -20
  200. data/test/stripe/file_link_test.rb +0 -41
  201. data/test/stripe/file_test.rb +0 -73
  202. data/test/stripe/file_upload_test.rb +0 -76
  203. data/test/stripe/invoice_item_test.rb +0 -55
  204. data/test/stripe/invoice_line_item_test.rb +0 -8
  205. data/test/stripe/invoice_test.rb +0 -161
  206. data/test/stripe/issuer_fraud_record_test.rb +0 -20
  207. data/test/stripe/issuing/authorization_test.rb +0 -50
  208. data/test/stripe/issuing/card_test.rb +0 -53
  209. data/test/stripe/issuing/cardholder_test.rb +0 -53
  210. data/test/stripe/issuing/dispute_test.rb +0 -45
  211. data/test/stripe/issuing/transaction_test.rb +0 -48
  212. data/test/stripe/list_object_test.rb +0 -156
  213. data/test/stripe/login_link_test.rb +0 -37
  214. data/test/stripe/oauth_test.rb +0 -88
  215. data/test/stripe/order_return_test.rb +0 -21
  216. data/test/stripe/order_test.rb +0 -57
  217. data/test/stripe/payment_intent_test.rb +0 -80
  218. data/test/stripe/payment_method_test.rb +0 -66
  219. data/test/stripe/payout_test.rb +0 -50
  220. data/test/stripe/person_test.rb +0 -46
  221. data/test/stripe/plan_test.rb +0 -92
  222. data/test/stripe/product_test.rb +0 -49
  223. data/test/stripe/radar/value_list_item_test.rb +0 -38
  224. data/test/stripe/radar/value_list_test.rb +0 -51
  225. data/test/stripe/recipient_test.rb +0 -49
  226. data/test/stripe/refund_test.rb +0 -39
  227. data/test/stripe/reporting/report_run_test.rb +0 -33
  228. data/test/stripe/reporting/report_type_test.rb +0 -22
  229. data/test/stripe/reversal_test.rb +0 -43
  230. data/test/stripe/review_test.rb +0 -27
  231. data/test/stripe/sigma/scheduled_query_run_test.rb +0 -22
  232. data/test/stripe/sku_test.rb +0 -50
  233. data/test/stripe/source_test.rb +0 -86
  234. data/test/stripe/source_transaction_test.rb +0 -19
  235. data/test/stripe/stripe_client_test.rb +0 -823
  236. data/test/stripe/stripe_object_test.rb +0 -525
  237. data/test/stripe/stripe_response_test.rb +0 -49
  238. data/test/stripe/subscription_item_test.rb +0 -53
  239. data/test/stripe/subscription_schedule_revision_test.rb +0 -37
  240. data/test/stripe/subscription_schedule_revisions_operations_test.rb +0 -35
  241. data/test/stripe/subscription_schedule_test.rb +0 -64
  242. data/test/stripe/subscription_test.rb +0 -60
  243. data/test/stripe/terminal/connection_token_test.rb +0 -16
  244. data/test/stripe/terminal/location_test.rb +0 -58
  245. data/test/stripe/terminal/reader_test.rb +0 -52
  246. data/test/stripe/three_d_secure_test.rb +0 -23
  247. data/test/stripe/topup_test.rb +0 -54
  248. data/test/stripe/transfer_reversals_operations_test.rb +0 -57
  249. data/test/stripe/transfer_test.rb +0 -43
  250. data/test/stripe/usage_record_summary_test.rb +0 -19
  251. data/test/stripe/usage_record_test.rb +0 -28
  252. data/test/stripe/util_test.rb +0 -402
  253. data/test/stripe/webhook_endpoint_test.rb +0 -42
  254. data/test/stripe/webhook_test.rb +0 -96
  255. data/test/stripe_mock.rb +0 -77
  256. data/test/stripe_test.rb +0 -63
  257. data/test/test_data.rb +0 -61
  258. data/test/test_helper.rb +0 -73
@@ -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
@@ -1,42 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../../test_helper", __FILE__)
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
- end
42
- end
@@ -1,96 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../../test_helper", __FILE__)
4
-
5
- module Stripe
6
- class WebhookTest < Test::Unit::TestCase
7
- EVENT_PAYLOAD = <<-PAYLOAD.freeze
8
- {
9
- "id": "evt_test_webhook",
10
- "object": "event"
11
- }
12
- PAYLOAD
13
- SECRET = "whsec_test_secret".freeze
14
-
15
- def generate_header(opts = {})
16
- opts[:timestamp] ||= Time.now.to_i
17
- opts[:payload] ||= EVENT_PAYLOAD
18
- opts[:secret] ||= SECRET
19
- opts[:scheme] ||= Stripe::Webhook::Signature::EXPECTED_SCHEME
20
- opts[:signature] ||= Stripe::Webhook::Signature.send(:compute_signature, "#{opts[:timestamp]}.#{opts[:payload]}", opts[:secret])
21
- "t=#{opts[:timestamp]},#{opts[:scheme]}=#{opts[:signature]}"
22
- end
23
-
24
- context ".construct_event" do
25
- should "return an Event instance from a valid JSON payload and valid signature header" do
26
- header = generate_header
27
- event = Stripe::Webhook.construct_event(EVENT_PAYLOAD, header, SECRET)
28
- assert event.is_a?(Stripe::Event)
29
- end
30
-
31
- should "raise a JSON::ParserError from an invalid JSON payload" do
32
- assert_raises JSON::ParserError do
33
- payload = "this is not valid JSON"
34
- header = generate_header(payload: payload)
35
- Stripe::Webhook.construct_event(payload, header, SECRET)
36
- end
37
- end
38
-
39
- should "raise a SignatureVerificationError from a valid JSON payload and an invalid signature header" do
40
- header = "bad_header"
41
- assert_raises Stripe::SignatureVerificationError do
42
- Stripe::Webhook.construct_event(EVENT_PAYLOAD, header, SECRET)
43
- end
44
- end
45
- end
46
-
47
- context ".verify_signature_header" do
48
- should "raise a SignatureVerificationError when the header does not have the expected format" do
49
- header = 'i\'m not even a real signature header'
50
- e = assert_raises(Stripe::SignatureVerificationError) do
51
- Stripe::Webhook::Signature.verify_header(EVENT_PAYLOAD, header, "secret")
52
- end
53
- assert_match("Unable to extract timestamp and signatures from header", e.message)
54
- end
55
-
56
- should "raise a SignatureVerificationError when there are no signatures with the expected scheme" do
57
- header = generate_header(scheme: "v0")
58
- e = assert_raises(Stripe::SignatureVerificationError) do
59
- Stripe::Webhook::Signature.verify_header(EVENT_PAYLOAD, header, "secret")
60
- end
61
- assert_match("No signatures found with expected scheme", e.message)
62
- end
63
-
64
- should "raise a SignatureVerificationError when there are no valid signatures for the payload" do
65
- header = generate_header(signature: "bad_signature")
66
- e = assert_raises(Stripe::SignatureVerificationError) do
67
- Stripe::Webhook::Signature.verify_header(EVENT_PAYLOAD, header, "secret")
68
- end
69
- assert_match("No signatures found matching the expected signature for payload", e.message)
70
- end
71
-
72
- should "raise a SignatureVerificationError when the timestamp is not within the tolerance" do
73
- header = generate_header(timestamp: Time.now.to_i - 15)
74
- e = assert_raises(Stripe::SignatureVerificationError) do
75
- Stripe::Webhook::Signature.verify_header(EVENT_PAYLOAD, header, SECRET, tolerance: 10)
76
- end
77
- assert_match("Timestamp outside the tolerance zone", e.message)
78
- end
79
-
80
- should "return true when the header contains a valid signature and the timestamp is within the tolerance" do
81
- header = generate_header
82
- assert(Stripe::Webhook::Signature.verify_header(EVENT_PAYLOAD, header, SECRET, tolerance: 10))
83
- end
84
-
85
- should "return true when the header contains at least one valid signature" do
86
- header = generate_header + ",v1=bad_signature"
87
- assert(Stripe::Webhook::Signature.verify_header(EVENT_PAYLOAD, header, SECRET, tolerance: 10))
88
- end
89
-
90
- should "return true when the header contains a valid signature and the timestamp is off but no tolerance is provided" do
91
- header = generate_header(timestamp: 12_345)
92
- assert(Stripe::Webhook::Signature.verify_header(EVENT_PAYLOAD, header, SECRET))
93
- end
94
- end
95
- end
96
- end
data/test/stripe_mock.rb DELETED
@@ -1,77 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Stripe
4
- class StripeMock
5
- include Singleton
6
-
7
- PATH_SPEC = "#{::File.dirname(__FILE__)}/openapi/spec3.json".freeze
8
- PATH_FIXTURES = "#{::File.dirname(__FILE__)}/openapi/fixtures3.json".freeze
9
-
10
- @pid = nil
11
- @port = -1
12
-
13
- # Starts stripe-mock, if necessary. Returns the port on which stripe-mock is listening.
14
- def self.start
15
- unless ::File.exist?(PATH_SPEC)
16
- port = ENV["STRIPE_MOCK_PORT"] || 12_111
17
- puts("No custom spec file found, assuming stripe-mock is already running on port #{port}")
18
- return port
19
- end
20
-
21
- unless @pid.nil?
22
- puts("stripe-mock already running on port #{@port}")
23
- return @port
24
- end
25
-
26
- puts("Starting stripe-mock...")
27
-
28
- @stdout, @child_stdout = ::IO.pipe
29
- @stderr, @child_stderr = ::IO.pipe
30
-
31
- @pid = ::Process.spawn(
32
- ["stripe-mock", "stripe-mock"],
33
- "-http-port",
34
- "0", # have stripe-mock select a port
35
- "-spec",
36
- PATH_SPEC,
37
- "-fixtures",
38
- PATH_FIXTURES,
39
- out: @child_stdout,
40
- err: @child_stderr
41
- )
42
-
43
- [@child_stdout, @child_stderr].each(&:close)
44
-
45
- # Look for port in "Listening for HTTP on port: 50602"
46
- buffer = ""
47
- loop do
48
- buffer += @stdout.readpartial(4096)
49
- if (matches = buffer.match(/ port: (\d+)/))
50
- @port = matches[1]
51
- break
52
- end
53
- sleep(0.1)
54
- end
55
-
56
- status = (::Process.wait2(@pid, ::Process::WNOHANG) || []).last
57
- if status.nil?
58
- puts("Started stripe-mock; PID = #{@pid}, port = #{@port}")
59
- else
60
- abort("stripe-mock terminated early: #{status}")
61
- end
62
-
63
- @port
64
- end
65
-
66
- # Stops stripe-mock, if necessary.
67
- def self.stop
68
- return if @pid.nil?
69
- puts("Stopping stripe-mock...")
70
- ::Process.kill(:SIGTERM, @pid)
71
- ::Process.waitpid2(@pid)
72
- @pid = nil
73
- @port = -1
74
- puts("Stopped stripe-mock")
75
- end
76
- end
77
- end
data/test/stripe_test.rb DELETED
@@ -1,63 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require ::File.expand_path("../test_helper", __FILE__)
4
-
5
- class StripeTest < Test::Unit::TestCase
6
- should "warn that #refresh_from is deprecated" do
7
- old_stderr = $stderr
8
- $stderr = StringIO.new
9
- begin
10
- Stripe.uri_encode({})
11
- message = "NOTE: Stripe.uri_encode is deprecated; use " \
12
- "Stripe::Util#encode_parameters instead"
13
- assert_match Regexp.new(message), $stderr.string
14
- ensure
15
- $stderr = old_stderr
16
- end
17
- end
18
-
19
- should "allow app_info to be configured" do
20
- begin
21
- old = Stripe.app_info
22
- Stripe.set_app_info(
23
- "MyAwesomePlugin",
24
- partner_id: "partner_1234",
25
- url: "https://myawesomeplugin.info",
26
- version: "1.2.34"
27
- )
28
- assert_equal({
29
- name: "MyAwesomePlugin",
30
- partner_id: "partner_1234",
31
- url: "https://myawesomeplugin.info",
32
- version: "1.2.34",
33
- }, Stripe.app_info)
34
- ensure
35
- Stripe.app_info = old
36
- end
37
- end
38
-
39
- should "allow ca_bundle_path to be configured" do
40
- begin
41
- old = Stripe.ca_bundle_path
42
- Stripe.ca_bundle_path = "path/to/ca/bundle"
43
- assert_equal "path/to/ca/bundle", Stripe.ca_bundle_path
44
- ensure
45
- Stripe.ca_bundle_path = old
46
- end
47
- end
48
-
49
- should "allow max_network_retries to be configured" do
50
- begin
51
- old = Stripe.max_network_retries
52
- Stripe.max_network_retries = 99
53
- assert_equal 99, Stripe.max_network_retries
54
- ensure
55
- Stripe.max_network_retries = old
56
- end
57
- end
58
-
59
- should "have default open and read timeouts" do
60
- assert_equal Stripe.open_timeout, 30
61
- assert_equal Stripe.read_timeout, 80
62
- end
63
- end