stripe 2.0.3 → 5.55.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (214) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1036 -0
  3. data/CODE_OF_CONDUCT.md +77 -0
  4. data/Gemfile +24 -23
  5. data/History.txt +1 -593
  6. data/Makefile +7 -0
  7. data/README.md +252 -53
  8. data/Rakefile +18 -24
  9. data/VERSION +1 -1
  10. data/bin/stripe-console +5 -3
  11. data/lib/stripe/api_operations/create.rb +4 -2
  12. data/lib/stripe/api_operations/delete.rb +31 -3
  13. data/lib/stripe/api_operations/list.rb +4 -13
  14. data/lib/stripe/api_operations/nested_resource.rb +73 -0
  15. data/lib/stripe/api_operations/request.rb +92 -10
  16. data/lib/stripe/api_operations/save.rb +25 -13
  17. data/lib/stripe/api_operations/search.rb +19 -0
  18. data/lib/stripe/api_resource.rb +55 -11
  19. data/lib/stripe/api_resource_test_helpers.rb +47 -0
  20. data/lib/stripe/connection_manager.rb +200 -0
  21. data/lib/stripe/error_object.rb +93 -0
  22. data/lib/stripe/errors.rb +98 -13
  23. data/lib/stripe/instrumentation.rb +84 -0
  24. data/lib/stripe/list_object.rb +55 -21
  25. data/lib/stripe/multipart_encoder.rb +131 -0
  26. data/lib/stripe/oauth.rb +65 -0
  27. data/lib/stripe/object_types.rb +119 -0
  28. data/lib/stripe/{account.rb → resources/account.rb} +75 -38
  29. data/lib/stripe/resources/account_link.rb +10 -0
  30. data/lib/stripe/resources/alipay_account.rb +34 -0
  31. data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +6 -1
  32. data/lib/stripe/resources/application_fee.rb +14 -0
  33. data/lib/stripe/resources/application_fee_refund.rb +31 -0
  34. data/lib/stripe/resources/balance.rb +8 -0
  35. data/lib/stripe/resources/balance_transaction.rb +10 -0
  36. data/lib/stripe/resources/bank_account.rb +43 -0
  37. data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
  38. data/lib/stripe/resources/billing_portal/session.rb +12 -0
  39. data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +8 -4
  40. data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
  41. data/lib/stripe/resources/capability.rb +34 -0
  42. data/lib/stripe/resources/card.rb +38 -0
  43. data/lib/stripe/resources/cash_balance.rb +22 -0
  44. data/lib/stripe/resources/charge.rb +32 -0
  45. data/lib/stripe/resources/checkout/session.rb +27 -0
  46. data/lib/stripe/resources/country_spec.rb +10 -0
  47. data/lib/stripe/{coupon.rb → resources/coupon.rb} +6 -1
  48. data/lib/stripe/resources/credit_note.rb +33 -0
  49. data/lib/stripe/resources/credit_note_line_item.rb +8 -0
  50. data/lib/stripe/resources/customer.rb +74 -0
  51. data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
  52. data/lib/stripe/resources/discount.rb +8 -0
  53. data/lib/stripe/resources/dispute.rb +22 -0
  54. data/lib/stripe/resources/ephemeral_key.rb +20 -0
  55. data/lib/stripe/resources/event.rb +10 -0
  56. data/lib/stripe/resources/exchange_rate.rb +10 -0
  57. data/lib/stripe/resources/file.rb +36 -0
  58. data/lib/stripe/resources/file_link.rb +12 -0
  59. data/lib/stripe/resources/financial_connections/account.rb +31 -0
  60. data/lib/stripe/resources/financial_connections/account_owner.rb +10 -0
  61. data/lib/stripe/resources/financial_connections/account_ownership.rb +10 -0
  62. data/lib/stripe/resources/financial_connections/session.rb +12 -0
  63. data/lib/stripe/resources/funding_instructions.rb +16 -0
  64. data/lib/stripe/resources/identity/verification_report.rb +12 -0
  65. data/lib/stripe/resources/identity/verification_session.rb +35 -0
  66. data/lib/stripe/resources/invoice.rb +83 -0
  67. data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +6 -1
  68. data/lib/stripe/resources/invoice_line_item.rb +8 -0
  69. data/lib/stripe/resources/issuing/authorization.rb +34 -0
  70. data/lib/stripe/resources/issuing/card.rb +25 -0
  71. data/lib/stripe/resources/issuing/card_details.rb +10 -0
  72. data/lib/stripe/resources/issuing/cardholder.rb +14 -0
  73. data/lib/stripe/resources/issuing/dispute.rb +25 -0
  74. data/lib/stripe/resources/issuing/transaction.rb +13 -0
  75. data/lib/stripe/resources/line_item.rb +8 -0
  76. data/lib/stripe/resources/login_link.rb +15 -0
  77. data/lib/stripe/resources/mandate.rb +8 -0
  78. data/lib/stripe/resources/order.rb +33 -0
  79. data/lib/stripe/resources/order_return.rb +10 -0
  80. data/lib/stripe/resources/payment_intent.rb +82 -0
  81. data/lib/stripe/resources/payment_link.rb +23 -0
  82. data/lib/stripe/resources/payment_method.rb +33 -0
  83. data/lib/stripe/resources/payout.rb +33 -0
  84. data/lib/stripe/resources/person.rb +32 -0
  85. data/lib/stripe/{plan.rb → resources/plan.rb} +5 -0
  86. data/lib/stripe/resources/price.rb +21 -0
  87. data/lib/stripe/resources/product.rb +22 -0
  88. data/lib/stripe/resources/promotion_code.rb +12 -0
  89. data/lib/stripe/resources/quote.rb +105 -0
  90. data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
  91. data/lib/stripe/resources/radar/value_list.rb +15 -0
  92. data/lib/stripe/resources/radar/value_list_item.rb +14 -0
  93. data/lib/stripe/resources/recipient.rb +14 -0
  94. data/lib/stripe/resources/recipient_transfer.rb +7 -0
  95. data/lib/stripe/resources/refund.rb +42 -0
  96. data/lib/stripe/resources/reporting/report_run.rb +13 -0
  97. data/lib/stripe/resources/reporting/report_type.rb +13 -0
  98. data/lib/stripe/resources/reversal.rb +30 -0
  99. data/lib/stripe/resources/review.rb +21 -0
  100. data/lib/stripe/resources/setup_attempt.rb +10 -0
  101. data/lib/stripe/resources/setup_intent.rb +43 -0
  102. data/lib/stripe/resources/shipping_rate.rb +12 -0
  103. data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
  104. data/lib/stripe/{sku.rb → resources/sku.rb} +7 -2
  105. data/lib/stripe/resources/source.rb +47 -0
  106. data/lib/stripe/resources/source_transaction.rb +8 -0
  107. data/lib/stripe/resources/subscription.rb +35 -0
  108. data/lib/stripe/resources/subscription_item.rb +26 -0
  109. data/lib/stripe/resources/subscription_schedule.rb +33 -0
  110. data/lib/stripe/resources/tax_code.rb +10 -0
  111. data/lib/stripe/resources/tax_id.rb +27 -0
  112. data/lib/stripe/{product.rb → resources/tax_rate.rb} +7 -3
  113. data/lib/stripe/resources/terminal/configuration.rb +15 -0
  114. data/lib/stripe/resources/terminal/connection_token.rb +12 -0
  115. data/lib/stripe/resources/terminal/location.rb +15 -0
  116. data/lib/stripe/resources/terminal/reader.rb +75 -0
  117. data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
  118. data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +5 -0
  119. data/lib/stripe/resources/token.rb +10 -0
  120. data/lib/stripe/resources/topup.rb +23 -0
  121. data/lib/stripe/resources/transfer.rb +27 -0
  122. data/lib/stripe/resources/usage_record.rb +8 -0
  123. data/lib/stripe/resources/usage_record_summary.rb +8 -0
  124. data/lib/stripe/{recipient.rb → resources/webhook_endpoint.rb} +6 -5
  125. data/lib/stripe/resources.rb +100 -0
  126. data/lib/stripe/search_result_object.rb +86 -0
  127. data/lib/stripe/singleton_api_resource.rb +10 -4
  128. data/lib/stripe/stripe_client.rb +886 -223
  129. data/lib/stripe/stripe_configuration.rb +194 -0
  130. data/lib/stripe/stripe_object.rb +301 -132
  131. data/lib/stripe/stripe_response.rb +89 -27
  132. data/lib/stripe/util.rb +272 -122
  133. data/lib/stripe/version.rb +3 -1
  134. data/lib/stripe/webhook.rb +121 -0
  135. data/lib/stripe.rb +94 -116
  136. data/stripe.gemspec +35 -16
  137. metadata +127 -156
  138. data/.gitattributes +0 -4
  139. data/.github/ISSUE_TEMPLATE.md +0 -5
  140. data/.gitignore +0 -5
  141. data/.travis.yml +0 -15
  142. data/lib/stripe/alipay_account.rb +0 -20
  143. data/lib/stripe/application_fee.rb +0 -20
  144. data/lib/stripe/application_fee_refund.rb +0 -18
  145. data/lib/stripe/balance.rb +0 -4
  146. data/lib/stripe/balance_transaction.rb +0 -9
  147. data/lib/stripe/bank_account.rb +0 -28
  148. data/lib/stripe/bitcoin_transaction.rb +0 -9
  149. data/lib/stripe/card.rb +0 -25
  150. data/lib/stripe/charge.rb +0 -80
  151. data/lib/stripe/country_spec.rb +0 -9
  152. data/lib/stripe/customer.rb +0 -77
  153. data/lib/stripe/dispute.rb +0 -15
  154. data/lib/stripe/event.rb +0 -5
  155. data/lib/stripe/file_upload.rb +0 -31
  156. data/lib/stripe/invoice.rb +0 -27
  157. data/lib/stripe/order.rb +0 -27
  158. data/lib/stripe/order_return.rb +0 -9
  159. data/lib/stripe/refund.rb +0 -7
  160. data/lib/stripe/reversal.rb +0 -18
  161. data/lib/stripe/source.rb +0 -11
  162. data/lib/stripe/subscription.rb +0 -31
  163. data/lib/stripe/subscription_item.rb +0 -12
  164. data/lib/stripe/token.rb +0 -5
  165. data/lib/stripe/transfer.rb +0 -16
  166. data/openapi/fixtures.json +0 -1383
  167. data/openapi/fixtures.yaml +0 -1130
  168. data/openapi/spec.json +0 -19749
  169. data/openapi/spec.yaml +0 -15359
  170. data/test/api_fixtures.rb +0 -29
  171. data/test/api_stub_helpers.rb +0 -125
  172. data/test/stripe/account_test.rb +0 -204
  173. data/test/stripe/alipay_account_test.rb +0 -19
  174. data/test/stripe/api_operations_test.rb +0 -31
  175. data/test/stripe/api_resource_test.rb +0 -496
  176. data/test/stripe/apple_pay_domain_test.rb +0 -33
  177. data/test/stripe/application_fee_refund_test.rb +0 -38
  178. data/test/stripe/application_fee_test.rb +0 -14
  179. data/test/stripe/balance_test.rb +0 -11
  180. data/test/stripe/bank_account_test.rb +0 -41
  181. data/test/stripe/bitcoin_receiver_test.rb +0 -70
  182. data/test/stripe/bitcoin_transaction_test.rb +0 -21
  183. data/test/stripe/charge_test.rb +0 -59
  184. data/test/stripe/country_spec_test.rb +0 -20
  185. data/test/stripe/coupon_test.rb +0 -44
  186. data/test/stripe/customer_card_test.rb +0 -42
  187. data/test/stripe/customer_test.rb +0 -116
  188. data/test/stripe/dispute_test.rb +0 -42
  189. data/test/stripe/errors_test.rb +0 -18
  190. data/test/stripe/file_upload_test.rb +0 -66
  191. data/test/stripe/invoice_item_test.rb +0 -55
  192. data/test/stripe/invoice_test.rb +0 -66
  193. data/test/stripe/list_object_test.rb +0 -170
  194. data/test/stripe/order_return_test.rb +0 -21
  195. data/test/stripe/order_test.rb +0 -59
  196. data/test/stripe/plan_test.rb +0 -52
  197. data/test/stripe/product_test.rb +0 -47
  198. data/test/stripe/recipient_card_test.rb +0 -40
  199. data/test/stripe/recipient_test.rb +0 -50
  200. data/test/stripe/refund_test.rb +0 -39
  201. data/test/stripe/reversal_test.rb +0 -43
  202. data/test/stripe/sku_test.rb +0 -50
  203. data/test/stripe/source_test.rb +0 -43
  204. data/test/stripe/stripe_client_test.rb +0 -440
  205. data/test/stripe/stripe_object_test.rb +0 -361
  206. data/test/stripe/stripe_response_test.rb +0 -46
  207. data/test/stripe/subscription_item_test.rb +0 -54
  208. data/test/stripe/subscription_test.rb +0 -60
  209. data/test/stripe/three_d_secure_test.rb +0 -23
  210. data/test/stripe/transfer_test.rb +0 -50
  211. data/test/stripe/util_test.rb +0 -149
  212. data/test/stripe_test.rb +0 -41
  213. data/test/test_data.rb +0 -59
  214. data/test/test_helper.rb +0 -41
@@ -1,361 +0,0 @@
1
- require File.expand_path('../../test_helper', __FILE__)
2
-
3
- module Stripe
4
- class StripeObjectTest < Test::Unit::TestCase
5
- should "implement #==" do
6
- obj1 = Stripe::StripeObject.construct_from({ :id => 1, :foo => "bar" })
7
- obj2 = Stripe::StripeObject.construct_from({ :id => 1, :foo => "bar" })
8
- obj3 = Stripe::StripeObject.construct_from({ :id => 1, :foo => "rab" })
9
-
10
- assert obj1 == obj2
11
- refute obj1 == obj3
12
- end
13
-
14
- should "implement #deleted?" do
15
- obj = Stripe::StripeObject.construct_from({})
16
- refute obj.deleted?
17
-
18
- obj = Stripe::StripeObject.construct_from({ :deleted => false })
19
- refute obj.deleted?
20
-
21
- obj = Stripe::StripeObject.construct_from({ :deleted => true })
22
- assert obj.deleted?
23
- end
24
-
25
- should "implement #respond_to" do
26
- obj = Stripe::StripeObject.construct_from({ :id => 1, :foo => 'bar' })
27
- assert obj.respond_to?(:id)
28
- assert obj.respond_to?(:foo)
29
- assert !obj.respond_to?(:baz)
30
- end
31
-
32
- should "marshal be insensitive to strings vs. symbols when constructin" do
33
- obj = Stripe::StripeObject.construct_from({ :id => 1, 'name' => 'Stripe' })
34
- assert_equal 1, obj[:id]
35
- assert_equal 'Stripe', obj[:name]
36
- end
37
-
38
- should "marshal a stripe object correctly" do
39
- obj = Stripe::StripeObject.construct_from(
40
- { :id => 1, :name => 'Stripe' },
41
- {
42
- :api_key => 'apikey',
43
- # StripeClient is not serializable and is expected to be removed
44
- # when marshalling StripeObjects
45
- :client => StripeClient.active_client,
46
- }
47
- )
48
- m = Marshal.load(Marshal.dump(obj))
49
- assert_equal 1, m.id
50
- assert_equal 'Stripe', m.name
51
- expected_hash = {:api_key => 'apikey'}
52
- assert_equal expected_hash, m.instance_variable_get('@opts')
53
- end
54
-
55
- should "recursively call to_hash on its values" do
56
- # deep nested hash (when contained in an array) or StripeObject
57
- nested_hash = { :id => 7, :foo => 'bar' }
58
- nested = Stripe::StripeObject.construct_from(nested_hash)
59
-
60
- obj = Stripe::StripeObject.construct_from({
61
- :id => 1,
62
- # simple hash that contains a StripeObject to help us test deep
63
- # recursion
64
- :nested => { :object => 'list', :data => [nested] },
65
- :list => [nested]
66
- })
67
-
68
- expected_hash = {
69
- :id => 1,
70
- :nested => { :object => 'list', :data => [nested_hash] },
71
- :list => [nested_hash]
72
- }
73
- assert_equal expected_hash, obj.to_hash
74
- end
75
-
76
- should "assign question mark accessors for booleans" do
77
- obj = Stripe::StripeObject.construct_from({ :id => 1, :bool => true, :not_bool => 'bar' })
78
- assert obj.respond_to?(:bool?)
79
- assert obj.bool?
80
- refute obj.respond_to?(:not_bool?)
81
- end
82
-
83
- should "mass assign values with #update_attributes" do
84
- obj = Stripe::StripeObject.construct_from({ :id => 1, :name => 'Stripe' })
85
- obj.update_attributes(:name => 'STRIPE')
86
- assert_equal "STRIPE", obj.name
87
-
88
- # unfortunately, we even assign unknown properties to duplicate the
89
- # behavior that we currently have via magic accessors with
90
- # method_missing
91
- obj.update_attributes(:unknown => 'foo')
92
- assert_equal "foo", obj.unknown
93
- end
94
-
95
- should "#update_attributes with a hash" do
96
- obj = Stripe::StripeObject.construct_from({})
97
- obj.update_attributes(:metadata => { :foo => 'bar' })
98
- assert_equal Stripe::StripeObject, obj.metadata.class
99
- end
100
-
101
- should "create accessors when #update_attributes is called" do
102
- obj = Stripe::StripeObject.construct_from({})
103
- assert_equal false, obj.send(:metaclass).method_defined?(:foo)
104
- obj.update_attributes(:foo => 'bar')
105
- assert_equal true, obj.send(:metaclass).method_defined?(:foo)
106
- end
107
-
108
- should "warn that #refresh_from is deprecated" do
109
- old_stderr = $stderr
110
- $stderr = StringIO.new
111
- begin
112
- obj = Stripe::StripeObject.construct_from({})
113
- obj.refresh_from({}, {})
114
- message = "NOTE: Stripe::StripeObject#refresh_from is " +
115
- "deprecated; use #update_attributes instead"
116
- assert_match Regexp.new(message), $stderr.string
117
- ensure
118
- $stderr = old_stderr
119
- end
120
- end
121
-
122
- should "pass opts down to children when initializing" do
123
- opts = { :custom => "opts" }
124
-
125
- # customer comes with a `sources` list that makes a convenient object to
126
- # perform tests on
127
- obj = Stripe::StripeObject.construct_from({
128
- sources: [
129
- {}
130
- ]
131
- }, opts)
132
-
133
- source = obj.sources.first
134
- # Pulling `@opts` as an instance variable here is not ideal, but it's
135
- # important enough argument that the test here is worth it. we should
136
- # consider exposing it publicly on a future pull (and possibly renaming
137
- # it to something more useful).
138
- assert_equal opts, source.instance_variable_get(:@opts)
139
- end
140
-
141
- should "#serialize_params on an empty object" do
142
- obj = Stripe::StripeObject.construct_from({})
143
- assert_equal({}, obj.serialize_params)
144
- end
145
-
146
- should "#serialize_params on a new object with a subobject" do
147
- obj = Stripe::StripeObject.new
148
- obj.metadata = { :foo => "bar" }
149
- assert_equal({ :metadata => { :foo => "bar" } },
150
- obj.serialize_params)
151
- end
152
-
153
- should "#serialize_params on a basic object" do
154
- obj = Stripe::StripeObject.construct_from({ :foo => nil })
155
- obj.update_attributes(:foo => "bar")
156
- assert_equal({ :foo => "bar" }, obj.serialize_params)
157
- end
158
-
159
- should "#serialize_params on a more complex object" do
160
- obj = Stripe::StripeObject.construct_from({
161
- :foo => Stripe::StripeObject.construct_from({
162
- :bar => nil,
163
- :baz => nil,
164
- }),
165
- })
166
- obj.foo.bar = "newbar"
167
- assert_equal({ :foo => { :bar => "newbar" } },
168
- obj.serialize_params)
169
- end
170
-
171
- should "#serialize_params on an array" do
172
- obj = Stripe::StripeObject.construct_from({
173
- :foo => nil,
174
- })
175
- obj.foo = ["new-value"]
176
- assert_equal({ :foo => ["new-value"] },
177
- obj.serialize_params)
178
- end
179
-
180
- should "#serialize_params on an array that shortens" do
181
- obj = Stripe::StripeObject.construct_from({
182
- :foo => ["0-index", "1-index", "2-index"],
183
- })
184
- obj.foo = ["new-value"]
185
- assert_equal({ :foo => ["new-value"] },
186
- obj.serialize_params)
187
- end
188
-
189
- should "#serialize_params on an array that lengthens" do
190
- obj = Stripe::StripeObject.construct_from({
191
- :foo => ["0-index", "1-index", "2-index"],
192
- })
193
- obj.foo = ["new-value"] * 4
194
- assert_equal({ :foo => ["new-value"] * 4 },
195
- obj.serialize_params)
196
- end
197
-
198
- should "#serialize_params on an array of hashes" do
199
- obj = Stripe::StripeObject.construct_from({
200
- :foo => nil,
201
- })
202
- obj.foo = [
203
- Stripe::StripeObject.construct_from({
204
- :bar => nil
205
- })
206
- ]
207
- obj.foo[0].bar = "baz"
208
- assert_equal({ :foo => [{ :bar => "baz" }] },
209
- obj.serialize_params)
210
- end
211
-
212
- should "#serialize_params doesn't include unchanged values" do
213
- obj = Stripe::StripeObject.construct_from({ :foo => nil })
214
- assert_equal({}, obj.serialize_params)
215
- end
216
-
217
- should "#serialize_params on an array that is unchanged" do
218
- obj = Stripe::StripeObject.construct_from({
219
- :foo => ["0-index", "1-index", "2-index"],
220
- })
221
- obj.foo = ["0-index", "1-index", "2-index"]
222
- assert_equal({}, obj.serialize_params)
223
- end
224
-
225
- should "#serialize_params with a StripeObject" do
226
- obj = Stripe::StripeObject.construct_from({})
227
-
228
- # using an #update_attributes will end up converting a Hash into a
229
- # StripeObject
230
- obj.metadata =
231
- Stripe::StripeObject.construct_from({ :foo => 'bar' })
232
-
233
- serialized = obj.serialize_params
234
- assert_equal({ :foo => "bar" }, serialized[:metadata])
235
- end
236
-
237
- should "#serialize_params with a StripeObject that's been replaced" do
238
- obj = Stripe::StripeObject.construct_from({
239
- :metadata => Stripe::StripeObject.construct_from({ :bar => 'foo' })
240
- })
241
-
242
- # Here we replace the object wholesale which means that the client must
243
- # be able to blank out the values that were in the old object, but which
244
- # are no longer present in the new one.
245
- obj.metadata =
246
- Stripe::StripeObject.construct_from({ :baz => 'foo' })
247
-
248
- serialized = obj.serialize_params
249
- assert_equal({ :bar => "", :baz => 'foo' }, serialized[:metadata])
250
- end
251
-
252
- should "#serialize_params with an array of StripeObjects" do
253
- obj = Stripe::StripeObject.construct_from({})
254
- obj.metadata = [
255
- Stripe::StripeObject.construct_from({ :foo => 'bar' })
256
- ]
257
-
258
- serialized = obj.serialize_params
259
- assert_equal([{ :foo => "bar" }], serialized[:metadata])
260
- end
261
-
262
- should "#serialize_params and remove embedded APIResources" do
263
- obj = Stripe::StripeObject.construct_from({
264
- :customer => Customer.construct_from({})
265
- })
266
-
267
- serialized = obj.serialize_params
268
- assert_equal({}, serialized)
269
- end
270
-
271
- should "#serialize_params and remove embedded APIResources unless flagged with save_with_parent" do
272
- c = Customer.construct_from({})
273
- c.save_with_parent = true
274
-
275
- obj = Stripe::StripeObject.construct_from({
276
- :customer => c,
277
- })
278
-
279
- serialized = obj.serialize_params
280
- assert_equal({ :customer => {} }, serialized)
281
- end
282
-
283
- should "#serialize_params takes a force option" do
284
- obj = Stripe::StripeObject.construct_from({
285
- :id => 'id',
286
- :metadata => Stripe::StripeObject.construct_from({ :foo => 'bar' })
287
- })
288
-
289
- serialized = obj.serialize_params(:force => true)
290
- assert_equal({ :id => 'id', :metadata => { :foo => 'bar' } }, serialized)
291
- end
292
-
293
- should "#dirty! forces an object and its subobjects to be saved" do
294
- obj = Stripe::StripeObject.construct_from({
295
- :id => 'id',
296
- :metadata => Stripe::StripeObject.construct_from({ :foo => 'bar' })
297
- })
298
-
299
- # note that `force` and `dirty!` are for different things, but are
300
- # functionally equivalent
301
- obj.dirty!
302
-
303
- serialized = obj.serialize_params
304
- assert_equal({ :id => 'id', :metadata => { :foo => 'bar' } }, serialized)
305
- end
306
-
307
- should "#to_s will call to_s for all embedded stripe objects" do
308
- obj = Stripe::StripeObject.construct_from({
309
- id: 'id',
310
- #embeded list object
311
- refunds: Stripe::ListObject.construct_from({ data: [
312
- #embedded object in list
313
- Stripe::StripeObject.construct_from({
314
- id: 'id',
315
- #embedded object in an object in a list object
316
- metadata: Stripe::StripeObject.construct_from({
317
- foo: 'bar',
318
- })
319
- })
320
- ]}),
321
- # embeded stripe object
322
- metadata: Stripe::StripeObject.construct_from({
323
- foo: 'bar',
324
- })
325
- })
326
- expected = JSON.pretty_generate({
327
- id: 'id',
328
- refunds: {
329
- data: [
330
- {id: 'id', metadata: {foo: 'bar'}}
331
- ]
332
- },
333
- metadata: { foo: 'bar' }
334
- })
335
-
336
- assert_equal(expected, obj.to_s)
337
- end
338
-
339
- should "warn that .serialize_params is deprecated" do
340
- old_stderr = $stderr
341
- $stderr = StringIO.new
342
- begin
343
- obj = Stripe::StripeObject.construct_from({})
344
- Stripe::StripeObject.serialize_params(obj)
345
- message = "NOTE: Stripe::StripeObject.serialize_params is " +
346
- "deprecated; use #serialize_params instead"
347
- assert_match Regexp.new(message), $stderr.string
348
- ensure
349
- $stderr = old_stderr
350
- end
351
- end
352
-
353
- should "error on setting a property to an empty string" do
354
- obj = Stripe::StripeObject.construct_from({ :foo => 'bar' })
355
- e = assert_raises ArgumentError do
356
- obj.foo = ""
357
- end
358
- assert_match %r{\(object\).foo = nil}, e.message
359
- end
360
- end
361
- end
@@ -1,46 +0,0 @@
1
- require File.expand_path('../../test_helper', __FILE__)
2
-
3
- module Stripe
4
- class StripeResponseTest < Test::Unit::TestCase
5
- context ".from_faraday_hash" do
6
- should "converts to StripeResponse" do
7
- body = '{"foo": "bar"}'
8
- headers = { "Request-Id" => "request-id" }
9
-
10
- http_resp = {
11
- body: body,
12
- headers: headers,
13
- status: 200,
14
- }
15
-
16
- resp = StripeResponse.from_faraday_hash(http_resp)
17
-
18
- assert_equal JSON.parse(body, symbolize_names: true), resp.data
19
- assert_equal body, resp.http_body
20
- assert_equal headers, resp.http_headers
21
- assert_equal 200, resp.http_status
22
- assert_equal "request-id", resp.request_id
23
- end
24
- end
25
-
26
- context ".from_faraday_response" do
27
- should "converts to StripeResponse" do
28
- body = '{"foo": "bar"}'
29
- headers = { "Request-Id" => "request-id" }
30
-
31
- env = Faraday::Env.from(
32
- :status => 200, :body => body,
33
- :response_headers => headers)
34
- http_resp = Faraday::Response.new(env)
35
-
36
- resp = StripeResponse.from_faraday_response(http_resp)
37
-
38
- assert_equal JSON.parse(body, symbolize_names: true), resp.data
39
- assert_equal body, resp.http_body
40
- assert_equal headers, resp.http_headers
41
- assert_equal 200, resp.http_status
42
- assert_equal "request-id", resp.request_id
43
- end
44
- end
45
- end
46
- end
@@ -1,54 +0,0 @@
1
- require File.expand_path('../../test_helper', __FILE__)
2
-
3
- module Stripe
4
- class SubscriptionItemTest < Test::Unit::TestCase
5
- FIXTURE = API_FIXTURES.fetch(:subscription_item)
6
-
7
- should "be listable" do
8
- items = Stripe::SubscriptionItem.list(
9
- subscription: API_FIXTURES.fetch(:subscription)[:id]
10
- )
11
- assert_requested :get, "#{Stripe.api_base}/v1/subscription_items",
12
- query: { subscription: API_FIXTURES.fetch(:subscription)[:id] }
13
- assert items.data.kind_of?(Array)
14
- assert items.data[0].kind_of?(Stripe::SubscriptionItem)
15
- end
16
-
17
- should "be retrievable" do
18
- item = Stripe::SubscriptionItem.retrieve(FIXTURE[:id])
19
- assert_requested :get, "#{Stripe.api_base}/v1/subscription_items/#{FIXTURE[:id]}"
20
- assert item.kind_of?(Stripe::SubscriptionItem)
21
- end
22
-
23
- should "be creatable" do
24
- item = Stripe::SubscriptionItem.create(
25
- item: 'silver',
26
- plan: API_FIXTURES.fetch(:plan)[:id],
27
- quantity: 3,
28
- subscription: API_FIXTURES.fetch(:subscription)[:id]
29
- )
30
- assert_requested :post, "#{Stripe.api_base}/v1/subscription_items"
31
- assert item.kind_of?(Stripe::SubscriptionItem)
32
- end
33
-
34
- should "be saveable" do
35
- item = Stripe::SubscriptionItem.retrieve(FIXTURE[:id])
36
- item.quantity = 4
37
- item.save
38
- assert_requested :post, "#{Stripe.api_base}/v1/subscription_items/#{FIXTURE[:id]}"
39
- end
40
-
41
- should "be updateable" do
42
- item = Stripe::SubscriptionItem.update(FIXTURE[:id], metadata: {foo: 'bar'})
43
- assert_requested :post, "#{Stripe.api_base}/v1/subscription_items/#{FIXTURE[:id]}"
44
- assert item.kind_of?(Stripe::SubscriptionItem)
45
- end
46
-
47
- should "be deletable" do
48
- item = Stripe::SubscriptionItem.retrieve(FIXTURE[:id])
49
- item = item.delete
50
- assert_requested :delete, "#{Stripe.api_base}/v1/subscription_items/#{FIXTURE[:id]}"
51
- assert item.kind_of?(Stripe::SubscriptionItem)
52
- end
53
- end
54
- end
@@ -1,60 +0,0 @@
1
- require File.expand_path('../../test_helper', __FILE__)
2
-
3
- module Stripe
4
- class SubscriptionTest < Test::Unit::TestCase
5
- FIXTURE = API_FIXTURES.fetch(:subscription)
6
-
7
- should "be listable" do
8
- subscriptions = Stripe::Subscription.list
9
- assert_requested :get, "#{Stripe.api_base}/v1/subscriptions"
10
- assert subscriptions.data.kind_of?(Array)
11
- assert subscriptions.data[0].kind_of?(Stripe::Subscription)
12
- end
13
-
14
- should "be retrievable" do
15
- subscription = Stripe::Subscription.retrieve(FIXTURE[:id])
16
- assert_requested :get,
17
- "#{Stripe.api_base}/v1/subscriptions/#{FIXTURE[:id]}"
18
- assert subscription.kind_of?(Stripe::Subscription)
19
- end
20
-
21
- should "be creatable" do
22
- subscription = Stripe::Subscription.create(
23
- customer: API_FIXTURES.fetch(:customer)[:id]
24
- )
25
- assert_requested :post, "#{Stripe.api_base}/v1/subscriptions"
26
- assert subscription.kind_of?(Stripe::Subscription)
27
- end
28
-
29
- should "be saveable" do
30
- subscription = Stripe::Subscription.retrieve(FIXTURE[:id])
31
- subscription.metadata['key'] = 'value'
32
- subscription.save
33
- assert_requested :post,
34
- "#{Stripe.api_base}/v1/subscriptions/#{FIXTURE[:id]}"
35
- end
36
-
37
- should "be updateable" do
38
- subscription = Stripe::Subscription.update(FIXTURE[:id], metadata: {foo: 'bar'})
39
- assert_requested :post,
40
- "#{Stripe.api_base}/v1/subscriptions/#{FIXTURE[:id]}"
41
- assert subscription.kind_of?(Stripe::Subscription)
42
- end
43
-
44
- should "be deletable" do
45
- subscription = Stripe::Subscription.retrieve(FIXTURE[:id])
46
- subscription = subscription.delete
47
- assert_requested :delete,
48
- "#{Stripe.api_base}/v1/subscriptions/#{FIXTURE[:id]}"
49
- assert subscription.kind_of?(Stripe::Subscription)
50
- end
51
-
52
- context "#delete_discount" do
53
- should "be able to delete a subscriptions's discount" do
54
- subscription = Stripe::Subscription.retrieve(FIXTURE[:id])
55
- subscription = subscription.delete_discount
56
- assert subscription.kind_of?(Stripe::Subscription)
57
- end
58
- end
59
- end
60
- end
@@ -1,23 +0,0 @@
1
- require File.expand_path('../../test_helper', __FILE__)
2
-
3
- module Stripe
4
- class ThreeDSecureTest < Test::Unit::TestCase
5
- FIXTURE = API_FIXTURES.fetch(:three_d_secure)
6
-
7
- should "be retrievable" do
8
- secure = Stripe::ThreeDSecure.retrieve(FIXTURE[:id])
9
- assert_requested :get, "#{Stripe.api_base}/v1/3d_secure/#{FIXTURE[:id]}"
10
- assert secure.kind_of?(Stripe::ThreeDSecure)
11
- end
12
-
13
- should "be creatable" do
14
- _ = Stripe::ThreeDSecure.create(
15
- card: API_FIXTURES.fetch(:token)[:id],
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
@@ -1,50 +0,0 @@
1
- require File.expand_path('../../test_helper', __FILE__)
2
-
3
- module Stripe
4
- class TransferTest < Test::Unit::TestCase
5
- FIXTURE = API_FIXTURES.fetch(:transfer)
6
-
7
- should "be listable" do
8
- transfers = Stripe::Transfer.list
9
- assert_requested :get, "#{Stripe.api_base}/v1/transfers"
10
- assert transfers.data.kind_of?(Array)
11
- assert transfers.data[0].kind_of?(Stripe::Transfer)
12
- end
13
-
14
- should "be retrievable" do
15
- transfer = Stripe::Transfer.retrieve(FIXTURE[:id])
16
- assert_requested :get, "#{Stripe.api_base}/v1/transfers/#{FIXTURE[:id]}"
17
- assert transfer.kind_of?(Stripe::Transfer)
18
- end
19
-
20
- should "be creatable" do
21
- transfer = Stripe::Transfer.create(
22
- amount: 100,
23
- currency: "USD"
24
- )
25
- assert_requested :post, "#{Stripe.api_base}/v1/transfers"
26
- assert transfer.kind_of?(Stripe::Transfer)
27
- end
28
-
29
- should "be saveable" do
30
- transfer = Stripe::Transfer.retrieve(FIXTURE[:id])
31
- transfer.metadata['key'] = 'value'
32
- transfer.save
33
- assert_requested :post, "#{Stripe.api_base}/v1/transfers/#{FIXTURE[:id]}"
34
- end
35
-
36
- should "be updateable" do
37
- transfer = Stripe::Transfer.update(FIXTURE[:id], metadata: {foo: 'bar'})
38
- assert_requested :post, "#{Stripe.api_base}/v1/transfers/#{FIXTURE[:id]}"
39
- assert transfer.kind_of?(Stripe::Transfer)
40
- end
41
-
42
- context "#cancel" do
43
- should "cancel a transfer" do
44
- transfer = Stripe::Transfer.retrieve(FIXTURE[:id])
45
- transfer = transfer.cancel
46
- assert transfer.kind_of?(Stripe::Transfer)
47
- end
48
- end
49
- end
50
- end