patmaddox-activemerchant 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +480 -0
- data/CONTRIBUTORS +126 -0
- data/MIT-LICENSE +20 -0
- data/README +136 -0
- data/Rakefile +153 -0
- data/gem-public_cert.pem +20 -0
- data/init.rb +3 -0
- data/lib/active_merchant.rb +66 -0
- data/lib/active_merchant/billing/avs_result.rb +98 -0
- data/lib/active_merchant/billing/base.rb +57 -0
- data/lib/active_merchant/billing/check.rb +68 -0
- data/lib/active_merchant/billing/credit_card.rb +159 -0
- data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
- data/lib/active_merchant/billing/credit_card_methods.rb +125 -0
- data/lib/active_merchant/billing/cvv_result.rb +38 -0
- data/lib/active_merchant/billing/expiry_date.rb +34 -0
- data/lib/active_merchant/billing/gateway.rb +158 -0
- data/lib/active_merchant/billing/gateways.rb +18 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +657 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +743 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +233 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +101 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +406 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +595 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +229 -0
- data/lib/active_merchant/billing/gateways/elavon.rb +134 -0
- data/lib/active_merchant/billing/gateways/eway.rb +277 -0
- data/lib/active_merchant/billing/gateways/exact.rb +222 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +172 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +270 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +449 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +154 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +283 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +220 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +205 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
- data/lib/active_merchant/billing/gateways/ogone.rb +279 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +236 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
- data/lib/active_merchant/billing/gateways/payflow_express.rb +138 -0
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
- data/lib/active_merchant/billing/gateways/payment_express.rb +230 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +121 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +326 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +130 -0
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +20 -0
- data/lib/active_merchant/billing/gateways/plugnpay.rb +292 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +214 -0
- data/lib/active_merchant/billing/gateways/psl_card.rb +306 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +213 -0
- data/lib/active_merchant/billing/gateways/realex.rb +200 -0
- data/lib/active_merchant/billing/gateways/sage.rb +146 -0
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +116 -0
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
- data/lib/active_merchant/billing/gateways/sage_pay.rb +308 -0
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +157 -0
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +452 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +265 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
- data/lib/active_merchant/billing/gateways/transax.rb +26 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +418 -0
- data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +228 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +189 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
- data/lib/active_merchant/billing/integrations.rb +29 -0
- data/lib/active_merchant/billing/integrations/action_view_helper.rb +79 -0
- data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
- data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
- data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
- data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
- data/lib/active_merchant/billing/integrations/chronopay/helper.rb +81 -0
- data/lib/active_merchant/billing/integrations/chronopay/notification.rb +156 -0
- data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
- data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
- data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
- data/lib/active_merchant/billing/integrations/gestpay/notification.rb +83 -0
- data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/helper.rb +93 -0
- data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
- data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
- data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
- data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
- data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
- data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
- data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
- data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/notification.rb +62 -0
- data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
- data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
- data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
- data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/quickpay.rb +17 -0
- data/lib/active_merchant/billing/integrations/quickpay/helper.rb +72 -0
- data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
- data/lib/active_merchant/billing/integrations/return.rb +35 -0
- data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
- data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
- data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
- data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
- data/lib/active_merchant/billing/response.rb +32 -0
- data/lib/active_merchant/lib/connection.rb +170 -0
- data/lib/active_merchant/lib/country.rb +319 -0
- 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 +47 -0
- data/lib/active_merchant/lib/requires_parameters.rb +16 -0
- data/lib/active_merchant/lib/utils.rb +18 -0
- data/lib/active_merchant/lib/validateable.rb +76 -0
- data/lib/certs/cacert.pem +7815 -0
- data/lib/support/gateway_support.rb +58 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/test/fixtures.yml +355 -0
- data/test/remote/gateways/remote_authorize_net_cim_test.rb +460 -0
- data/test/remote/gateways/remote_authorize_net_test.rb +145 -0
- data/test/remote/gateways/remote_beanstream_interac_test.rb +53 -0
- data/test/remote/gateways/remote_beanstream_test.rb +150 -0
- data/test/remote/gateways/remote_braintree_test.rb +154 -0
- data/test/remote/gateways/remote_card_stream_test.rb +148 -0
- data/test/remote/gateways/remote_cyber_source_test.rb +144 -0
- data/test/remote/gateways/remote_data_cash_test.rb +357 -0
- data/test/remote/gateways/remote_efsnet_test.rb +81 -0
- data/test/remote/gateways/remote_elavon_test.rb +66 -0
- data/test/remote/gateways/remote_eway_test.rb +74 -0
- data/test/remote/gateways/remote_exact_test.rb +60 -0
- data/test/remote/gateways/remote_first_pay_test.rb +87 -0
- data/test/remote/gateways/remote_instapay_test.rb +61 -0
- data/test/remote/gateways/remote_jetpay_test.rb +103 -0
- data/test/remote/gateways/remote_linkpoint_test.rb +121 -0
- data/test/remote/gateways/remote_merchant_e_solutions_test.rb +173 -0
- data/test/remote/gateways/remote_merchant_ware_test.rb +113 -0
- data/test/remote/gateways/remote_modern_payments_cim_test.rb +58 -0
- data/test/remote/gateways/remote_modern_payments_test.rb +57 -0
- data/test/remote/gateways/remote_moneris_test.rb +82 -0
- data/test/remote/gateways/remote_net_registry_test.rb +85 -0
- data/test/remote/gateways/remote_netbilling_test.rb +70 -0
- data/test/remote/gateways/remote_ogone_test.rb +115 -0
- data/test/remote/gateways/remote_pay_junction_test.rb +143 -0
- data/test/remote/gateways/remote_pay_secure_test.rb +39 -0
- data/test/remote/gateways/remote_payflow_express_test.rb +50 -0
- data/test/remote/gateways/remote_payflow_test.rb +237 -0
- data/test/remote/gateways/remote_payflow_uk_test.rb +173 -0
- data/test/remote/gateways/remote_payment_express_test.rb +136 -0
- data/test/remote/gateways/remote_paypal_express_test.rb +49 -0
- data/test/remote/gateways/remote_paypal_test.rb +191 -0
- data/test/remote/gateways/remote_plugnpay_test.rb +72 -0
- data/test/remote/gateways/remote_psigate_test.rb +50 -0
- data/test/remote/gateways/remote_psl_card_test.rb +125 -0
- data/test/remote/gateways/remote_quickpay_test.rb +190 -0
- data/test/remote/gateways/remote_realex_test.rb +224 -0
- data/test/remote/gateways/remote_sage_bankcard_test.rb +109 -0
- data/test/remote/gateways/remote_sage_pay_test.rb +219 -0
- data/test/remote/gateways/remote_sage_test.rb +87 -0
- data/test/remote/gateways/remote_sage_virtual_check_test.rb +62 -0
- data/test/remote/gateways/remote_sallie_mae_test.rb +51 -0
- data/test/remote/gateways/remote_secure_pay_au_test.rb +40 -0
- data/test/remote/gateways/remote_secure_pay_tech_test.rb +37 -0
- data/test/remote/gateways/remote_secure_pay_test.rb +28 -0
- data/test/remote/gateways/remote_skipjack_test.rb +105 -0
- data/test/remote/gateways/remote_trans_first_test.rb +34 -0
- data/test/remote/gateways/remote_transax_test.rb +112 -0
- data/test/remote/gateways/remote_trust_commerce_test.rb +152 -0
- data/test/remote/gateways/remote_usa_epay_test.rb +46 -0
- data/test/remote/gateways/remote_verifi_test.rb +107 -0
- data/test/remote/gateways/remote_viaklix_test.rb +43 -0
- data/test/remote/gateways/remote_wirecard_test.rb +111 -0
- data/test/remote/integrations/remote_gestpay_integration_test.rb +37 -0
- data/test/remote/integrations/remote_paypal_integration_test.rb +26 -0
- data/test/test_helper.rb +182 -0
- data/test/unit/avs_result_test.rb +59 -0
- data/test/unit/base_test.rb +55 -0
- data/test/unit/check_test.rb +88 -0
- data/test/unit/connection_test.rb +129 -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 +19 -0
- data/test/unit/credit_card_methods_test.rb +179 -0
- data/test/unit/credit_card_test.rb +318 -0
- data/test/unit/cvv_result_test.rb +33 -0
- data/test/unit/expiry_date_test.rb +32 -0
- data/test/unit/gateways/authorize_net_cim_test.rb +676 -0
- data/test/unit/gateways/authorize_net_test.rb +290 -0
- data/test/unit/gateways/beanstream_interac_test.rb +51 -0
- data/test/unit/gateways/beanstream_test.rb +108 -0
- data/test/unit/gateways/bogus_test.rb +46 -0
- data/test/unit/gateways/braintree_test.rb +126 -0
- data/test/unit/gateways/card_stream_test.rb +90 -0
- data/test/unit/gateways/cyber_source_test.rb +188 -0
- data/test/unit/gateways/data_cash_test.rb +133 -0
- data/test/unit/gateways/efsnet_test.rb +123 -0
- data/test/unit/gateways/elavon_test.rb +139 -0
- data/test/unit/gateways/eway_test.rb +118 -0
- data/test/unit/gateways/exact_test.rb +156 -0
- data/test/unit/gateways/first_pay_test.rb +125 -0
- data/test/unit/gateways/gateway_test.rb +48 -0
- data/test/unit/gateways/instapay_test.rb +102 -0
- data/test/unit/gateways/jetpay_test.rb +185 -0
- data/test/unit/gateways/linkpoint_test.rb +197 -0
- data/test/unit/gateways/merchant_e_solutions_test.rb +169 -0
- data/test/unit/gateways/merchant_ware_test.rb +188 -0
- data/test/unit/gateways/modern_payments_cim_test.rb +162 -0
- data/test/unit/gateways/moneris_test.rb +158 -0
- data/test/unit/gateways/net_registry_test.rb +416 -0
- data/test/unit/gateways/netbilling_test.rb +54 -0
- data/test/unit/gateways/ogone_test.rb +319 -0
- data/test/unit/gateways/pay_junction_test.rb +123 -0
- data/test/unit/gateways/pay_secure_test.rb +71 -0
- data/test/unit/gateways/payflow_express_test.rb +173 -0
- data/test/unit/gateways/payflow_express_uk_test.rb +86 -0
- data/test/unit/gateways/payflow_test.rb +305 -0
- data/test/unit/gateways/payflow_uk_test.rb +30 -0
- data/test/unit/gateways/payment_express_test.rb +195 -0
- data/test/unit/gateways/paypal_express_test.rb +382 -0
- data/test/unit/gateways/paypal_test.rb +569 -0
- data/test/unit/gateways/plugnpay_test.rb +86 -0
- data/test/unit/gateways/psigate_test.rb +169 -0
- data/test/unit/gateways/psl_card_test.rb +64 -0
- data/test/unit/gateways/quickpay_test.rb +112 -0
- data/test/unit/gateways/realex_test.rb +151 -0
- data/test/unit/gateways/sage_bankcard_test.rb +196 -0
- data/test/unit/gateways/sage_pay_test.rb +139 -0
- data/test/unit/gateways/sage_virtual_check_test.rb +71 -0
- data/test/unit/gateways/sallie_mae_test.rb +53 -0
- data/test/unit/gateways/secure_pay_au_test.rb +207 -0
- data/test/unit/gateways/secure_pay_tech_test.rb +44 -0
- data/test/unit/gateways/secure_pay_test.rb +87 -0
- data/test/unit/gateways/skip_jack_test.rb +213 -0
- data/test/unit/gateways/trans_first_test.rb +112 -0
- data/test/unit/gateways/trust_commerce_test.rb +90 -0
- data/test/unit/gateways/usa_epay_test.rb +128 -0
- data/test/unit/gateways/verifi_test.rb +96 -0
- data/test/unit/gateways/viaklix_test.rb +78 -0
- data/test/unit/gateways/wirecard_test.rb +250 -0
- data/test/unit/generators/test_gateway_generator.rb +46 -0
- data/test/unit/generators/test_generator_helper.rb +20 -0
- data/test/unit/generators/test_integration_generator.rb +53 -0
- data/test/unit/integrations/action_view_helper_test.rb +50 -0
- data/test/unit/integrations/bogus_module_test.rb +20 -0
- data/test/unit/integrations/chronopay_module_test.rb +13 -0
- data/test/unit/integrations/gestpay_module_test.rb +14 -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/hi_trust_helper_test.rb +16 -0
- data/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
- data/test/unit/integrations/helpers/paypal_helper_test.rb +171 -0
- data/test/unit/integrations/helpers/quickpay_helper_test.rb +40 -0
- data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
- data/test/unit/integrations/hi_trust_module_test.rb +13 -0
- data/test/unit/integrations/nochex_module_test.rb +13 -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/hi_trust_notification_test.rb +59 -0
- data/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
- data/test/unit/integrations/notifications/notification_test.rb +54 -0
- data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
- data/test/unit/integrations/notifications/quickpay_notification_test.rb +69 -0
- data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
- data/test/unit/integrations/paypal_module_test.rb +28 -0
- data/test/unit/integrations/quickpay_module_test.rb +9 -0
- data/test/unit/integrations/returns/chronopay_return_test.rb +11 -0
- data/test/unit/integrations/returns/gestpay_return_test.rb +10 -0
- data/test/unit/integrations/returns/hi_trust_return_test.rb +24 -0
- data/test/unit/integrations/returns/nochex_return_test.rb +10 -0
- data/test/unit/integrations/returns/paypal_return_test.rb +10 -0
- data/test/unit/integrations/returns/return_test.rb +11 -0
- data/test/unit/integrations/returns/two_checkout_return_test.rb +24 -0
- data/test/unit/integrations/two_checkout_module_test.rb +13 -0
- data/test/unit/post_data_test.rb +55 -0
- data/test/unit/posts_data_test.rb +48 -0
- data/test/unit/response_test.rb +28 -0
- data/test/unit/utils_test.rb +7 -0
- data/test/unit/validateable_test.rb +60 -0
- metadata +367 -0
@@ -0,0 +1,85 @@
|
|
1
|
+
require '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,69 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class QuickpayNotificationTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def setup
|
7
|
+
@quickpay = Quickpay::Notification.new(http_raw_data, :md5secret => "mysecretmd5string")
|
8
|
+
end
|
9
|
+
|
10
|
+
def test_accessors
|
11
|
+
assert @quickpay.complete?
|
12
|
+
assert_equal "000", @quickpay.status
|
13
|
+
assert_equal "88", @quickpay.transaction_id
|
14
|
+
assert_equal "order-4232", @quickpay.item_id
|
15
|
+
assert_equal "89.50", @quickpay.gross
|
16
|
+
assert_equal "DKK", @quickpay.currency
|
17
|
+
assert_equal Time.parse("2008-11-05 21:57:37"), @quickpay.received_at
|
18
|
+
assert @quickpay.test?
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_compositions
|
22
|
+
assert_equal Money.new(8950, 'DKK'), @quickpay.amount
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_acknowledgement
|
26
|
+
assert @quickpay.acknowledge
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_failed_acknnowledgement
|
30
|
+
@quickpay = Quickpay::Notification.new(http_raw_data, :md5secret => "badmd5string")
|
31
|
+
assert !@quickpay.acknowledge
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_acknowledgement_with_cardnumber
|
35
|
+
@quickpay = Quickpay::Notification.new(http_raw_data_with_cardnumber, :md5secret => "mysecretmd5string")
|
36
|
+
assert @quickpay.acknowledge
|
37
|
+
end
|
38
|
+
|
39
|
+
def test_quickpay_attributes
|
40
|
+
assert_equal "Authorized", @quickpay.state
|
41
|
+
assert_equal "authorize", @quickpay.msgtype
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_generate_md5string
|
45
|
+
assert_equal "authorizeorder-42328950DKK081105215737Authorized000Ok000OK89898989info@pinds.com88visa-dkYesmysecretmd5string",
|
46
|
+
@quickpay.generate_md5string
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_generate_md5check
|
50
|
+
assert_equal "e70bd0e528dc335ac74d5f1c348fe2f4", @quickpay.generate_md5check
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_respond_to_acknowledge
|
54
|
+
assert @quickpay.respond_to?(:acknowledge)
|
55
|
+
end
|
56
|
+
|
57
|
+
private
|
58
|
+
def http_raw_data
|
59
|
+
"msgtype=authorize&ordernumber=order-4232&amount=8950¤cy=DKK&time=081105215737&state=Authorized&" +
|
60
|
+
"chstat=000&chstatmsg=Ok&qpstat=000&qpstatmsg=OK&merchant=89898989&merchantemail=info@pinds.com&transaction=88&" +
|
61
|
+
"cardtype=visa-dk&testmode=Yes&md5check=e70bd0e528dc335ac74d5f1c348fe2f4"
|
62
|
+
end
|
63
|
+
|
64
|
+
def http_raw_data_with_cardnumber
|
65
|
+
"msgtype=authorize&ordernumber=order-4232&amount=8950¤cy=DKK&time=081105215737&state=Authorized&" +
|
66
|
+
"chstat=000&chstatmsg=Ok&qpstat=000&qpstatmsg=OK&merchant=89898989&merchantemail=info@pinds.com&transaction=88&" +
|
67
|
+
"cardtype=visa-dk&testmode=Yes&cardnumber=XXXXXXXXXXXX4092&md5check=bded8685e10790a9351a9d51285cec9d"
|
68
|
+
end
|
69
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require '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,28 @@
|
|
1
|
+
require '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
|
+
|
25
|
+
def test_return_method
|
26
|
+
assert_instance_of Paypal::Return, Paypal.return('name=cody')
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class HiTrustReturnTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def test_successful_return
|
7
|
+
r = HiTrust::Return.new('order_id=&mscssid=&retcode=00&ordernumber=1138742&type=Auth')
|
8
|
+
assert r.success?
|
9
|
+
assert_equal HiTrust::Return::SUCCESS, r.params['retcode']
|
10
|
+
assert_equal HiTrust::Return::CODES[HiTrust::Return::SUCCESS], r.message
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_failed_return
|
14
|
+
r = HiTrust::Return.new('retcode=-100')
|
15
|
+
assert_false r.success?
|
16
|
+
assert_equal HiTrust::Return::CODES['-100'], r.message
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_unknown_return
|
20
|
+
r = HiTrust::Return.new('retcode=unknown')
|
21
|
+
assert_false r.success?
|
22
|
+
assert_nil r.message
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class TwoCheckoutReturnTest < Test::Unit::TestCase
|
4
|
+
include ActiveMerchant::Billing::Integrations
|
5
|
+
|
6
|
+
def test_successful_purchase
|
7
|
+
r = TwoCheckout::Return.new(successful_purchase)
|
8
|
+
assert r.success?
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_pending_purchase
|
12
|
+
r = TwoCheckout::Return.new(failed_purchase)
|
13
|
+
assert !r.success?
|
14
|
+
end
|
15
|
+
|
16
|
+
private
|
17
|
+
def successful_purchase
|
18
|
+
'sid=1232919&fixed=Y&key=C17C887BDCCD0499264FAE9F578CCA66&state=ON&email=codyfauser%40gmail.com&street_address=138+Clarence+St.&city=Ottawa&cart_order_id=9&order_number=3860340141&merchant_order_id=%231009&country=CAN&ip_country=&cart_id=9&lang=en&demo=Y&pay_method=CC&total=118.30&phone=%28613%29555-5555+&credit_card_processed=Y&zip=K1N5P8&street_address2=Apartment+1&card_holder_name=Cody++Fauser'
|
19
|
+
end
|
20
|
+
|
21
|
+
def failed_purchase
|
22
|
+
'sid=1232919&fixed=Y&key=C17C887BDCCD0499264FAE9F578CCA66&state=ON&email=codyfauser%40gmail.com&street_address=138+Clarence+St.&city=Ottawa&cart_order_id=9&order_number=3860340141&merchant_order_id=%231009&country=CAN&ip_country=&cart_id=9&lang=en&demo=Y&pay_method=CC&total=118.30&phone=%28613%29555-5555+&credit_card_processed=K&zip=K1N5P8&street_address2=Apartment+1&card_holder_name=Cody++Fauser'
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require '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
|
+
|
10
|
+
def test_return_method
|
11
|
+
assert_instance_of TwoCheckout::Return, TwoCheckout.return('name=cody')
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
require '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
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class PostsDataTests < Test::Unit::TestCase
|
4
|
+
|
5
|
+
def setup
|
6
|
+
@url = 'http://example.com'
|
7
|
+
@gateway = SimpleTestGateway.new
|
8
|
+
end
|
9
|
+
|
10
|
+
def teardown
|
11
|
+
SimpleTestGateway.retry_safe = false
|
12
|
+
end
|
13
|
+
|
14
|
+
def test_single_successful_post
|
15
|
+
ActiveMerchant::Connection.any_instance.expects(:request).returns('')
|
16
|
+
|
17
|
+
assert_nothing_raised do
|
18
|
+
@gateway.ssl_post(@url, '')
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_multiple_successful_posts
|
23
|
+
ActiveMerchant::Connection.any_instance.expects(:request).times(2).returns('', '')
|
24
|
+
|
25
|
+
assert_nothing_raised do
|
26
|
+
@gateway.ssl_post(@url, '')
|
27
|
+
@gateway.ssl_post(@url, '')
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_setting_ssl_strict_outside_class_definition
|
32
|
+
assert_equal SimpleTestGateway.ssl_strict, SubclassGateway.ssl_strict
|
33
|
+
SimpleTestGateway.ssl_strict = !SimpleTestGateway.ssl_strict
|
34
|
+
assert_equal SimpleTestGateway.ssl_strict, SubclassGateway.ssl_strict
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_setting_timeouts
|
38
|
+
@gateway.class.open_timeout = 50
|
39
|
+
@gateway.class.read_timeout = 37
|
40
|
+
ActiveMerchant::Connection.any_instance.expects(:request).returns('')
|
41
|
+
ActiveMerchant::Connection.any_instance.expects(:open_timeout=).with(50)
|
42
|
+
ActiveMerchant::Connection.any_instance.expects(:read_timeout=).with(37)
|
43
|
+
|
44
|
+
assert_nothing_raised do
|
45
|
+
@gateway.ssl_post(@url, '')
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|