mustwin-stripe-ruby-mock 1.8.4.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (89) hide show
  1. data/.gitignore +5 -0
  2. data/.rspec +1 -0
  3. data/.travis.yml +5 -0
  4. data/ChangeLog.rdoc +4 -0
  5. data/Gemfile +7 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +264 -0
  8. data/Rakefile +28 -0
  9. data/bin/stripe-mock-server +19 -0
  10. data/lib/stripe_mock.rb +46 -0
  11. data/lib/stripe_mock/api/card_tokens.rb +22 -0
  12. data/lib/stripe_mock/api/client.rb +37 -0
  13. data/lib/stripe_mock/api/debug.rb +11 -0
  14. data/lib/stripe_mock/api/errors.rb +41 -0
  15. data/lib/stripe_mock/api/instance.rb +27 -0
  16. data/lib/stripe_mock/api/server.rb +24 -0
  17. data/lib/stripe_mock/api/strict.rb +11 -0
  18. data/lib/stripe_mock/api/webhooks.rb +64 -0
  19. data/lib/stripe_mock/client.rb +84 -0
  20. data/lib/stripe_mock/data.rb +317 -0
  21. data/lib/stripe_mock/error_queue.rb +23 -0
  22. data/lib/stripe_mock/errors/closed_client_connection_error.rb +9 -0
  23. data/lib/stripe_mock/errors/server_timeout_error.rb +12 -0
  24. data/lib/stripe_mock/errors/stripe_mock_error.rb +15 -0
  25. data/lib/stripe_mock/errors/uninitialized_instance_error.rb +9 -0
  26. data/lib/stripe_mock/errors/unstarted_state_error.rb +9 -0
  27. data/lib/stripe_mock/errors/unsupported_request_error.rb +4 -0
  28. data/lib/stripe_mock/instance.rb +108 -0
  29. data/lib/stripe_mock/request_handlers/charges.rb +33 -0
  30. data/lib/stripe_mock/request_handlers/customers.rb +107 -0
  31. data/lib/stripe_mock/request_handlers/invoice_items.rb +15 -0
  32. data/lib/stripe_mock/request_handlers/plans.rb +43 -0
  33. data/lib/stripe_mock/server.rb +58 -0
  34. data/lib/stripe_mock/util.rb +22 -0
  35. data/lib/stripe_mock/version.rb +4 -0
  36. data/lib/stripe_mock/webhook_fixtures/account.application.deauthorized.json +12 -0
  37. data/lib/stripe_mock/webhook_fixtures/account.updated.json +24 -0
  38. data/lib/stripe_mock/webhook_fixtures/charge.dispute.closed.json +21 -0
  39. data/lib/stripe_mock/webhook_fixtures/charge.dispute.created.json +21 -0
  40. data/lib/stripe_mock/webhook_fixtures/charge.dispute.updated.json +24 -0
  41. data/lib/stripe_mock/webhook_fixtures/charge.failed.json +57 -0
  42. data/lib/stripe_mock/webhook_fixtures/charge.refunded.json +57 -0
  43. data/lib/stripe_mock/webhook_fixtures/charge.succeeded.json +57 -0
  44. data/lib/stripe_mock/webhook_fixtures/coupon.created.json +22 -0
  45. data/lib/stripe_mock/webhook_fixtures/coupon.deleted.json +22 -0
  46. data/lib/stripe_mock/webhook_fixtures/customer.created.json +40 -0
  47. data/lib/stripe_mock/webhook_fixtures/customer.deleted.json +40 -0
  48. data/lib/stripe_mock/webhook_fixtures/customer.discount.created.json +28 -0
  49. data/lib/stripe_mock/webhook_fixtures/customer.discount.deleted.json +28 -0
  50. data/lib/stripe_mock/webhook_fixtures/customer.discount.updated.json +43 -0
  51. data/lib/stripe_mock/webhook_fixtures/customer.subscription.created.json +34 -0
  52. data/lib/stripe_mock/webhook_fixtures/customer.subscription.deleted.json +34 -0
  53. data/lib/stripe_mock/webhook_fixtures/customer.subscription.trial_will_end.json +34 -0
  54. data/lib/stripe_mock/webhook_fixtures/customer.subscription.updated.json +47 -0
  55. data/lib/stripe_mock/webhook_fixtures/customer.updated.json +43 -0
  56. data/lib/stripe_mock/webhook_fixtures/invoice.created.json +64 -0
  57. data/lib/stripe_mock/webhook_fixtures/invoice.payment_failed.json +64 -0
  58. data/lib/stripe_mock/webhook_fixtures/invoice.payment_succeeded.json +64 -0
  59. data/lib/stripe_mock/webhook_fixtures/invoice.updated.json +67 -0
  60. data/lib/stripe_mock/webhook_fixtures/invoiceitem.created.json +21 -0
  61. data/lib/stripe_mock/webhook_fixtures/invoiceitem.deleted.json +21 -0
  62. data/lib/stripe_mock/webhook_fixtures/invoiceitem.updated.json +24 -0
  63. data/lib/stripe_mock/webhook_fixtures/plan.created.json +20 -0
  64. data/lib/stripe_mock/webhook_fixtures/plan.deleted.json +20 -0
  65. data/lib/stripe_mock/webhook_fixtures/plan.updated.json +23 -0
  66. data/lib/stripe_mock/webhook_fixtures/transfer.created.json +23 -0
  67. data/lib/stripe_mock/webhook_fixtures/transfer.failed.json +23 -0
  68. data/lib/stripe_mock/webhook_fixtures/transfer.paid.json +23 -0
  69. data/lib/stripe_mock/webhook_fixtures/transfer.updated.json +26 -0
  70. data/lib/trollop.rb +782 -0
  71. data/spec/_dummy/webhooks/dummy.event.json +6 -0
  72. data/spec/fixtures/stripe_webhooks/account.updated.json +7 -0
  73. data/spec/fixtures/stripe_webhooks/custom.account.updated.json +5 -0
  74. data/spec/instance_spec.rb +49 -0
  75. data/spec/readme_spec.rb +72 -0
  76. data/spec/server_spec.rb +131 -0
  77. data/spec/shared_stripe_examples/card_token_examples.rb +28 -0
  78. data/spec/shared_stripe_examples/charge_examples.rb +123 -0
  79. data/spec/shared_stripe_examples/customer_examples.rb +218 -0
  80. data/spec/shared_stripe_examples/error_mock_examples.rb +152 -0
  81. data/spec/shared_stripe_examples/invoice_item_examples.rb +17 -0
  82. data/spec/shared_stripe_examples/plan_examples.rb +123 -0
  83. data/spec/spec_helper.rb +11 -0
  84. data/spec/stripe_mock_spec.rb +40 -0
  85. data/spec/support/stripe_examples.rb +18 -0
  86. data/spec/util_spec.rb +45 -0
  87. data/spec/webhook_spec.rb +77 -0
  88. data/stripe-ruby-mock.gemspec +27 -0
  89. metadata +253 -0
@@ -0,0 +1,11 @@
1
+ module StripeMock
2
+
3
+ def self.toggle_debug(toggle)
4
+ if @state == 'local'
5
+ @instance.debug = toggle
6
+ elsif @state == 'remote'
7
+ @client.set_server_debug(toggle)
8
+ end
9
+ end
10
+
11
+ end
@@ -0,0 +1,41 @@
1
+ module StripeMock
2
+
3
+ def self.prepare_error(stripe_error, *handler_names)
4
+ handler_names.push(:all) if handler_names.count == 0
5
+
6
+ if @state == 'local'
7
+ instance.error_queue.queue(stripe_error, handler_names)
8
+ elsif @state == 'remote'
9
+ client.error_queue.queue(stripe_error, handler_names)
10
+ else
11
+ raise UnstartedStateError
12
+ end
13
+ end
14
+
15
+ def self.prepare_card_error(code, *handler_names)
16
+ handler_names.push(:new_charge) if handler_names.count == 0
17
+
18
+ args = CardErrors.argument_map[code]
19
+ raise StripeMockError.new("Unrecognized stripe card error code: #{code}") if args.nil?
20
+ self.prepare_error Stripe::CardError.new(*args), *handler_names
21
+ end
22
+
23
+ module CardErrors
24
+
25
+ def self.argument_map
26
+ @__map ||= {
27
+ incorrect_number: ["The card number is incorrect", 'number', 'incorrect_number', 402],
28
+ invalid_number: ["The card number is not a valid credit card number", 'number', 'invalid_number', 402],
29
+ invalid_expiry_month: ["The card's expiration month is invalid", 'exp_month', 'invalid_expiry_month', 402],
30
+ invalid_expiry_year: ["The card's expiration year is invalid", 'exp_year', 'invalid_expiry_year', 402],
31
+ invalid_cvc: ["The card's security code is invalid", 'cvc', 'invalid_cvc', 402],
32
+ expired_card: ["The card has expired", 'exp_month', 'expired_card', 402],
33
+ incorrect_cvc: ["The card's security code is incorrect", 'cvc', 'incorrect_cvc', 402],
34
+ card_declined: ["The card was declined", nil, 'card_declined', 402],
35
+ missing: ["There is no card on a customer that is being charged.", nil, 'missing', 402],
36
+ processing_error: ["An error occurred while processing the card", nil, 'processing_error', 402],
37
+ }
38
+ end
39
+ end
40
+
41
+ end
@@ -0,0 +1,27 @@
1
+ module StripeMock
2
+
3
+ @state = 'ready'
4
+ @instance = nil
5
+ @original_request_method = Stripe.method(:request)
6
+
7
+ def self.start
8
+ @instance = Instance.new
9
+ alias_stripe_method :request, @instance.method(:mock_request)
10
+ @state = 'local'
11
+ end
12
+
13
+ def self.stop
14
+ return unless @state == 'local'
15
+ alias_stripe_method :request, @original_request_method
16
+ @instance = nil
17
+ @state = 'ready'
18
+ end
19
+
20
+ def self.alias_stripe_method(new_name, method_object)
21
+ Stripe.define_singleton_method(new_name) {|*args| method_object.call(*args) }
22
+ end
23
+
24
+ def self.instance; @instance; end
25
+ def self.state; @state; end
26
+
27
+ end
@@ -0,0 +1,24 @@
1
+ module StripeMock
2
+
3
+ @default_pid_path = './stripe-mock-server.pid'
4
+
5
+ def self.default_server_pid_path; @default_pid_path; end
6
+ def self.default_server_pid_path=(new_path)
7
+ @default_pid_path = new_path
8
+ end
9
+
10
+
11
+ def self.spawn_server(opts={})
12
+ pid_path = opts[:pid_path] || @default_pid_path
13
+ Dante::Runner.new('stripe-mock-server').execute(:daemonize => true, :pid_path => pid_path) {
14
+ StripeMock::Server.start_new(opts)
15
+ }
16
+ at_exit { kill_server(pid_path) }
17
+ end
18
+
19
+ def self.kill_server(pid_path=nil)
20
+ path = pid_path || @default_pid_path
21
+ Dante::Runner.new('stripe-mock-server').execute(:kill => true, :pid_path => path)
22
+ end
23
+
24
+ end
@@ -0,0 +1,11 @@
1
+ module StripeMock
2
+
3
+ def self.toggle_strict(toggle)
4
+ if @state == 'local'
5
+ @instance.strict = toggle
6
+ elsif @state == 'remote'
7
+ @client.set_server_strict(toggle)
8
+ end
9
+ end
10
+
11
+ end
@@ -0,0 +1,64 @@
1
+ module StripeMock
2
+
3
+ def self.mock_webhook_event(type, params={})
4
+
5
+ fixture_file = File.join(@webhook_fixture_path, "#{type}.json")
6
+
7
+ if File.exists?(fixture_file) == false
8
+ unless Webhooks.event_list.include?(type)
9
+ raise UnsupportedRequestError.new "Unsupported webhook event `#{type}` (Searched in #{@webhook_fixture_path})"
10
+ end
11
+ fixture_file = File.join(@webhook_fixture_fallback_path, "#{type}.json")
12
+ end
13
+
14
+ json = MultiJson.load File.read(fixture_file)
15
+
16
+ json = Stripe::Util.symbolize_names(json)
17
+ params = Stripe::Util.symbolize_names(params)
18
+ json[:data][:object] = Util.rmerge(json[:data][:object], params)
19
+
20
+ Stripe::Event.construct_from(json)
21
+ end
22
+
23
+ module Webhooks
24
+ def self.event_list
25
+ @__list = [
26
+ 'account.updated',
27
+ 'account.application.deauthorized',
28
+ 'charge.succeeded',
29
+ 'charge.failed',
30
+ 'charge.refunded',
31
+ 'charge.dispute.created',
32
+ 'charge.dispute.updated',
33
+ 'charge.dispute.closed',
34
+ 'customer.created',
35
+ 'customer.updated',
36
+ 'customer.deleted',
37
+ 'customer.subscription.created',
38
+ 'customer.subscription.updated',
39
+ 'customer.subscription.deleted',
40
+ 'customer.subscription.trial_will_end',
41
+ 'customer.discount.created',
42
+ 'customer.discount.updated',
43
+ 'customer.discount.deleted',
44
+ 'invoice.created',
45
+ 'invoice.updated',
46
+ 'invoice.payment_succeeded',
47
+ 'invoice.payment_failed',
48
+ 'invoiceitem.created',
49
+ 'invoiceitem.updated',
50
+ 'invoiceitem.deleted',
51
+ 'plan.created',
52
+ 'plan.updated',
53
+ 'plan.deleted',
54
+ 'coupon.created',
55
+ 'coupon.deleted',
56
+ 'transfer.created',
57
+ 'transfer.paid',
58
+ 'transfer.updated',
59
+ 'transfer.failed'
60
+ ]
61
+ end
62
+ end
63
+
64
+ end
@@ -0,0 +1,84 @@
1
+ module StripeMock
2
+
3
+ class Client
4
+ attr_reader :port, :state, :error_queue
5
+
6
+ def initialize(port)
7
+ @port = port
8
+ @pipe = Jimson::Client.new("http://0.0.0.0:#{port}")
9
+ # Ensure client can connect to server
10
+ timeout_wrap { @pipe.ping }
11
+ @state = 'ready'
12
+ @error_queue = ErrorQueue.new
13
+ end
14
+
15
+ def mock_request(method, url, api_key, params={}, headers={})
16
+ timeout_wrap do
17
+ @pipe.mock_request(method, url, api_key, params, headers).tap {|result|
18
+ response, api_key = result
19
+ if response.is_a?(Hash) && response['error_raised'] == 'invalid_request'
20
+ raise Stripe::InvalidRequestError.new(*response['error_params'])
21
+ end
22
+ }
23
+ end
24
+ end
25
+
26
+ def get_server_data(key)
27
+ timeout_wrap {
28
+ # Massage the data make this behave the same as the local StripeMock.start
29
+ result = {}
30
+ @pipe.get_data(key).each {|k,v| result[k] = Stripe::Util.symbolize_names(v) }
31
+ result
32
+ }
33
+ end
34
+
35
+ def set_server_debug(toggle)
36
+ timeout_wrap { @pipe.set_debug(toggle) }
37
+ end
38
+
39
+ def server_debug?
40
+ timeout_wrap { @pipe.debug? }
41
+ end
42
+
43
+ def set_server_strict(toggle)
44
+ timeout_wrap { @pipe.set_strict(toggle) }
45
+ end
46
+
47
+ def server_strict?
48
+ timeout_wrap { @pipe.strict? }
49
+ end
50
+
51
+ def generate_recipient_token(recipient_params)
52
+ timeout_wrap { @pipe.generate_recipient_token(recipient_params) }
53
+ end
54
+
55
+ def generate_card_token(card_params)
56
+ timeout_wrap { @pipe.generate_card_token(card_params) }
57
+ end
58
+
59
+ def clear_server_data
60
+ timeout_wrap { @pipe.clear_data }
61
+ end
62
+
63
+ def close!
64
+ self.cleanup
65
+ StripeMock.stop_client(:clear_server_data => false)
66
+ end
67
+
68
+ def cleanup
69
+ return if @state == 'closed'
70
+ set_server_debug(false)
71
+ @state = 'closed'
72
+ end
73
+
74
+ def timeout_wrap
75
+ raise ClosedClientConnectionError if @state == 'closed'
76
+ yield
77
+ rescue ClosedClientConnectionError
78
+ raise
79
+ rescue Errno::ECONNREFUSED => e
80
+ raise StripeMock::ServerTimeoutError.new(e)
81
+ end
82
+ end
83
+
84
+ end
@@ -0,0 +1,317 @@
1
+ module StripeMock
2
+ module Data
3
+
4
+ def self.mock_customer(cards, params)
5
+ cus_id = params[:id] || "test_cus_default"
6
+ cards.each {|card| card[:customer] = cus_id}
7
+ {
8
+ email: 'stripe_mock@example.com',
9
+ description: 'an auto-generated stripe customer data mock',
10
+ object: "customer",
11
+ created: 1372126710,
12
+ id: cus_id,
13
+ livemode: false,
14
+ delinquent: false,
15
+ subscription: nil,
16
+ discount: nil,
17
+ account_balance: 0,
18
+ cards: {
19
+ object: "list",
20
+ count: cards.count,
21
+ url: "/v1/customers/#{cus_id}/cards",
22
+ data: cards
23
+ },
24
+ default_card: nil
25
+ }.merge(params)
26
+ end
27
+
28
+ def self.mock_charge(params={})
29
+ {
30
+ id: "ch_1fD6uiR9FAA2zc",
31
+ object: "charge",
32
+ created: 1366194027,
33
+ livemode: false,
34
+ paid: true,
35
+ amount: 0,
36
+ currency: "usd",
37
+ refunded: false,
38
+ fee: 0,
39
+ fee_details: [
40
+ ],
41
+ card: {
42
+ object: "card",
43
+ last4: "4242",
44
+ type: "Visa",
45
+ exp_month: 12,
46
+ exp_year: 2013,
47
+ fingerprint: "3TQGpK9JoY1GgXPw",
48
+ country: "US",
49
+ name: "name",
50
+ address_line1: nil,
51
+ address_line2: nil,
52
+ address_city: nil,
53
+ address_state: nil,
54
+ address_zip: nil,
55
+ address_country: nil,
56
+ cvc_check: nil,
57
+ address_line1_check: nil,
58
+ address_zip_check: nil
59
+ },
60
+ captured: params.has_key?(:capture) ? params.delete(:capture) : true,
61
+ failure_message: nil,
62
+ amount_refunded: 0,
63
+ customer: nil,
64
+ invoice: nil,
65
+ description: nil,
66
+ dispute: nil
67
+ }.merge(params)
68
+ end
69
+
70
+ def self.mock_charge_array
71
+ {
72
+ :data => [test_charge, test_charge, test_charge],
73
+ :object => 'list',
74
+ :url => '/v1/charges'
75
+ }
76
+ end
77
+
78
+ def self.mock_card(params={})
79
+ {
80
+ id: "test_cc_default",
81
+ object: "card",
82
+ last4: "4242",
83
+ type: "Visa",
84
+ exp_month: 4,
85
+ exp_year: 2016,
86
+ fingerprint: "wXWJT135mEK107G8",
87
+ customer: "test_cus_default",
88
+ country: "US",
89
+ name: "Johnny App",
90
+ address_line1: nil,
91
+ address_line2: nil,
92
+ address_city: nil,
93
+ address_state: nil,
94
+ address_zip: nil,
95
+ address_country: nil,
96
+ cvc_check: nil,
97
+ address_line1_check: nil,
98
+ address_zip_check: nil
99
+ }.merge(params)
100
+ end
101
+
102
+ def self.mock_coupon(params={})
103
+ {
104
+ :duration => 'repeating',
105
+ :duration_in_months => 3,
106
+ :percent_off => 25,
107
+ :id => "co_test_coupon",
108
+ :object => "coupon"
109
+ }.merge(params)
110
+ end
111
+
112
+ #FIXME nested overrides would be better than hardcoding plan_id
113
+ def self.mock_subscription(params={})
114
+ StripeMock::Util.rmerge({
115
+ :current_period_end => 1308681468,
116
+ :status => "trialing",
117
+ :plan => {
118
+ :interval => "month",
119
+ :amount => 7500,
120
+ :trial_period_days => 30,
121
+ :object => "plan",
122
+ :id => '__test_plan_id__'
123
+ },
124
+ :current_period_start => 1308595038,
125
+ :cancel_at_period_end => false,
126
+ :canceled_at => nil,
127
+ :start => 1308595038,
128
+ :object => "subscription",
129
+ :trial_start => 1308595038,
130
+ :trial_end => 1308681468,
131
+ :customer => "c_test_customer",
132
+ :quantity => 1
133
+ }, params)
134
+ end
135
+
136
+ def self.mock_invoice(params={})
137
+ {
138
+ :id => 'in_test_invoice',
139
+ :object => 'invoice',
140
+ :livemode => false,
141
+ :amount_due => 1000,
142
+ :attempt_count => 0,
143
+ :attempted => false,
144
+ :closed => false,
145
+ :currency => 'usd',
146
+ :customer => 'c_test_customer',
147
+ :date => 1349738950,
148
+ :lines => {
149
+ "invoiceitems" => [
150
+ {
151
+ :id => 'ii_test_invoice_item',
152
+ :object => '',
153
+ :livemode => false,
154
+ :amount => 1000,
155
+ :currency => 'usd',
156
+ :customer => 'c_test_customer',
157
+ :date => 1349738950,
158
+ :description => "A Test Invoice Item",
159
+ :invoice => 'in_test_invoice'
160
+ },
161
+ ],
162
+ },
163
+ :paid => false,
164
+ :period_end => 1349738950,
165
+ :period_start => 1349738950,
166
+ :starting_balance => 0,
167
+ :subtotal => 1000,
168
+ :total => 1000,
169
+ :charge => nil,
170
+ :discount => nil,
171
+ :ending_balance => nil,
172
+ :next_payemnt_attempt => 1349825350,
173
+ }.merge(params)
174
+ end
175
+
176
+ def self.mock_paid_invoice
177
+ test_invoice.merge({
178
+ :attempt_count => 1,
179
+ :attempted => true,
180
+ :closed => true,
181
+ :paid => true,
182
+ :charge => 'ch_test_charge',
183
+ :ending_balance => 0,
184
+ :next_payment_attempt => nil,
185
+ })
186
+ end
187
+
188
+ def self.mock_invoice_customer_array
189
+ {
190
+ :data => [test_invoice],
191
+ :object => 'list',
192
+ :url => '/v1/invoices?customer=test_customer'
193
+ }
194
+ end
195
+
196
+ def self.mock_plan(params={})
197
+ {
198
+ interval: "month",
199
+ name: "The Basic Plan",
200
+ amount: 2300,
201
+ currency: "usd",
202
+ id: "2",
203
+ object: "plan",
204
+ livemode: false,
205
+ interval_count: 1,
206
+ trial_period_days: nil
207
+ }.merge(params)
208
+ end
209
+
210
+ def self.mock_recipient(params={})
211
+ {
212
+ :name => "Stripe User",
213
+ :type => "individual",
214
+ :livemode => false,
215
+ :object => "recipient",
216
+ :id => "rp_test_recipient",
217
+ :active_account => {
218
+ :last4 => "6789",
219
+ :bank_name => "STRIPE TEST BANK",
220
+ :country => "US",
221
+ :object => "bank_account"
222
+ },
223
+ :created => 1304114758,
224
+ :verified => true
225
+ }.merge(params)
226
+ end
227
+
228
+ def self.mock_recipient_array
229
+ {
230
+ :data => [test_recipient, test_recipient, test_recipient],
231
+ :object => 'list',
232
+ :url => '/v1/recipients'
233
+ }
234
+ end
235
+
236
+ def self.mock_transfer(params={})
237
+ {
238
+ :status => 'pending',
239
+ :amount => 100,
240
+ :account => {
241
+ :object => 'bank_account',
242
+ :country => 'US',
243
+ :bank_name => 'STRIPE TEST BANK',
244
+ :last4 => '6789'
245
+ },
246
+ :recipient => 'test_recipient',
247
+ :fee => 0,
248
+ :fee_details => [],
249
+ :id => "tr_test_transfer",
250
+ :livemode => false,
251
+ :currency => "usd",
252
+ :object => "transfer",
253
+ :date => 1304114826
254
+ }.merge(params)
255
+ end
256
+
257
+ def self.mock_transfer_array
258
+ {
259
+ :data => [test_transfer, test_transfer, test_transfer],
260
+ :object => 'list',
261
+ :url => '/v1/transfers'
262
+ }
263
+ end
264
+
265
+ def self.mock_invalid_api_key_error
266
+ {
267
+ "error" => {
268
+ "type" => "invalid_request_error",
269
+ "message" => "Invalid API Key provided: invalid"
270
+ }
271
+ }
272
+ end
273
+
274
+ def self.mock_invalid_exp_year_error
275
+ {
276
+ "error" => {
277
+ "code" => "invalid_expiry_year",
278
+ "param" => "exp_year",
279
+ "type" => "card_error",
280
+ "message" => "Your card's expiration year is invalid"
281
+ }
282
+ }
283
+ end
284
+
285
+ def self.mock_missing_id_error
286
+ {
287
+ :error => {
288
+ :param => "id",
289
+ :type => "invalid_request_error",
290
+ :message => "Missing id"
291
+ }
292
+ }
293
+ end
294
+
295
+ def self.mock_delete_subscription(params={})
296
+ {
297
+ deleted: true
298
+ }.merge(params)
299
+ end
300
+
301
+ def self.mock_api_error
302
+ {
303
+ :error => {
304
+ :type => "api_error"
305
+ }
306
+ }
307
+ end
308
+
309
+ def self.mock_delete_discount_response
310
+ {
311
+ :deleted => true,
312
+ :id => "di_test_coupon"
313
+ }
314
+ end
315
+
316
+ end
317
+ end