activemerchant 1.1.0 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/CHANGELOG +226 -0
- data/CONTRIBUTERS +52 -0
- data/README +34 -24
- data/Rakefile +152 -0
- data/gem-public_cert.pem +20 -0
- data/init.rb +3 -0
- data/lib/active_merchant.rb +3 -1
- data/lib/active_merchant/billing/credit_card.rb +21 -17
- data/lib/active_merchant/billing/credit_card_methods.rb +17 -19
- data/lib/active_merchant/billing/gateway.rb +160 -44
- data/lib/active_merchant/billing/gateways.rb +2 -15
- data/lib/active_merchant/billing/gateways/authorize_net.rb +21 -21
- data/lib/active_merchant/billing/gateways/bogus.rb +6 -6
- data/lib/active_merchant/billing/gateways/brain_tree.rb +191 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +207 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +402 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +41 -97
- data/lib/active_merchant/billing/gateways/efsnet.rb +256 -0
- data/lib/active_merchant/billing/gateways/eway.rb +77 -29
- data/lib/active_merchant/billing/gateways/exact.rb +230 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +6 -33
- data/lib/active_merchant/billing/gateways/moneris.rb +155 -125
- data/lib/active_merchant/billing/gateways/net_registry.rb +257 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +407 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +163 -25
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +56 -38
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +10 -1
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +9 -0
- data/lib/active_merchant/billing/gateways/payflow_express.rb +36 -11
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +6 -0
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +7 -3
- data/lib/active_merchant/billing/gateways/payment_express.rb +261 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +18 -4
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +31 -15
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +8 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +33 -8
- data/lib/active_merchant/billing/gateways/plugnpay.rb +300 -0
- data/lib/active_merchant/billing/gateways/protx.rb +285 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +13 -12
- data/lib/active_merchant/billing/gateways/psl_card.rb +297 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +197 -0
- data/lib/active_merchant/billing/gateways/realex.rb +212 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +136 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +43 -20
- data/lib/active_merchant/billing/gateways/usa_epay.rb +6 -5
- data/lib/active_merchant/billing/gateways/verifi.rb +235 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +171 -0
- data/lib/active_merchant/billing/integrations/gestpay/helper.rb +0 -2
- data/lib/active_merchant/billing/integrations/helper.rb +8 -1
- data/lib/active_merchant/billing/integrations/nochex.rb +62 -1
- data/lib/active_merchant/billing/integrations/nochex/notification.rb +9 -16
- data/lib/active_merchant/billing/integrations/notification.rb +1 -1
- data/lib/active_merchant/billing/integrations/paypal/helper.rb +59 -46
- data/lib/active_merchant/billing/integrations/paypal/notification.rb +14 -47
- data/lib/active_merchant/lib/error.rb +4 -0
- data/lib/active_merchant/lib/post_data.rb +22 -0
- data/lib/active_merchant/lib/posts_data.rb +23 -5
- data/lib/active_merchant/lib/requires_parameters.rb +2 -2
- data/lib/active_merchant/lib/validateable.rb +1 -1
- data/lib/support/gateway_support.rb +45 -0
- data/lib/tasks/cia.rb +1 -1
- data/script/generate +14 -0
- data/script/generator/base.rb +45 -0
- data/script/generator/generator.rb +24 -0
- data/script/generator/generators/gateway/gateway_generator.rb +14 -0
- data/script/generator/generators/gateway/templates/gateway.rb +73 -0
- data/script/generator/generators/gateway/templates/gateway_test.rb +41 -0
- data/script/generator/generators/gateway/templates/remote_gateway_test.rb +56 -0
- data/script/generator/generators/integration/integration_generator.rb +25 -0
- data/script/generator/generators/integration/templates/helper.rb +34 -0
- data/script/generator/generators/integration/templates/helper_test.rb +54 -0
- data/script/generator/generators/integration/templates/integration.rb +18 -0
- data/script/generator/generators/integration/templates/module_test.rb +9 -0
- data/script/generator/generators/integration/templates/notification.rb +100 -0
- data/script/generator/generators/integration/templates/notification_test.rb +41 -0
- data/script/generator/manifest.rb +20 -0
- data/test/extra/binding_of_caller.rb +80 -0
- data/test/extra/breakpoint.rb +547 -0
- data/test/fixtures.yml +251 -0
- data/test/remote_tests/remote_authorize_net_test.rb +113 -0
- data/test/remote_tests/remote_brain_tree_test.rb +78 -0
- data/test/remote_tests/remote_card_stream_test.rb +160 -0
- data/test/remote_tests/remote_cyber_source_test.rb +130 -0
- data/test/remote_tests/remote_data_cash_test.rb +155 -0
- data/test/remote_tests/remote_efsnet_test.rb +93 -0
- data/test/remote_tests/remote_eway_test.rb +71 -0
- data/test/remote_tests/remote_exact_test.rb +59 -0
- data/test/remote_tests/remote_gestpay_integration_test.rb +37 -0
- data/test/remote_tests/remote_linkpoint_test.rb +144 -0
- data/test/remote_tests/remote_moneris_test.rb +110 -0
- data/test/remote_tests/remote_net_registry_test.rb +120 -0
- data/test/remote_tests/remote_pay_junction_test.rb +162 -0
- data/test/remote_tests/remote_payflow_express_test.rb +50 -0
- data/test/remote_tests/remote_payflow_test.rb +241 -0
- data/test/remote_tests/remote_payflow_uk_test.rb +172 -0
- data/test/remote_tests/remote_payment_express_test.rb +136 -0
- data/test/remote_tests/remote_paypal_express_test.rb +49 -0
- data/test/remote_tests/remote_paypal_integration_test.rb +14 -0
- data/test/remote_tests/remote_paypal_test.rb +163 -0
- data/test/remote_tests/remote_plugnpay_test.rb +70 -0
- data/test/remote_tests/remote_protx_test.rb +184 -0
- data/test/remote_tests/remote_psigate_test.rb +87 -0
- data/test/remote_tests/remote_psl_card_test.rb +105 -0
- data/test/remote_tests/remote_quickpay_test.rb +182 -0
- data/test/remote_tests/remote_realex_test.rb +227 -0
- data/test/remote_tests/remote_secure_pay_test.rb +36 -0
- data/test/remote_tests/remote_trans_first_test.rb +37 -0
- data/test/remote_tests/remote_trust_commerce_test.rb +136 -0
- data/test/remote_tests/remote_usa_epay_test.rb +57 -0
- data/test/remote_tests/remote_verifi_test.rb +107 -0
- data/test/remote_tests/remote_viaklix_test.rb +53 -0
- data/test/test_helper.rb +132 -0
- data/test/unit/base_test.rb +61 -0
- data/test/unit/country_code_test.rb +33 -0
- data/test/unit/country_test.rb +64 -0
- data/test/unit/credit_card_formatting_test.rb +24 -0
- data/test/unit/credit_card_methods_test.rb +37 -0
- data/test/unit/credit_card_test.rb +365 -0
- data/test/unit/gateways/authorize_net_test.rb +140 -0
- data/test/unit/gateways/bogus_test.rb +43 -0
- data/test/unit/gateways/brain_tree_test.rb +77 -0
- data/test/unit/gateways/card_stream_test.rb +37 -0
- data/test/unit/gateways/cyber_source_test.rb +151 -0
- data/test/unit/gateways/data_cash_test.rb +23 -0
- data/test/unit/gateways/efsnet_test.rb +70 -0
- data/test/unit/gateways/eway_test.rb +105 -0
- data/test/unit/gateways/exact_test.rb +118 -0
- data/test/unit/gateways/gateway_test.rb +24 -0
- data/test/unit/gateways/linkpoint_test.rb +165 -0
- data/test/unit/gateways/moneris_test.rb +167 -0
- data/test/unit/gateways/net_registry_test.rb +478 -0
- data/test/unit/gateways/pay_junction_test.rb +61 -0
- data/test/unit/gateways/payflow_express_test.rb +165 -0
- data/test/unit/gateways/payflow_express_uk_test.rb +14 -0
- data/test/unit/gateways/payflow_test.rb +230 -0
- data/test/unit/gateways/payflow_uk_test.rb +68 -0
- data/test/unit/gateways/payment_express_test.rb +215 -0
- data/test/unit/gateways/paypal_express_test.rb +222 -0
- data/test/unit/gateways/paypal_test.rb +241 -0
- data/test/unit/gateways/plugnpay_test.rb +79 -0
- data/test/unit/gateways/protx_test.rb +110 -0
- data/test/unit/gateways/psigate_test.rb +110 -0
- data/test/unit/gateways/psl_card_test.rb +51 -0
- data/test/unit/gateways/quickpay_test.rb +125 -0
- data/test/unit/gateways/realex_test.rb +150 -0
- data/test/unit/gateways/secure_pay_test.rb +78 -0
- data/test/unit/gateways/trans_first_test.rb +125 -0
- data/test/unit/gateways/trust_commerce_test.rb +57 -0
- data/test/unit/gateways/usa_epay_test.rb +117 -0
- data/test/unit/gateways/verifi_test.rb +91 -0
- data/test/unit/gateways/viaklix_test.rb +72 -0
- data/test/unit/integrations/action_view_helper_test.rb +54 -0
- data/test/unit/integrations/bogus_module_test.rb +16 -0
- data/test/unit/integrations/chronopay_module_test.rb +9 -0
- data/test/unit/integrations/gestpay_module_test.rb +10 -0
- data/test/unit/integrations/helpers/bogus_helper_test.rb +28 -0
- data/test/unit/integrations/helpers/chronopay_helper_test.rb +67 -0
- data/test/unit/integrations/helpers/gestpay_helper_test.rb +100 -0
- data/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
- data/test/unit/integrations/helpers/paypal_helper_test.rb +162 -0
- data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
- data/test/unit/integrations/nochex_module_test.rb +9 -0
- data/test/unit/integrations/notifications/chronopay_notification_test.rb +66 -0
- data/test/unit/integrations/notifications/gestpay_notification_test.rb +60 -0
- data/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
- data/test/unit/integrations/notifications/notification_test.rb +41 -0
- data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
- data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
- data/test/unit/integrations/paypal_module_test.rb +24 -0
- data/test/unit/integrations/two_checkout_module_test.rb +9 -0
- data/test/unit/post_data_test.rb +55 -0
- data/test/unit/response_test.rb +14 -0
- data/test/unit/validateable_test.rb +56 -0
- metadata +160 -7
- metadata.gz.sig +0 -0
- data/lib/active_merchant/billing/gateways/payflow/f73e89fd.0 +0 -17
@@ -0,0 +1,9 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../test_helper'
|
2
|
+
|
3
|
+
class ChronopayModuleTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def test_notification_method
|
7
|
+
assert_instance_of Nochex::Notification, Nochex.notification('name=cody')
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,66 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../test_helper'
|
2
|
+
|
3
|
+
class ChronopayNotificationTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@notification = Chronopay::Notification.new(http_raw_data)
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_notification
|
11
|
+
assert_instance_of Chronopay::Notification, @notification
|
12
|
+
end
|
13
|
+
|
14
|
+
def test_accessors
|
15
|
+
assert @notification.complete?
|
16
|
+
assert_equal "Completed", @notification.status
|
17
|
+
assert_equal "003176-000000005", @notification.customer_id
|
18
|
+
assert_equal "003176-0001", @notification.site_id
|
19
|
+
assert_equal "003176-0001-0001", @notification.product_id
|
20
|
+
assert_equal "CODY FAUSER", @notification.name
|
21
|
+
assert_equal 'XX', @notification.state
|
22
|
+
assert_equal 'Ottawa', @notification.city
|
23
|
+
assert_equal '138 Clarence St.', @notification.street
|
24
|
+
assert_equal 'CAD', @notification.currency
|
25
|
+
assert_equal 'first', @notification.item_id
|
26
|
+
assert_equal 'second', @notification.custom2
|
27
|
+
assert_equal 'third', @notification.custom3
|
28
|
+
|
29
|
+
# If the date and time are nil then it is a test notification
|
30
|
+
assert @notification.test?
|
31
|
+
end
|
32
|
+
|
33
|
+
# docs
|
34
|
+
def test_parse_received_at
|
35
|
+
# mm/dd/yyyy format
|
36
|
+
raw_received = "date=03%2f30%2f2006&time=12%3a30%3a10"
|
37
|
+
@notification = Chronopay::Notification.new(raw_received)
|
38
|
+
assert_equal CGI.unescape("03%2f30%2f2006"), @notification.params['date']
|
39
|
+
assert_equal CGI.unescape("12%3a30%3a10"), @notification.params['time']
|
40
|
+
assert_equal Time.local(2006, 3, 30, 12, 30, 10), @notification.received_at
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_compositions
|
44
|
+
assert_equal Money.new(50000, 'CAD'), @notification.amount
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_payment_successful_status
|
48
|
+
notification = Chronopay::Notification.new('transaction_type=onetime')
|
49
|
+
assert_equal 'Completed', notification.status
|
50
|
+
end
|
51
|
+
|
52
|
+
def test_payment_failure_status
|
53
|
+
notification = Chronopay::Notification.new('transaction_type=decline')
|
54
|
+
assert_equal 'Failed', notification.status
|
55
|
+
end
|
56
|
+
|
57
|
+
def test_acknowledge
|
58
|
+
assert @notification.acknowledge
|
59
|
+
end
|
60
|
+
|
61
|
+
private
|
62
|
+
def http_raw_data
|
63
|
+
"transaction_type=onetime&customer_id=003176-000000005&site_id=003176-0001&product_id=003176-0001-0001&date=&time=&transaction_id=&email=codyfauser%40gmail.com&country=CAN&name=CODY+FAUSER&city=Ottawa&street=138+Clarence+St.&phone=&state=XX&zip=K1N+5P8&language=EN&cs1=first&cs2=second&cs3=third&username=&password=&total=500.00¤cy=CAD"
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../test_helper'
|
2
|
+
|
3
|
+
class GestpayNotificationTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def test_successful_notification
|
7
|
+
Gestpay::Notification.any_instance.expects(:ssl_get).returns('#decryptstring#PAY1_UICCODE=242*P1*PAY1_AMOUNT=1234.56*P1*PAY1_TRANSACTIONRESULT=OK*P1*PAY1_BANKTRANSACTIONID=ABCD1234*P1*PAY1_SHOPTRANSACTIONID=1000#/decryptstring#')
|
8
|
+
notification = Gestpay::Notification.new(raw_query_string)
|
9
|
+
assert notification.complete?
|
10
|
+
assert !notification.test?
|
11
|
+
assert_equal "Completed", notification.status
|
12
|
+
assert_equal "ABCD1234", notification.transaction_id
|
13
|
+
assert_equal "1000", notification.item_id
|
14
|
+
assert_equal "1234.56", notification.gross
|
15
|
+
assert_equal "EUR", notification.currency
|
16
|
+
assert_equal Money.new(123456, 'EUR'), notification.amount
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_failed_notification
|
20
|
+
Gestpay::Notification.any_instance.expects(:ssl_get).returns('#decryptstring#PAY1_UICCODE=242*P1*PAY1_AMOUNT=1234.56*P1*PAY1_TRANSACTIONRESULT=KO*P1*PAY1_BANKTRANSACTIONID=ABCD1234*P1*PAY1_SHOPTRANSACTIONID=1000#/decryptstring#')
|
21
|
+
notification = Gestpay::Notification.new(raw_query_string)
|
22
|
+
assert !notification.complete?
|
23
|
+
assert !notification.test?
|
24
|
+
assert_equal "Failed", notification.status
|
25
|
+
end
|
26
|
+
|
27
|
+
def test_empty_notification
|
28
|
+
Gestpay::Notification.any_instance.stubs(:ssl_get).returns('')
|
29
|
+
notification = Gestpay::Notification.new('')
|
30
|
+
assert !notification.complete?
|
31
|
+
assert !notification.test?
|
32
|
+
assert_equal "Failed", notification.status
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_nil_notification
|
36
|
+
Gestpay::Notification.any_instance.stubs(:ssl_get).returns('')
|
37
|
+
notification = Gestpay::Notification.new(nil)
|
38
|
+
assert !notification.complete?
|
39
|
+
assert !notification.test?
|
40
|
+
assert_equal "Failed", notification.status
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_abandoned_order
|
44
|
+
Gestpay::Notification.any_instance.expects(:ssl_get).returns(unencrypted_string)
|
45
|
+
notification = Gestpay::Notification.new(raw_query_string)
|
46
|
+
assert !notification.complete?
|
47
|
+
assert !notification.test?
|
48
|
+
assert_equal "Failed", notification.status
|
49
|
+
assert_equal '1000', notification.item_id
|
50
|
+
end
|
51
|
+
|
52
|
+
private
|
53
|
+
def raw_query_string
|
54
|
+
"a=900000&b=F7DEB36478FD84760F9134F23C922697272D57DE6D4518EB9B4D468B769D9A3A8071B6EB160B35CB412FC1820C7CC12D17B3141855B1ED55468613702A2E213DDE9DE5B0209E13C416448AE833525959F05693172D7F0656"
|
55
|
+
end
|
56
|
+
|
57
|
+
def unencrypted_string
|
58
|
+
"#decryptstring#PAY1_TRANSACTIONRESULT=KO*P1*PAY1_SHOPTRANSACTIONID=1000*P1*PAY1_BANKTRANSACTIONID=*P1*PAY1_UICCODE=242*P1*PAY1_AMOUNT=50.00*P1*PAY1_AUTHORIZATIONCODE=*P1*PAY1_ERRORCODE=1143*P1*PAY1_ERRORDESCRIPTION=Transazione abbandonata dal compratore*P1*PAY1_CHEMAIL=*P1*PAY1_CHNAME=#/decryptstring#\r\n"
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../test_helper'
|
2
|
+
|
3
|
+
class NochexNotificationTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@nochex = Nochex::Notification.new(http_raw_data)
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_accessors
|
11
|
+
assert @nochex.complete?
|
12
|
+
assert_equal "Completed", @nochex.status
|
13
|
+
assert_equal "91191", @nochex.transaction_id
|
14
|
+
assert_equal "11", @nochex.item_id
|
15
|
+
assert_equal "31.66", @nochex.gross
|
16
|
+
assert_equal "GBP", @nochex.currency
|
17
|
+
assert_equal Time.utc(2006, 9, 27, 22, 30, 53), @nochex.received_at
|
18
|
+
assert @nochex.test?
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_compositions
|
22
|
+
assert_equal Money.new(3166, 'GBP'), @nochex.amount
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_successful_acknowledgement
|
26
|
+
Nochex::Notification.any_instance.expects(:ssl_post).returns('AUTHORISED')
|
27
|
+
|
28
|
+
assert @nochex.acknowledge
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_failed_acknowledgement
|
32
|
+
Nochex::Notification.any_instance.expects(:ssl_post).returns('DECLINED')
|
33
|
+
|
34
|
+
assert !@nochex.acknowledge
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_respond_to_acknowledge
|
38
|
+
assert @nochex.respond_to?(:acknowledge)
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_nil_notification
|
42
|
+
Nochex::Notification.any_instance.expects(:ssl_post).returns('DECLINED')
|
43
|
+
notification = Nochex::Notification.new(nil)
|
44
|
+
assert !notification.acknowledge
|
45
|
+
end
|
46
|
+
|
47
|
+
private
|
48
|
+
def http_raw_data
|
49
|
+
"transaction_date=27/09/2006 22:30:53&transaction_id=91191&order_id=11&from_email=test2@nochex.com&to_email=test1@nochex.com&amount=31.66&security_key=L254524366479818252491366&status=test&custom="
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../test_helper'
|
2
|
+
|
3
|
+
class NotificationTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@notification = Notification.new(http_raw_data)
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_raw
|
11
|
+
assert_equal http_raw_data, @notification.raw
|
12
|
+
end
|
13
|
+
|
14
|
+
def test_parse
|
15
|
+
assert_equal "500.00", @notification.params['mc_gross']
|
16
|
+
assert_equal "confirmed", @notification.params['address_status']
|
17
|
+
assert_equal "EVMXCLDZJV77Q", @notification.params['payer_id']
|
18
|
+
assert_equal "Completed", @notification.params['payment_status']
|
19
|
+
assert_equal CGI.unescape("15%3A23%3A54+Apr+15%2C+2005+PDT"), @notification.params['payment_date']
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_accessors
|
23
|
+
assert_raise(NotImplementedError){ @notification.status }
|
24
|
+
assert_raise(NotImplementedError){ @notification.gross }
|
25
|
+
assert_raise(NotImplementedError){ @notification.gross_cents }
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_notification_data_with_period
|
29
|
+
notification = Notification.new(http_raw_data_with_period)
|
30
|
+
assert_equal 'clicked', notification.params['checkout.x']
|
31
|
+
end
|
32
|
+
|
33
|
+
private
|
34
|
+
def http_raw_data
|
35
|
+
"mc_gross=500.00&address_status=confirmed&payer_id=EVMXCLDZJV77Q&tax=0.00&address_street=164+Waverley+Street&payment_date=15%3A23%3A54+Apr+15%2C+2005+PDT&payment_status=Completed&address_zip=K2P0V6&first_name=Tobias&mc_fee=15.05&address_country_code=CA&address_name=Tobias+Luetke¬ify_version=1.7&custom=&payer_status=unverified&business=tobi%40leetsoft.com&address_country=Canada&address_city=Ottawa&quantity=1&payer_email=tobi%40snowdevil.ca&verify_sign=AEt48rmhLYtkZ9VzOGAtwL7rTGxUAoLNsuf7UewmX7UGvcyC3wfUmzJP&txn_id=6G996328CK404320L&payment_type=instant&last_name=Luetke&address_state=Ontario&receiver_email=tobi%40leetsoft.com&payment_fee=&receiver_id=UQ8PDYXJZQD9Y&txn_type=web_accept&item_name=Store+Purchase&mc_currency=CAD&item_number=&test_ipn=1&payment_gross=&shipping=0.00"
|
36
|
+
end
|
37
|
+
|
38
|
+
def http_raw_data_with_period
|
39
|
+
"mc_gross=500.00&address_status=confirmed&payer_id=EVMXCLDZJV77Q&tax=0.00&address_street=164+Waverley+Street&payment_date=15%3A23%3A54+Apr+15%2C+2005+PDT&payment_status=Completed&address_zip=K2P0V6&first_name=Tobias&mc_fee=15.05&address_country_code=CA&address_name=Tobias+Luetke¬ify_version=1.7&custom=&payer_status=unverified&business=tobi%40leetsoft.com&address_country=Canada&address_city=Ottawa&quantity=1&payer_email=tobi%40snowdevil.ca&verify_sign=AEt48rmhLYtkZ9VzOGAtwL7rTGxUAoLNsuf7UewmX7UGvcyC3wfUmzJP&txn_id=6G996328CK404320L&payment_type=instant&last_name=Luetke&address_state=Ontario&receiver_email=tobi%40leetsoft.com&payment_fee=&receiver_id=UQ8PDYXJZQD9Y&txn_type=web_accept&item_name=Store+Purchase&mc_currency=CAD&item_number=&test_ipn=1&payment_gross=&shipping=0.00&checkout.x=clicked"
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,85 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../test_helper'
|
2
|
+
|
3
|
+
class PaypalNotificationTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@paypal = Paypal::Notification.new(http_raw_data)
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_accessors
|
11
|
+
assert @paypal.complete?
|
12
|
+
assert_equal "Completed", @paypal.status
|
13
|
+
assert_equal "6G996328CK404320L", @paypal.transaction_id
|
14
|
+
assert_equal "web_accept", @paypal.type
|
15
|
+
assert_equal "500.00", @paypal.gross
|
16
|
+
assert_equal "15.05", @paypal.fee
|
17
|
+
assert_equal "CAD", @paypal.currency
|
18
|
+
assert_equal 'tobi@leetsoft.com' , @paypal.account
|
19
|
+
assert @paypal.test?
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_compositions
|
23
|
+
assert_equal Money.new(50000, 'CAD'), @paypal.amount
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_acknowledgement
|
27
|
+
Paypal::Notification.any_instance.stubs(:ssl_post).returns('VERIFIED')
|
28
|
+
assert @paypal.acknowledge
|
29
|
+
|
30
|
+
Paypal::Notification.any_instance.stubs(:ssl_post).returns('INVALID')
|
31
|
+
assert !@paypal.acknowledge
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_send_acknowledgement
|
35
|
+
Paypal::Notification.any_instance.expects(:ssl_post).with(
|
36
|
+
"#{Paypal.service_url}?cmd=_notify-validate",
|
37
|
+
http_raw_data,
|
38
|
+
{ 'Content-Length' => "#{http_raw_data.size}", 'User-Agent' => "Active Merchant -- http://activemerchant.org" }
|
39
|
+
).returns('VERIFIED')
|
40
|
+
|
41
|
+
assert @paypal.acknowledge
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_payment_successful_status
|
45
|
+
notification = Paypal::Notification.new('payment_status=Completed')
|
46
|
+
assert_equal 'Completed', notification.status
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_payment_pending_status
|
50
|
+
notification = Paypal::Notification.new('payment_status=Pending')
|
51
|
+
assert_equal 'Pending', notification.status
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_payment_failure_status
|
55
|
+
notification = Paypal::Notification.new('payment_status=Failed')
|
56
|
+
assert_equal 'Failed', notification.status
|
57
|
+
end
|
58
|
+
|
59
|
+
def test_respond_to_acknowledge
|
60
|
+
assert @paypal.respond_to?(:acknowledge)
|
61
|
+
end
|
62
|
+
|
63
|
+
def test_item_id_mapping
|
64
|
+
notification = Paypal::Notification.new('item_number=1')
|
65
|
+
assert_equal '1', notification.item_id
|
66
|
+
end
|
67
|
+
|
68
|
+
def test_custom_mapped_to_item_id
|
69
|
+
notification = Paypal::Notification.new('custom=1')
|
70
|
+
assert_equal '1', notification.item_id
|
71
|
+
end
|
72
|
+
|
73
|
+
def test_nil_notification
|
74
|
+
notification = Paypal::Notification.new(nil)
|
75
|
+
|
76
|
+
Paypal::Notification.any_instance.stubs(:ssl_post).returns('INVALID')
|
77
|
+
assert !@paypal.acknowledge
|
78
|
+
end
|
79
|
+
|
80
|
+
private
|
81
|
+
|
82
|
+
def http_raw_data
|
83
|
+
"mc_gross=500.00&address_status=confirmed&payer_id=EVMXCLDZJV77Q&tax=0.00&address_street=164+Waverley+Street&payment_date=15%3A23%3A54+Apr+15%2C+2005+PDT&payment_status=Completed&address_zip=K2P0V6&first_name=Tobias&mc_fee=15.05&address_country_code=CA&address_name=Tobias+Luetke¬ify_version=1.7&custom=&payer_status=unverified&business=tobi%40leetsoft.com&address_country=Canada&address_city=Ottawa&quantity=1&payer_email=tobi%40snowdevil.ca&verify_sign=AEt48rmhLYtkZ9VzOGAtwL7rTGxUAoLNsuf7UewmX7UGvcyC3wfUmzJP&txn_id=6G996328CK404320L&payment_type=instant&last_name=Luetke&address_state=Ontario&receiver_email=tobi%40leetsoft.com&payment_fee=&receiver_id=UQ8PDYXJZQD9Y&txn_type=web_accept&item_name=Store+Purchase&mc_currency=CAD&item_number=&test_ipn=1&payment_gross=&shipping=0.00"
|
84
|
+
end
|
85
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../../test_helper'
|
2
|
+
|
3
|
+
class TwoCheckoutNotificationTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@test_notification = TwoCheckout::Notification.new(test_http_raw_data)
|
8
|
+
@live_notification = TwoCheckout::Notification.new(live_http_raw_data)
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_accessors
|
12
|
+
assert @test_notification.complete?
|
13
|
+
assert @test_notification.test?
|
14
|
+
assert_equal "Completed", @test_notification.status
|
15
|
+
|
16
|
+
assert_equal "3644445821", @test_notification.transaction_id
|
17
|
+
assert_equal "10", @test_notification.item_id
|
18
|
+
assert_equal "31.66", @test_notification.gross
|
19
|
+
assert_equal "USD", @test_notification.currency
|
20
|
+
assert_equal 'cody@example.com', @test_notification.payer_email
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_live_accessors
|
24
|
+
assert @live_notification.complete?
|
25
|
+
assert !@live_notification.test?
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_compositions
|
29
|
+
assert_equal Money.new(3166, 'USD'), @test_notification.amount
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_acknowledgement
|
33
|
+
assert @test_notification.acknowledge
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_verififcation_of_test_notification
|
37
|
+
assert !@test_notification.verify('tango')
|
38
|
+
@test_notification
|
39
|
+
|
40
|
+
|
41
|
+
assert @live_notification.verify('tango')
|
42
|
+
|
43
|
+
order = @test_notification.params['order_number']
|
44
|
+
|
45
|
+
end
|
46
|
+
|
47
|
+
private
|
48
|
+
def test_http_raw_data
|
49
|
+
"sid=1232919&fixed=Y&key=B5446FF1061F5522C29CCCA0F95EA375&state=ON&email=cody%40example.com&city=Ottawa&street_address=1+-+8+Clarence+St%2C+Apartment+5&product_id=&cart_order_id=10&tcoid=8032992fe053170efb7e58de35b07d39&country=Canada&order_number=3644445821&merchant_order_id=%231010&option-=&cart_id=10&Product_description=&lang=&demo=Y&pay_method=CC&quantity=1&total=31.66&phone=(555)555-5555&return_url=&credit_card_processed=Y&zip=K1M+3G7&merchant_product_id=10&card_holder_name=Cody+Fauser"
|
50
|
+
end
|
51
|
+
|
52
|
+
def live_http_raw_data
|
53
|
+
"sid=1232919&fixed=Y&key=0ee5cd112a9d34952167399c6b55d14f&state=ON&email=cody%40example.com&city=Ottawa&street_address=1+-+8+Clarence+St%2C+Apartment+5&product_id=&cart_order_id=10&tcoid=8032992fe053170efb7e58de35b07d39&country=Canada&order_number=3644445821&merchant_order_id=%231010&option-=&cart_id=10&Product_description=&lang=&pay_method=CC&quantity=1&total=31.66&phone=(555)555-5555&return_url=&credit_card_processed=Y&zip=K1M+3G7&merchant_product_id=10&card_holder_name=Cody+Fauser"
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../test_helper'
|
2
|
+
|
3
|
+
class PaypalModuleTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def test_notification_method
|
7
|
+
assert_instance_of Paypal::Notification, Paypal.notification('name=cody')
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_test_mode
|
11
|
+
ActiveMerchant::Billing::Base.integration_mode = :test
|
12
|
+
assert_equal 'https://www.sandbox.paypal.com/cgi-bin/webscr', Paypal.service_url
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_production_mode
|
16
|
+
ActiveMerchant::Billing::Base.integration_mode = :production
|
17
|
+
assert_equal 'https://www.paypal.com/cgi-bin/webscr', Paypal.service_url
|
18
|
+
end
|
19
|
+
|
20
|
+
def test_invalid_mode
|
21
|
+
ActiveMerchant::Billing::Base.integration_mode = :zoomin
|
22
|
+
assert_raise(StandardError){ Paypal.service_url }
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,9 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../test_helper'
|
2
|
+
|
3
|
+
class TwoCheckoutModuleTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def test_notification_method
|
7
|
+
assert_instance_of TwoCheckout::Notification, TwoCheckout.notification('name=cody')
|
8
|
+
end
|
9
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../test_helper'
|
2
|
+
|
3
|
+
class MyPost < PostData
|
4
|
+
self.required_fields = [ :ccnumber, :ccexp, :firstname, :lastname, :username, :password, :order_id, :key, :time ]
|
5
|
+
end
|
6
|
+
|
7
|
+
class PostDataTest < Test::Unit::TestCase
|
8
|
+
|
9
|
+
def setup
|
10
|
+
|
11
|
+
end
|
12
|
+
|
13
|
+
def teardown
|
14
|
+
PostData.required_fields = []
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_element_assignment
|
18
|
+
name = 'Cody Fauser'
|
19
|
+
post = PostData.new
|
20
|
+
|
21
|
+
post[:name] = name
|
22
|
+
assert_equal name, post[:name]
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_ignore_blank_fields
|
26
|
+
post = PostData.new
|
27
|
+
assert_equal 0, post.keys.size
|
28
|
+
|
29
|
+
post[:name] = ''
|
30
|
+
assert_equal 0, post.keys.size
|
31
|
+
|
32
|
+
post[:name] = nil
|
33
|
+
assert_equal 0, post.keys.size
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_dont_ignore_required_blank_fields
|
37
|
+
PostData.required_fields = [ :name ]
|
38
|
+
post = PostData.new
|
39
|
+
|
40
|
+
assert_equal 0, post.keys.size
|
41
|
+
|
42
|
+
post[:name] = ''
|
43
|
+
assert_equal 1, post.keys.size
|
44
|
+
assert_equal '', post[:name]
|
45
|
+
|
46
|
+
post[:name] = nil
|
47
|
+
assert_equal 1, post.keys.size
|
48
|
+
assert_nil post[:name]
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_subclass
|
52
|
+
post = MyPost.new
|
53
|
+
assert_equal [ :ccnumber, :ccexp, :firstname, :lastname, :username, :password, :order_id, :key, :time ], post.required_fields
|
54
|
+
end
|
55
|
+
end
|