Class: StripeMock::Instance

Constant Summary collapse

DUMMY_API_KEY =
(0...32).map { (65 + rand(26)).chr }.join.downcase
@@handlers =

Handlers are ordered by priority

[]

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from RequestHandlers::CountrySpec

included, #retrieve_country_spec

Methods included from RequestHandlers::Tokens

#create_token, #get_token, included

Methods included from RequestHandlers::Transfers

#cancel_transfer, #get_all_transfers, #get_transfer, included, #new_transfer

Methods included from RequestHandlers::Recipients

#get_recipient, included, #new_recipient, #update_recipient

Methods included from RequestHandlers::Refunds

#get_refund, #get_refunds, included, #new_refund, #update_refund

Methods included from RequestHandlers::Plans

#delete_plan, #get_plan, included, #list_plans, #new_plan, #update_plan

Methods included from RequestHandlers::Orders

#get_order, included, #list_orders, #new_order, #pay_order, #update_order

Methods included from RequestHandlers::InvoiceItems

#delete_invoice_item, #get_invoice_item, included, #list_invoice_items, #new_invoice_item, #update_invoice_item

Methods included from RequestHandlers::Invoices

#get_invoice, #get_invoice_line_items, included, #list_invoices, #new_invoice, #pay_invoice, #upcoming_invoice, #update_invoice

Methods included from RequestHandlers::Events

included, #list_events, #retrieve_event

Methods included from RequestHandlers::Disputes

#close_dispute, #get_dispute, included, #list_disputes, #update_dispute

Methods included from RequestHandlers::Coupons

#delete_coupon, #get_coupon, included, #list_coupons, #new_coupon

Methods included from RequestHandlers::Customers

#delete_customer, #delete_customer_discount, #get_customer, included, #list_customers, #new_customer, #update_customer

Methods included from RequestHandlers::Subscriptions

#cancel_subscription, #create_customer_subscription, #create_subscription, included, #retrieve_customer_subscription, #retrieve_customer_subscriptions, #retrieve_subscription, #retrieve_subscriptions, #update_subscription

Methods included from RequestHandlers::Sources

#create_source, #delete_source, included, #retrieve_source, #retrieve_sources, #update_source, #verify_source

Methods included from RequestHandlers::Cards

#create_recipient_card, #delete_recipient_card, included, #retrieve_recipient_card, #retrieve_recipient_cards

Methods included from RequestHandlers::Charges

#capture_charge, #get_charge, #get_charges, included, #new_charge, #refund_charge, #update_charge

Methods included from RequestHandlers::BalanceTransactions

#get_balance_transaction, included, #list_balance_transactions

Methods included from RequestHandlers::Accounts

#deauthorize, #get_account, included, #list_accounts, #new_account, #update_account

Methods included from RequestHandlers::ParamValidators

#validate_create_plan_params

Methods included from RequestHandlers::Helpers

#add_card_to, #add_card_to_object, #add_coupon_to_customer, #add_refund_to_charge, #add_source_to, #add_source_to_object, #add_subscription_to_customer, #card_from_params, #custom_subscription_params, #delete_card_from, #delete_subscription_from_customer, #generate_bank_token, #generate_card_token, #get_bank_by_token, #get_card, #get_card_by_token, #get_card_or_bank_by_token, #get_customer_subscription, #get_ending_time, #retrieve_object_cards, #validate_card, #verify_bank_account, #verify_trial_end

Constructor Details

#initializeInstance

Returns a new instance of Instance.



50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# File 'lib/stripe_mock/instance.rb', line 50

def initialize
  @accounts = {}
  @balance_transactions = Data.mock_balance_transactions(['txn_05RsQX2eZvKYlo2C0FRTGSSA','txn_15RsQX2eZvKYlo2C0ERTYUIA', 'txn_25RsQX2eZvKYlo2C0ZXCVBNM', 'txn_35RsQX2eZvKYlo2C0QAZXSWE', 'txn_45RsQX2eZvKYlo2C0EDCVFRT', 'txn_55RsQX2eZvKYlo2C0OIKLJUY', 'txn_65RsQX2eZvKYlo2C0ASDFGHJ', 'txn_75RsQX2eZvKYlo2C0EDCXSWQ', 'txn_85RsQX2eZvKYlo2C0UJMCDET', 'txn_95RsQX2eZvKYlo2C0EDFRYUI'])
  @bank_tokens = {}
  @card_tokens = {}
  @customers = {}
  @charges = {}
  @coupons = {}
  @disputes = Data.mock_disputes(['dp_05RsQX2eZvKYlo2C0FRTGSSA','dp_15RsQX2eZvKYlo2C0ERTYUIA', 'dp_25RsQX2eZvKYlo2C0ZXCVBNM', 'dp_35RsQX2eZvKYlo2C0QAZXSWE', 'dp_45RsQX2eZvKYlo2C0EDCVFRT', 'dp_55RsQX2eZvKYlo2C0OIKLJUY', 'dp_65RsQX2eZvKYlo2C0ASDFGHJ', 'dp_75RsQX2eZvKYlo2C0EDCXSWQ', 'dp_85RsQX2eZvKYlo2C0UJMCDET', 'dp_95RsQX2eZvKYlo2C0EDFRYUI'])
  @events = {}
  @invoices = {}
  @invoice_items = {}
  @orders = {}
  @plans = {}
  @recipients = {}
  @refunds = {}
  @transfers = {}
  @subscriptions = {}
  @country_spec = {}

  @debug = false
  @error_queue = ErrorQueue.new
  @id_counter = 0
  @balance_transaction_counter = 0
  @conversion_rate = 1.0

  # This is basically a cache for ParamValidators
  @base_strategy = TestStrategies::Base.new
end

Instance Attribute Details

#accountsObject (readonly)

Returns the value of attribute accounts.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def accounts
  @accounts
end

#balance_transactionsObject (readonly)

Returns the value of attribute balance_transactions.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def balance_transactions
  @balance_transactions
end

#bank_tokensObject (readonly)

Returns the value of attribute bank_tokens.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def bank_tokens
  @bank_tokens
end

#chargesObject (readonly)

Returns the value of attribute charges.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def charges
  @charges
end

#conversion_rateObject

Returns the value of attribute conversion_rate.



48
49
50
# File 'lib/stripe_mock/instance.rb', line 48

def conversion_rate
  @conversion_rate
end

#country_specObject (readonly)

Returns the value of attribute country_spec.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def country_spec
  @country_spec
end

#couponsObject (readonly)

Returns the value of attribute coupons.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def coupons
  @coupons
end

#customersObject (readonly)

Returns the value of attribute customers.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def customers
  @customers
end

#debugObject

Returns the value of attribute debug.



48
49
50
# File 'lib/stripe_mock/instance.rb', line 48

def debug
  @debug
end

#disputesObject (readonly)

Returns the value of attribute disputes.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def disputes
  @disputes
end

#error_queueObject

Returns the value of attribute error_queue.



48
49
50
# File 'lib/stripe_mock/instance.rb', line 48

def error_queue
  @error_queue
end

#eventsObject (readonly)

Returns the value of attribute events.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def events
  @events
end

#invoice_itemsObject (readonly)

Returns the value of attribute invoice_items.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def invoice_items
  @invoice_items
end

#invoicesObject (readonly)

Returns the value of attribute invoices.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def invoices
  @invoices
end

#ordersObject (readonly)

Returns the value of attribute orders.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def orders
  @orders
end

#plansObject (readonly)

Returns the value of attribute plans.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def plans
  @plans
end

#recipientsObject (readonly)

Returns the value of attribute recipients.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def recipients
  @recipients
end

#refundsObject (readonly)

Returns the value of attribute refunds.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def refunds
  @refunds
end

#subscriptionsObject (readonly)

Returns the value of attribute subscriptions.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def subscriptions
  @subscriptions
end

#transfersObject (readonly)

Returns the value of attribute transfers.



44
45
46
# File 'lib/stripe_mock/instance.rb', line 44

def transfers
  @transfers
end

Class Method Details

.add_handler(route, name) ⇒ Object



12
13
14
15
16
17
# File 'lib/stripe_mock/instance.rb', line 12

def self.add_handler(route, name)
  @@handlers << {
    :route => %r{^#{route}$},
    :name => name
  }
end

.handler_for_method_url(method_url) ⇒ Object



19
20
21
# File 'lib/stripe_mock/instance.rb', line 19

def self.handler_for_method_url(method_url)
  @@handlers.find {|h| method_url =~ h[:route] }
end

Instance Method Details

#generate_webhook_event(event_data) ⇒ Object



112
113
114
115
# File 'lib/stripe_mock/instance.rb', line 112

def generate_webhook_event(event_data)
  event_data[:id] ||= new_id 'evt'
  @events[ event_data[:id] ] = symbolize_names(event_data)
end

#mock_request(method, url, api_key: nil, api_base: nil, params: {}, headers: {}) ⇒ Object



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# File 'lib/stripe_mock/instance.rb', line 80

def mock_request(method, url, api_key: nil, api_base: nil, params: {}, headers: {})
  return {} if method == :xtest

  api_key ||= (Stripe.api_key || DUMMY_API_KEY)

  # Ensure params hash has symbols as keys
  params = Stripe::Util.symbolize_names(params)

  method_url = "#{method} #{url}"

  if handler = Instance.handler_for_method_url(method_url)
    if @debug == true
      puts "- - - - " * 8
      puts "[StripeMock req]::#{handler[:name]} #{method} #{url}"
      puts "                  #{params}"
    end

    if mock_error = @error_queue.error_for_handler_name(handler[:name])
      @error_queue.dequeue
      raise mock_error
    else
      res = self.send(handler[:name], handler[:route], method_url, params, headers)
      puts "           [res]  #{res}" if @debug == true
      [to_faraday_hash(res), api_key]
    end
  else
    puts "[StripeMock] Warning : Unrecognized endpoint + method : [#{method} #{url}]"
    puts "[StripeMock] params: #{params}" unless params.empty?
    [{}, api_key]
  end
end

#upsert_stripe_object(object, attributes) ⇒ Object



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/stripe_mock/instance.rb', line 117

def upsert_stripe_object(object, attributes)
  # Most Stripe entities can be created via the API.  However, some entities are created when other Stripe entities are
  # created - such as when BalanceTransactions are created when Charges are created.  This method provides the ability
  # to create these internal entities.
  # It also provides the ability to modify existing Stripe entities.
  id = attributes[:id]
  if id.nil? || id == ""
    # Insert new Stripe object
    case object
      when :balance_transaction
        id = new_balance_transaction('txn', attributes)
      else
        raise UnsupportedRequestError.new "Unsupported stripe object `#{object}`"
    end
  else
    # Update existing Stripe object
    case object
      when :balance_transaction
        btxn = assert_existence :balance_transaction, id, @balance_transactions[id]
        btxn.merge!(attributes)
      else
        raise UnsupportedRequestError.new "Unsupported stripe object `#{object}`"
    end
  end
  id
end