Class: ActiveMerchant::Billing::BogusGateway
- Inherits:
-
Gateway
- Object
- Gateway
- ActiveMerchant::Billing::BogusGateway
show all
- Defined in:
- lib/active_merchant/billing/gateways/bogus.rb
Overview
Constant Summary
collapse
- AUTHORIZATION =
'53433'
- SUCCESS_MESSAGE =
"Bogus Gateway: Forced success"
- FAILURE_MESSAGE =
"Bogus Gateway: Forced failure"
- ERROR_MESSAGE =
"Bogus Gateway: Use CreditCard number 1 for success, 2 for exception and anything else for error"
- CREDIT_ERROR_MESSAGE =
"Bogus Gateway: Use trans_id 1 for success, 2 for exception and anything else for error"
- UNSTORE_ERROR_MESSAGE =
"Bogus Gateway: Use trans_id 1 for success, 2 for exception and anything else for error"
- CAPTURE_ERROR_MESSAGE =
"Bogus Gateway: Use authorization number 1 for exception, 2 for error and anything else for success"
Constants inherited
from Gateway
Gateway::DEBIT_CARDS
Constants included
from PostsData
PostsData::MAX_RETRIES, PostsData::OPEN_TIMEOUT, PostsData::READ_TIMEOUT
Instance Attribute Summary
Attributes inherited from Gateway
#options
Instance Method Summary
collapse
-
#authorize(money, creditcard, options = {}) ⇒ Object
-
#capture(money, ident, options = {}) ⇒ Object
-
#credit(money, ident, options = {}) ⇒ Object
-
#purchase(money, creditcard, options = {}) ⇒ Object
-
#store(creditcard, options = {}) ⇒ Object
-
#unstore(identification, options = {}) ⇒ Object
Methods inherited from Gateway
inherited, #initialize, supports?, #test?
Methods included from Utils
generate_unique_id
#format
#requires!
Methods included from PostsData
included, #retry_exceptions, #ssl_post
Instance Method Details
#authorize(money, creditcard, options = {}) ⇒ Object
19
20
21
22
23
24
25
26
27
28
|
# File 'lib/active_merchant/billing/gateways/bogus.rb', line 19
def authorize(money, creditcard, options = {})
case creditcard.number
when '1'
Response.new(true, SUCCESS_MESSAGE, {:authorized_amount => money.to_s}, :test => true, :authorization => AUTHORIZATION )
when '2'
Response.new(false, FAILURE_MESSAGE, {:authorized_amount => money.to_s, :error => FAILURE_MESSAGE }, :test => true)
else
raise Error, ERROR_MESSAGE
end
end
|
#capture(money, ident, options = {}) ⇒ Object
52
53
54
55
56
57
58
59
60
61
|
# File 'lib/active_merchant/billing/gateways/bogus.rb', line 52
def capture(money, ident, options = {})
case ident
when '1'
raise Error, CAPTURE_ERROR_MESSAGE
when '2'
Response.new(false, FAILURE_MESSAGE, {:paid_amount => money.to_s, :error => FAILURE_MESSAGE }, :test => true)
else
Response.new(true, SUCCESS_MESSAGE, {:paid_amount => money.to_s}, :test => true)
end
end
|
#credit(money, ident, options = {}) ⇒ Object
41
42
43
44
45
46
47
48
49
50
|
# File 'lib/active_merchant/billing/gateways/bogus.rb', line 41
def credit(money, ident, options = {})
case ident
when '1'
raise Error, CREDIT_ERROR_MESSAGE
when '2'
Response.new(false, FAILURE_MESSAGE, {:paid_amount => money.to_s, :error => FAILURE_MESSAGE }, :test => true)
else
Response.new(true, SUCCESS_MESSAGE, {:paid_amount => money.to_s}, :test => true)
end
end
|
#purchase(money, creditcard, options = {}) ⇒ Object
30
31
32
33
34
35
36
37
38
39
|
# File 'lib/active_merchant/billing/gateways/bogus.rb', line 30
def purchase(money, creditcard, options = {})
case creditcard.number
when '1'
Response.new(true, SUCCESS_MESSAGE, {:paid_amount => money.to_s}, :test => true)
when '2'
Response.new(false, FAILURE_MESSAGE, {:paid_amount => money.to_s, :error => FAILURE_MESSAGE },:test => true)
else
raise Error, ERROR_MESSAGE
end
end
|
#store(creditcard, options = {}) ⇒ Object
63
64
65
66
67
68
69
70
71
72
|
# File 'lib/active_merchant/billing/gateways/bogus.rb', line 63
def store(creditcard, options = {})
case creditcard.number
when '1'
Response.new(true, SUCCESS_MESSAGE, {:billingid => '1'}, :test => true, :authorization => AUTHORIZATION )
when '2'
Response.new(false, FAILURE_MESSAGE, {:billingid => nil, :error => FAILURE_MESSAGE }, :test => true)
else
raise Error, ERROR_MESSAGE
end
end
|
#unstore(identification, options = {}) ⇒ Object