activemerchant 1.4.2 → 1.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (227) hide show
  1. data.tar.gz.sig +0 -0
  2. data/CHANGELOG +78 -0
  3. data/{CONTRIBUTERS → CONTRIBUTORS} +44 -0
  4. data/{README → README.rdoc} +4 -1
  5. data/Rakefile +7 -13
  6. data/lib/active_merchant.rb +11 -21
  7. data/lib/active_merchant/billing/avs_result.rb +13 -10
  8. data/lib/active_merchant/billing/base.rb +2 -2
  9. data/lib/active_merchant/billing/check.rb +1 -1
  10. data/lib/active_merchant/billing/credit_card_methods.rb +2 -2
  11. data/lib/active_merchant/billing/expiry_date.rb +10 -4
  12. data/lib/active_merchant/billing/gateway.rb +7 -6
  13. data/lib/active_merchant/billing/gateways.rb +18 -3
  14. data/lib/active_merchant/billing/gateways/authorize_net.rb +20 -12
  15. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +40 -6
  16. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb.orig +736 -0
  17. data/lib/active_merchant/billing/gateways/braintree.rb +6 -211
  18. data/lib/active_merchant/billing/gateways/data_cash.rb +5 -7
  19. data/lib/active_merchant/billing/gateways/elavon.rb +134 -0
  20. data/lib/active_merchant/billing/gateways/eway.rb +7 -2
  21. data/lib/active_merchant/billing/gateways/first_pay.rb +172 -0
  22. data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
  23. data/lib/active_merchant/billing/gateways/jetpay.rb +270 -0
  24. data/lib/active_merchant/billing/gateways/linkpoint.rb +65 -12
  25. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +154 -0
  26. data/lib/active_merchant/billing/gateways/merchant_ware.rb +283 -0
  27. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +12 -6
  28. data/lib/active_merchant/billing/gateways/ogone.rb +279 -0
  29. data/lib/active_merchant/billing/gateways/pay_secure.rb +1 -1
  30. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +1 -1
  31. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +1 -1
  32. data/lib/active_merchant/billing/gateways/payflow_express.rb +1 -1
  33. data/lib/active_merchant/billing/gateways/payment_express.rb +20 -32
  34. data/lib/active_merchant/billing/gateways/paypal.rb +22 -9
  35. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +2 -1
  36. data/lib/active_merchant/billing/gateways/paypal_ca.rb +1 -1
  37. data/lib/active_merchant/billing/gateways/psl_card.rb +4 -6
  38. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +7 -1
  39. data/lib/active_merchant/billing/gateways/{protx.rb → sage_pay.rb} +60 -35
  40. data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
  41. data/lib/active_merchant/billing/gateways/secure_pay.rb +1 -1
  42. data/lib/active_merchant/billing/gateways/skip_jack.rb +23 -10
  43. data/lib/active_merchant/billing/gateways/smart_ps.rb +265 -0
  44. data/lib/active_merchant/billing/gateways/transax.rb +25 -0
  45. data/lib/active_merchant/billing/gateways/viaklix.rb +38 -14
  46. data/lib/active_merchant/billing/gateways/wirecard.rb +15 -2
  47. data/lib/active_merchant/billing/integrations.rb +18 -11
  48. data/lib/active_merchant/billing/integrations/bogus.rb +4 -3
  49. data/lib/active_merchant/billing/integrations/chronopay.rb +4 -3
  50. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +3 -1
  51. data/lib/active_merchant/billing/integrations/gestpay.rb +4 -5
  52. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +3 -1
  53. data/lib/active_merchant/billing/integrations/hi_trust.rb +4 -3
  54. data/lib/active_merchant/billing/integrations/nochex.rb +4 -3
  55. data/lib/active_merchant/billing/integrations/nochex/notification.rb +1 -1
  56. data/lib/active_merchant/billing/integrations/paypal.rb +3 -4
  57. data/lib/active_merchant/billing/integrations/paypal/helper.rb +9 -8
  58. data/lib/active_merchant/billing/integrations/quickpay.rb +2 -3
  59. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +1 -1
  60. data/lib/active_merchant/billing/integrations/two_checkout.rb +3 -3
  61. data/lib/active_merchant/lib/connection.rb +170 -0
  62. data/lib/active_merchant/lib/country.rb +4 -1
  63. data/lib/active_merchant/lib/posts_data.rb +22 -84
  64. data/test/fixtures.yml +39 -1
  65. data/test/remote/gateways/remote_authorize_net_cim_test.rb +2 -1
  66. data/test/remote/gateways/remote_authorize_net_test.rb +1 -1
  67. data/test/remote/gateways/remote_beanstream_interac_test.rb +1 -1
  68. data/test/remote/gateways/remote_beanstream_test.rb +1 -1
  69. data/test/remote/gateways/remote_braintree_test.rb +2 -9
  70. data/test/remote/gateways/remote_card_stream_test.rb +1 -1
  71. data/test/remote/gateways/remote_cyber_source_test.rb +1 -1
  72. data/test/remote/gateways/remote_data_cash_test.rb +1 -2
  73. data/test/remote/gateways/remote_efsnet_test.rb +1 -1
  74. data/test/remote/gateways/remote_elavon_test.rb +66 -0
  75. data/test/remote/gateways/remote_eway_test.rb +1 -1
  76. data/test/remote/gateways/remote_exact_test.rb +1 -1
  77. data/test/remote/gateways/remote_first_pay_test.rb +87 -0
  78. data/test/remote/gateways/remote_instapay_test.rb +61 -0
  79. data/test/remote/gateways/remote_jetpay_test.rb +103 -0
  80. data/test/remote/gateways/remote_linkpoint_test.rb +11 -2
  81. data/test/remote/gateways/remote_merchant_e_solutions_test.rb +173 -0
  82. data/test/remote/gateways/remote_merchant_ware_test.rb +113 -0
  83. data/test/remote/gateways/remote_modern_payments_cim_test.rb +1 -1
  84. data/test/remote/gateways/remote_modern_payments_test.rb +23 -9
  85. data/test/remote/gateways/remote_moneris_test.rb +1 -1
  86. data/test/remote/gateways/remote_net_registry_test.rb +1 -1
  87. data/test/remote/gateways/remote_netbilling_test.rb +1 -1
  88. data/test/remote/gateways/remote_ogone_test.rb +115 -0
  89. data/test/remote/gateways/remote_pay_junction_test.rb +1 -1
  90. data/test/remote/gateways/remote_pay_secure_test.rb +1 -1
  91. data/test/remote/gateways/remote_payflow_express_test.rb +1 -1
  92. data/test/remote/gateways/remote_payflow_test.rb +1 -1
  93. data/test/remote/gateways/remote_payflow_uk_test.rb +1 -1
  94. data/test/remote/gateways/remote_payment_express_test.rb +17 -7
  95. data/test/remote/gateways/remote_paypal_express_test.rb +1 -1
  96. data/test/remote/gateways/remote_paypal_test.rb +26 -2
  97. data/test/remote/gateways/remote_plugnpay_test.rb +1 -1
  98. data/test/remote/gateways/remote_psigate_test.rb +1 -1
  99. data/test/remote/gateways/remote_psl_card_test.rb +1 -3
  100. data/test/remote/gateways/remote_quickpay_test.rb +1 -1
  101. data/test/remote/gateways/remote_realex_test.rb +1 -1
  102. data/test/remote/gateways/remote_sage_bankcard_test.rb +1 -1
  103. data/test/remote/gateways/remote_sage_pay_test.rb +219 -0
  104. data/test/remote/gateways/remote_sage_test.rb +1 -1
  105. data/test/remote/gateways/remote_sage_virtual_check_test.rb +1 -1
  106. data/test/remote/gateways/remote_sallie_mae_test.rb +51 -0
  107. data/test/remote/gateways/remote_secure_pay_au_test.rb +1 -1
  108. data/test/remote/gateways/remote_secure_pay_tech_test.rb +1 -1
  109. data/test/remote/gateways/remote_secure_pay_test.rb +2 -2
  110. data/test/remote/gateways/remote_skipjack_test.rb +1 -1
  111. data/test/remote/gateways/remote_trans_first_test.rb +1 -1
  112. data/test/remote/gateways/remote_transax_test.rb +112 -0
  113. data/test/remote/gateways/remote_trust_commerce_test.rb +1 -1
  114. data/test/remote/gateways/remote_usa_epay_test.rb +1 -1
  115. data/test/remote/gateways/remote_verifi_test.rb +1 -1
  116. data/test/remote/gateways/remote_viaklix_test.rb +1 -1
  117. data/test/remote/gateways/remote_wirecard_test.rb +34 -0
  118. data/test/remote/integrations/remote_gestpay_integration_test.rb +1 -1
  119. data/test/remote/integrations/remote_paypal_integration_test.rb +1 -1
  120. data/test/test_helper.rb +81 -89
  121. data/test/unit/avs_result_test.rb +1 -1
  122. data/test/unit/base_test.rb +1 -2
  123. data/test/unit/check_test.rb +1 -1
  124. data/test/unit/connection_test.rb +129 -0
  125. data/test/unit/country_code_test.rb +1 -1
  126. data/test/unit/country_test.rb +1 -1
  127. data/test/unit/credit_card_formatting_test.rb +1 -1
  128. data/test/unit/credit_card_methods_test.rb +10 -1
  129. data/test/unit/credit_card_test.rb +1 -1
  130. data/test/unit/cvv_result_test.rb +1 -1
  131. data/test/unit/expiry_date_test.rb +13 -2
  132. data/test/unit/gateways/authorize_net_cim_test.rb +39 -1
  133. data/test/unit/gateways/authorize_net_test.rb +1 -1
  134. data/test/unit/gateways/beanstream_interac_test.rb +1 -1
  135. data/test/unit/gateways/beanstream_test.rb +1 -1
  136. data/test/unit/gateways/bogus_test.rb +1 -1
  137. data/test/unit/gateways/braintree_test.rb +16 -14
  138. data/test/unit/gateways/card_stream_test.rb +1 -1
  139. data/test/unit/gateways/cyber_source_test.rb +1 -1
  140. data/test/unit/gateways/data_cash_test.rb +2 -1
  141. data/test/unit/gateways/efsnet_test.rb +1 -1
  142. data/test/unit/gateways/elavon_test.rb +139 -0
  143. data/test/unit/gateways/eway_test.rb +1 -1
  144. data/test/unit/gateways/exact_test.rb +1 -1
  145. data/test/unit/gateways/first_pay_test.rb +125 -0
  146. data/test/unit/gateways/gateway_test.rb +1 -1
  147. data/test/unit/gateways/instapay_test.rb +102 -0
  148. data/test/unit/gateways/jetpay_test.rb +185 -0
  149. data/test/unit/gateways/linkpoint_test.rb +37 -7
  150. data/test/unit/gateways/merchant_e_solutions_test.rb +169 -0
  151. data/test/unit/gateways/merchant_ware_test.rb +188 -0
  152. data/test/unit/gateways/modern_payments_cim_test.rb +25 -34
  153. data/test/unit/gateways/moneris_test.rb +1 -1
  154. data/test/unit/gateways/net_registry_test.rb +1 -1
  155. data/test/unit/gateways/netbilling_test.rb +1 -1
  156. data/test/unit/gateways/ogone_test.rb +319 -0
  157. data/test/unit/gateways/pay_junction_test.rb +1 -1
  158. data/test/unit/gateways/pay_secure_test.rb +1 -1
  159. data/test/unit/gateways/payflow_express_test.rb +2 -2
  160. data/test/unit/gateways/payflow_express_uk_test.rb +73 -1
  161. data/test/unit/gateways/payflow_test.rb +1 -1
  162. data/test/unit/gateways/payflow_uk_test.rb +1 -1
  163. data/test/unit/gateways/payment_express_test.rb +3 -3
  164. data/test/unit/gateways/paypal_express_test.rb +1 -1
  165. data/test/unit/gateways/paypal_test.rb +50 -1
  166. data/test/unit/gateways/plugnpay_test.rb +1 -1
  167. data/test/unit/gateways/psigate_test.rb +1 -1
  168. data/test/unit/gateways/psl_card_test.rb +1 -1
  169. data/test/unit/gateways/quickpay_test.rb +1 -1
  170. data/test/unit/gateways/realex_test.rb +1 -1
  171. data/test/unit/gateways/sage_bankcard_test.rb +36 -2
  172. data/test/unit/gateways/{protx_test.rb → sage_pay_test.rb} +49 -32
  173. data/test/unit/gateways/sage_virtual_check_test.rb +1 -1
  174. data/test/unit/gateways/sallie_mae_test.rb +53 -0
  175. data/test/unit/gateways/secure_pay_au_test.rb +1 -1
  176. data/test/unit/gateways/secure_pay_tech_test.rb +1 -1
  177. data/test/unit/gateways/secure_pay_test.rb +24 -10
  178. data/test/unit/gateways/skip_jack_test.rb +81 -1
  179. data/test/unit/gateways/trans_first_test.rb +1 -1
  180. data/test/unit/gateways/trust_commerce_test.rb +1 -1
  181. data/test/unit/gateways/usa_epay_test.rb +1 -1
  182. data/test/unit/gateways/verifi_test.rb +1 -1
  183. data/test/unit/gateways/viaklix_test.rb +1 -1
  184. data/test/unit/gateways/wirecard_test.rb +19 -1
  185. data/test/unit/generators/test_generator_helper.rb +1 -1
  186. data/test/unit/integrations/action_view_helper_test.rb +1 -1
  187. data/test/unit/integrations/bogus_module_test.rb +1 -1
  188. data/test/unit/integrations/chronopay_module_test.rb +1 -1
  189. data/test/unit/integrations/gestpay_module_test.rb +1 -1
  190. data/test/unit/integrations/helpers/bogus_helper_test.rb +1 -1
  191. data/test/unit/integrations/helpers/chronopay_helper_test.rb +1 -1
  192. data/test/unit/integrations/helpers/gestpay_helper_test.rb +1 -1
  193. data/test/unit/integrations/helpers/hi_trust_helper_test.rb +1 -1
  194. data/test/unit/integrations/helpers/nochex_helper_test.rb +1 -1
  195. data/test/unit/integrations/helpers/paypal_helper_test.rb +11 -2
  196. data/test/unit/integrations/helpers/quickpay_helper_test.rb +1 -1
  197. data/test/unit/integrations/helpers/two_checkout_helper_test.rb +1 -1
  198. data/test/unit/integrations/hi_trust_module_test.rb +1 -1
  199. data/test/unit/integrations/nochex_module_test.rb +1 -1
  200. data/test/unit/integrations/notifications/chronopay_notification_test.rb +1 -1
  201. data/test/unit/integrations/notifications/gestpay_notification_test.rb +1 -1
  202. data/test/unit/integrations/notifications/hi_trust_notification_test.rb +1 -1
  203. data/test/unit/integrations/notifications/nochex_notification_test.rb +2 -2
  204. data/test/unit/integrations/notifications/notification_test.rb +1 -1
  205. data/test/unit/integrations/notifications/paypal_notification_test.rb +1 -1
  206. data/test/unit/integrations/notifications/quickpay_notification_test.rb +1 -1
  207. data/test/unit/integrations/notifications/two_checkout_notification_test.rb +1 -1
  208. data/test/unit/integrations/paypal_module_test.rb +1 -1
  209. data/test/unit/integrations/quickpay_module_test.rb +1 -1
  210. data/test/unit/integrations/returns/chronopay_return_test.rb +1 -1
  211. data/test/unit/integrations/returns/gestpay_return_test.rb +1 -1
  212. data/test/unit/integrations/returns/hi_trust_return_test.rb +1 -1
  213. data/test/unit/integrations/returns/nochex_return_test.rb +1 -1
  214. data/test/unit/integrations/returns/paypal_return_test.rb +1 -1
  215. data/test/unit/integrations/returns/return_test.rb +1 -1
  216. data/test/unit/integrations/returns/two_checkout_return_test.rb +1 -1
  217. data/test/unit/integrations/two_checkout_module_test.rb +1 -1
  218. data/test/unit/post_data_test.rb +1 -1
  219. data/test/unit/posts_data_test.rb +14 -66
  220. data/test/unit/response_test.rb +1 -1
  221. data/test/unit/utils_test.rb +1 -1
  222. data/test/unit/validateable_test.rb +1 -1
  223. metadata +41 -45
  224. metadata.gz.sig +0 -0
  225. data/test/extra/binding_of_caller.rb +0 -80
  226. data/test/extra/breakpoint.rb +0 -547
  227. data/test/remote/gateways/remote_protx_test.rb +0 -184
@@ -1,4 +1,4 @@
1
- require File.dirname(__FILE__) + '/../../test_helper'
1
+ require 'test_helper'
2
2
 
3
3
  class MonerisTest < Test::Unit::TestCase
4
4
  def setup
@@ -1,4 +1,4 @@
1
- require File.dirname(__FILE__) + '/../../test_helper'
1
+ require 'test_helper'
2
2
 
3
3
  class NetRegistryTest < Test::Unit::TestCase
4
4
  def setup
@@ -1,4 +1,4 @@
1
- require File.dirname(__FILE__) + '/../../test_helper'
1
+ require 'test_helper'
2
2
 
3
3
  class NetbillingTest < Test::Unit::TestCase
4
4
  def setup
@@ -0,0 +1,319 @@
1
+ require 'test_helper'
2
+
3
+ class OgoneTest < Test::Unit::TestCase
4
+
5
+ def setup
6
+ @credentials = { :login => 'merchant id',
7
+ :user => 'username',
8
+ :password => 'password',
9
+ :signature => 'mynicesig' }
10
+ @gateway = OgoneGateway.new(@credentials)
11
+ @credit_card = credit_card
12
+ @amount = 100
13
+ @identification = "3014726"
14
+ @options = {
15
+ :order_id => '1',
16
+ :billing_address => address,
17
+ :description => 'Store Purchase'
18
+ }
19
+ end
20
+
21
+ def teardown
22
+ Base.mode = :test
23
+ end
24
+
25
+ def test_successful_authorize
26
+ @gateway.expects(:ssl_post).returns(successful_purchase_response)
27
+ assert response = @gateway.authorize(@amount, @credit_card, @options)
28
+ assert_success response
29
+ assert_equal '3014726;RES', response.authorization
30
+ assert response.test?
31
+ end
32
+
33
+ def test_successful_purchase
34
+ @gateway.expects(:ssl_post).returns(successful_purchase_response)
35
+ assert response = @gateway.purchase(@amount, @credit_card, @options)
36
+ assert_success response
37
+ assert_equal '3014726;SAL', response.authorization
38
+ assert response.test?
39
+ end
40
+
41
+ def test_successful_purchase_without_order_id
42
+ @gateway.expects(:ssl_post).returns(successful_purchase_response)
43
+ @options.delete(:order_id)
44
+ assert response = @gateway.purchase(@amount, @credit_card, @options)
45
+ assert_success response
46
+ assert_equal '3014726;SAL', response.authorization
47
+ assert response.test?
48
+ end
49
+
50
+ def test_successful_capture
51
+ @gateway.expects(:ssl_post).returns(successful_capture_response)
52
+ assert response = @gateway.capture(@amount, "3048326")
53
+ assert_success response
54
+ assert_equal '3048326;SAL', response.authorization
55
+ assert response.test?
56
+ end
57
+
58
+ def test_successful_void
59
+ @gateway.expects(:ssl_post).returns(successful_void_response)
60
+ assert response = @gateway.void("3048606")
61
+ assert_success response
62
+ assert_equal '3048606;DES', response.authorization
63
+ assert response.test?
64
+ end
65
+
66
+ def test_successful_referenced_credit
67
+ @gateway.expects(:ssl_post).returns(successful_referenced_credit_response)
68
+ assert response = @gateway.credit(@amount, "3049652")
69
+ assert_success response
70
+ assert_equal '3049652;RFD', response.authorization
71
+ assert response.test?
72
+ end
73
+
74
+ def test_successful_unreferenced_credit
75
+ @gateway.expects(:ssl_post).returns(successful_unreferenced_credit_response)
76
+ assert response = @gateway.credit(@amount, @credit_card)
77
+ assert_success response
78
+ assert_equal "3049654;RFD", response.authorization
79
+ assert response.test?
80
+ end
81
+
82
+ def test_unsuccessful_request
83
+ @gateway.expects(:ssl_post).returns(failed_purchase_response)
84
+ assert response = @gateway.purchase(@amount, @credit_card, @options)
85
+ assert_failure response
86
+ assert response.test?
87
+ end
88
+
89
+ def test_create_readable_error_message_upon_failure
90
+ @gateway.expects(:ssl_post).returns(test_failed_authorization_due_to_unknown_order_number)
91
+ assert response = @gateway.purchase(@amount, @credit_card, @options)
92
+ assert_failure response
93
+ assert response.test?
94
+
95
+ assert_equal "Unknown order", response.message
96
+ end
97
+
98
+ def test_supported_countries
99
+ assert_equal ['BE', 'DE', 'FR', 'NL', 'AT', 'CH'], OgoneGateway.supported_countries
100
+ end
101
+
102
+ def test_supported_card_types
103
+ assert_equal [:visa, :master, :american_express, :diners_club, :discover, :jcb, :maestro], OgoneGateway.supported_cardtypes
104
+ end
105
+
106
+ def test_default_currency
107
+ assert_equal 'EUR', OgoneGateway.default_currency
108
+ end
109
+
110
+ def test_avs_result
111
+ @gateway.expects(:ssl_post).returns(successful_purchase_response)
112
+ response = @gateway.purchase(@amount, @credit_card)
113
+ assert_equal 'R', response.avs_result['code']
114
+ end
115
+
116
+ def test_cvv_result
117
+ @gateway.expects(:ssl_post).returns(successful_purchase_response)
118
+ response = @gateway.purchase(@amount, @credit_card)
119
+ assert_equal 'P', response.cvv_result['code']
120
+ end
121
+
122
+ def test_production_mode
123
+ Base.mode = :production
124
+ gateway = OgoneGateway.new(@credentials)
125
+ assert !gateway.test?
126
+ end
127
+
128
+ def test_test_mode
129
+ Base.mode = :production
130
+ @credentials[:test] = true
131
+ gateway = OgoneGateway.new(@credentials)
132
+ assert gateway.test?
133
+ end
134
+
135
+ def test_format_error_message_with_slash_separator
136
+ @gateway.expects(:ssl_post).returns('<ncresponse NCERRORPLUS="unknown order/1/i/67.192.100.64" STATUS="0" />')
137
+ assert response = @gateway.purchase(@amount, @credit_card, @options)
138
+ assert_equal "Unknown order", response.message
139
+ end
140
+
141
+ def test_format_error_message_with_pipe_separator
142
+ @gateway.expects(:ssl_post).returns('<ncresponse NCERRORPLUS=" no card no|no exp date|no brand" STATUS="0" />')
143
+ assert response = @gateway.purchase(@amount, @credit_card, @options)
144
+ assert_equal "No card no, no exp date, no brand", response.message
145
+ end
146
+
147
+ def test_format_error_message_with_no_separator
148
+ @gateway.expects(:ssl_post).returns('<ncresponse NCERRORPLUS=" unknown order " STATUS="0" />')
149
+ assert response = @gateway.purchase(@amount, @credit_card, @options)
150
+ assert_equal "Unknown order", response.message
151
+ end
152
+
153
+ private
154
+
155
+ def successful_authorize_response
156
+ <<-END
157
+ <?xml version="1.0"?><ncresponse
158
+ orderID="1233680882919266242708828"
159
+ PAYID="3014726"
160
+ NCSTATUS="0"
161
+ NCERROR="0"
162
+ NCERRORPLUS="!"
163
+ ACCEPTANCE="test123"
164
+ STATUS="5"
165
+ IPCTY="99"
166
+ CCCTY="99"
167
+ ECI="7"
168
+ CVCCheck="NO"
169
+ AAVCheck="NO"
170
+ VC="NO"
171
+ amount="1"
172
+ currency="EUR"
173
+ PM="CreditCard"
174
+ BRAND="VISA">
175
+ </ncresponse>
176
+ END
177
+ end
178
+
179
+ def successful_purchase_response
180
+ <<-END
181
+ <?xml version="1.0"?><ncresponse
182
+ orderID="1233680882919266242708828"
183
+ PAYID="3014726"
184
+ NCSTATUS="0"
185
+ NCERROR="0"
186
+ NCERRORPLUS="!"
187
+ ACCEPTANCE="test123"
188
+ STATUS="5"
189
+ IPCTY="99"
190
+ CCCTY="99"
191
+ ECI="7"
192
+ CVCCheck="NO"
193
+ AAVCheck="NO"
194
+ VC="NO"
195
+ amount="1"
196
+ currency="EUR"
197
+ PM="CreditCard"
198
+ BRAND="VISA">
199
+ </ncresponse>
200
+ END
201
+ end
202
+
203
+ def failed_purchase_response
204
+ <<-END
205
+ <?xml version="1.0"?>
206
+ <ncresponse
207
+ orderID=""
208
+ PAYID="0"
209
+ NCSTATUS="5"
210
+ NCERROR="50001111"
211
+ NCERRORPLUS=" no orderid"
212
+ ACCEPTANCE=""
213
+ STATUS="0"
214
+ amount=""
215
+ currency="EUR"
216
+ PM=""
217
+ BRAND="">
218
+ </ncresponse>
219
+ END
220
+ end
221
+
222
+ def successful_capture_response
223
+ <<-END
224
+ <?xml version="1.0"?>
225
+ <ncresponse
226
+ orderID="1234956106974734203514539"
227
+ PAYID="3048326"
228
+ PAYIDSUB="1"
229
+ NCSTATUS="0"
230
+ NCERROR="0"
231
+ NCERRORPLUS="!"
232
+ ACCEPTANCE=""
233
+ STATUS="91"
234
+ amount="1"
235
+ currency="EUR">
236
+ </ncresponse>
237
+ END
238
+ end
239
+
240
+ def successful_void_response
241
+ <<-END
242
+ <?xml version="1.0"?>
243
+ <ncresponse
244
+ orderID="1234961140253559268757474"
245
+ PAYID="3048606"
246
+ PAYIDSUB="1"
247
+ NCSTATUS="0"
248
+ NCERROR="0"
249
+ NCERRORPLUS="!"
250
+ ACCEPTANCE=""
251
+ STATUS="61"
252
+ amount="1"
253
+ currency="EUR">
254
+ </ncresponse>
255
+ END
256
+ end
257
+
258
+ def successful_referenced_credit_response
259
+ <<-END
260
+ <?xml version="1.0"?>
261
+ <ncresponse
262
+ orderID="1234976251872867104376350"
263
+ PAYID="3049652"
264
+ PAYIDSUB="1"
265
+ NCSTATUS="0"
266
+ NCERROR="0"
267
+ NCERRORPLUS="!"
268
+ ACCEPTANCE=""
269
+ STATUS="81"
270
+ amount="1"
271
+ currency="EUR">
272
+ </ncresponse>
273
+ END
274
+ end
275
+
276
+ def successful_unreferenced_credit_response
277
+ <<-END
278
+ <?xml version="1.0"?><ncresponse
279
+ orderID="1234976330656672481134758"
280
+ PAYID="3049654"
281
+ NCSTATUS="0"
282
+ NCERROR="0"
283
+ NCERRORPLUS="!"
284
+ ACCEPTANCE=""
285
+ STATUS="81"
286
+ IPCTY="99"
287
+ CCCTY="99"
288
+ ECI="7"
289
+ CVCCheck="NO"
290
+ AAVCheck="NO"
291
+ VC="NO"
292
+ amount="1"
293
+ currency="EUR"
294
+ PM="CreditCard"
295
+ BRAND="VISA">
296
+ </ncresponse>
297
+ END
298
+ end
299
+
300
+ def test_failed_authorization_due_to_unknown_order_number
301
+ <<-END
302
+ <?xml version="1.0"?>
303
+ <ncresponse
304
+ orderID="#1019.22"
305
+ PAYID="0"
306
+ NCSTATUS="5"
307
+ NCERROR="50001116"
308
+ NCERRORPLUS="unknown order/1/i/67.192.100.64"
309
+ ACCEPTANCE=""
310
+ STATUS="0"
311
+ amount=""
312
+ currency="EUR"
313
+ PM=""
314
+ BRAND="">
315
+ </ncresponse>
316
+ END
317
+ end
318
+
319
+ end
@@ -1,5 +1,5 @@
1
1
  require 'test/unit'
2
- require File.dirname(__FILE__) + '/../../test_helper'
2
+ require 'test_helper'
3
3
 
4
4
  class PayJunctionTest < Test::Unit::TestCase
5
5
  def setup
@@ -1,4 +1,4 @@
1
- require File.dirname(__FILE__) + '/../../test_helper'
1
+ require 'test_helper'
2
2
 
3
3
  class PaySecureTest < Test::Unit::TestCase
4
4
 
@@ -1,7 +1,7 @@
1
- require File.dirname(__FILE__) + '/../../test_helper'
1
+ require 'test_helper'
2
2
 
3
3
  class PayflowExpressTest < Test::Unit::TestCase
4
- TEST_REDIRECT_URL = 'https://test-expresscheckout.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=1234567890'
4
+ TEST_REDIRECT_URL = 'https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=1234567890'
5
5
  LIVE_REDIRECT_URL = 'https://www.paypal.com/cgibin/webscr?cmd=_express-checkout&token=1234567890'
6
6
 
7
7
  TEST_REDIRECT_URL_WITHOUT_REVIEW = "#{TEST_REDIRECT_URL}&useraction=commit"
@@ -1,4 +1,4 @@
1
- require File.dirname(__FILE__) + '/../../test_helper'
1
+ require 'test_helper'
2
2
 
3
3
  class PayflowExpressUkTest < Test::Unit::TestCase
4
4
  def setup
@@ -11,4 +11,76 @@ class PayflowExpressUkTest < Test::Unit::TestCase
11
11
  def test_supported_countries
12
12
  assert_equal ['GB'], PayflowExpressUkGateway.supported_countries
13
13
  end
14
+
15
+ def test_get_express_details
16
+ @gateway.expects(:ssl_post).returns(successful_get_express_details_response)
17
+ response = @gateway.details_for('EC-2OPN7UJGFWK9OYFV')
18
+ assert_instance_of PayflowExpressResponse, response
19
+ assert_success response
20
+ assert response.test?
21
+
22
+ assert_equal 'EC-2OPN7UJGFWK9OYFV', response.token
23
+ assert_equal 'LYWCMEN4FA7ZQ', response.payer_id
24
+ assert_equal 'paul@test.com', response.email
25
+ assert_equal 'paul smith', response.full_name
26
+ assert_equal 'GB', response.payer_country
27
+
28
+ assert address = response.address
29
+ assert_equal 'paul smith', address['name']
30
+ assert_nil address['company']
31
+ assert_equal '10 keyworth avenue', address['address1']
32
+ assert_equal 'grangetown', address['address2']
33
+ assert_equal 'hinterland', address['city']
34
+ assert_equal 'Tyne and Wear', address['state']
35
+ assert_equal 'sr5 2uh', address['zip']
36
+ assert_equal 'GB', address['country']
37
+ assert_nil address['phone']
38
+ end
39
+
40
+ private
41
+ def successful_get_express_details_response
42
+ <<-RESPONSE
43
+ <?xml version="1.0"?>
44
+ <XMLPayResponse xmlns="http://www.paypal.com/XMLPay">
45
+ <ResponseData>
46
+ <Vendor>markcoop</Vendor>
47
+ <Partner>paypaluk</Partner>
48
+ <TransactionResults>
49
+ <TransactionResult>
50
+ <Result>0</Result>
51
+ <AVSResult>
52
+ <StreetMatch>Match</StreetMatch>
53
+ <ZipMatch>Match</ZipMatch>
54
+ </AVSResult>
55
+ <Message>Approved</Message>
56
+ <PayPalResult>
57
+ <EMail>paul@test.com</EMail>
58
+ <PayerID>LYWCMEN4FA7ZQ</PayerID>
59
+ <Token>EC-2OPN7UJGFWK9OYFV</Token>
60
+ <FeeAmount>0</FeeAmount>
61
+ <PayerStatus>unverified</PayerStatus>
62
+ <Name>paul</Name>
63
+ <ShipTo>
64
+ <Address>
65
+ <Street>10 keyworth avenue</Street>
66
+ <City>hinterland</City>
67
+ <State>Tyne and Wear</State>
68
+ <Zip>sr5 2uh</Zip>
69
+ <Country>GB</Country>
70
+ </Address>
71
+ </ShipTo>
72
+ <CorrelationID>1ea22ef3873ba</CorrelationID>
73
+ </PayPalResult>
74
+ <ExtData Name="LASTNAME" Value="smith"/>
75
+ <ExtData Name="SHIPTOSTREET2" Value="grangetown"/>
76
+ <ExtData Name="SHIPTONAME" Value="paul smith"/>
77
+ <ExtData Name="STREET2" Value="ALLAWAY AVENUE"/>
78
+ <ExtData Name="COUNTRYCODE" Value="GB"/>
79
+ <ExtData Name="ADDRESSSTATUS" Value="Y"/>
80
+ </TransactionResult>
81
+ </TransactionResults>
82
+ </ResponseData>
83
+ </XMLPayResponse>
84
+ RESPONSE
85
+ end
14
86
  end
@@ -1,4 +1,4 @@
1
- require File.dirname(__FILE__) + '/../../test_helper'
1
+ require 'test_helper'
2
2
 
3
3
  class PayflowTest < Test::Unit::TestCase
4
4
  def setup