activemerchant-est 1.4.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (320) hide show
  1. data/CHANGELOG +480 -0
  2. data/CONTRIBUTORS +126 -0
  3. data/MIT-LICENSE +20 -0
  4. data/README +136 -0
  5. data/Rakefile +154 -0
  6. data/gem-public_cert.pem +20 -0
  7. data/init.rb +3 -0
  8. data/lib/active_merchant.rb +66 -0
  9. data/lib/active_merchant/billing/avs_result.rb +98 -0
  10. data/lib/active_merchant/billing/base.rb +57 -0
  11. data/lib/active_merchant/billing/check.rb +68 -0
  12. data/lib/active_merchant/billing/credit_card.rb +159 -0
  13. data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
  14. data/lib/active_merchant/billing/credit_card_methods.rb +125 -0
  15. data/lib/active_merchant/billing/cvv_result.rb +38 -0
  16. data/lib/active_merchant/billing/expiry_date.rb +34 -0
  17. data/lib/active_merchant/billing/gateway.rb +158 -0
  18. data/lib/active_merchant/billing/gateways.rb +18 -0
  19. data/lib/active_merchant/billing/gateways/authorize_net.rb +657 -0
  20. data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +736 -0
  21. data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
  22. data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +233 -0
  23. data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
  24. data/lib/active_merchant/billing/gateways/bogus.rb +98 -0
  25. data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
  26. data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
  27. data/lib/active_merchant/billing/gateways/cyber_source.rb +406 -0
  28. data/lib/active_merchant/billing/gateways/data_cash.rb +595 -0
  29. data/lib/active_merchant/billing/gateways/efsnet.rb +229 -0
  30. data/lib/active_merchant/billing/gateways/elavon.rb +134 -0
  31. data/lib/active_merchant/billing/gateways/eway.rb +277 -0
  32. data/lib/active_merchant/billing/gateways/exact.rb +222 -0
  33. data/lib/active_merchant/billing/gateways/first_pay.rb +172 -0
  34. data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
  35. data/lib/active_merchant/billing/gateways/jetpay.rb +270 -0
  36. data/lib/active_merchant/billing/gateways/linkpoint.rb +449 -0
  37. data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +154 -0
  38. data/lib/active_merchant/billing/gateways/merchant_ware.rb +283 -0
  39. data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
  40. data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +220 -0
  41. data/lib/active_merchant/billing/gateways/moneris.rb +205 -0
  42. data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
  43. data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
  44. data/lib/active_merchant/billing/gateways/ogone.rb +279 -0
  45. data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
  46. data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
  47. data/lib/active_merchant/billing/gateways/payflow.rb +236 -0
  48. data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -0
  49. data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
  50. data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
  51. data/lib/active_merchant/billing/gateways/payflow_express.rb +138 -0
  52. data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
  53. data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
  54. data/lib/active_merchant/billing/gateways/payment_express.rb +230 -0
  55. data/lib/active_merchant/billing/gateways/paypal.rb +121 -0
  56. data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +326 -0
  57. data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
  58. data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
  59. data/lib/active_merchant/billing/gateways/paypal_express.rb +130 -0
  60. data/lib/active_merchant/billing/gateways/paypal_express_common.rb +20 -0
  61. data/lib/active_merchant/billing/gateways/plugnpay.rb +292 -0
  62. data/lib/active_merchant/billing/gateways/psigate.rb +214 -0
  63. data/lib/active_merchant/billing/gateways/psl_card.rb +306 -0
  64. data/lib/active_merchant/billing/gateways/quickpay.rb +213 -0
  65. data/lib/active_merchant/billing/gateways/realex.rb +200 -0
  66. data/lib/active_merchant/billing/gateways/sage.rb +146 -0
  67. data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
  68. data/lib/active_merchant/billing/gateways/sage/sage_core.rb +116 -0
  69. data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
  70. data/lib/active_merchant/billing/gateways/sage_pay.rb +308 -0
  71. data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
  72. data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
  73. data/lib/active_merchant/billing/gateways/secure_pay_au.rb +157 -0
  74. data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
  75. data/lib/active_merchant/billing/gateways/skip_jack.rb +452 -0
  76. data/lib/active_merchant/billing/gateways/smart_ps.rb +265 -0
  77. data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
  78. data/lib/active_merchant/billing/gateways/transax.rb +26 -0
  79. data/lib/active_merchant/billing/gateways/trust_commerce.rb +418 -0
  80. data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
  81. data/lib/active_merchant/billing/gateways/verifi.rb +228 -0
  82. data/lib/active_merchant/billing/gateways/viaklix.rb +189 -0
  83. data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
  84. data/lib/active_merchant/billing/integrations.rb +28 -0
  85. data/lib/active_merchant/billing/integrations/action_view_helper.rb +79 -0
  86. data/lib/active_merchant/billing/integrations/adyen.rb +29 -0
  87. data/lib/active_merchant/billing/integrations/adyen/helper.rb +103 -0
  88. data/lib/active_merchant/billing/integrations/adyen/notification.rb +91 -0
  89. data/lib/active_merchant/billing/integrations/adyen/return.rb +52 -0
  90. data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
  91. data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
  92. data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
  93. data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
  94. data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
  95. data/lib/active_merchant/billing/integrations/chronopay/helper.rb +81 -0
  96. data/lib/active_merchant/billing/integrations/chronopay/notification.rb +156 -0
  97. data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
  98. data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
  99. data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
  100. data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
  101. data/lib/active_merchant/billing/integrations/gestpay/notification.rb +83 -0
  102. data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
  103. data/lib/active_merchant/billing/integrations/helper.rb +93 -0
  104. data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
  105. data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
  106. data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
  107. data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
  108. data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
  109. data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
  110. data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
  111. data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
  112. data/lib/active_merchant/billing/integrations/notification.rb +68 -0
  113. data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
  114. data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
  115. data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
  116. data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
  117. data/lib/active_merchant/billing/integrations/pizza.rb +116 -0
  118. data/lib/active_merchant/billing/integrations/pizza/helper.rb +117 -0
  119. data/lib/active_merchant/billing/integrations/pizza/notification.rb +101 -0
  120. data/lib/active_merchant/billing/integrations/quickpay.rb +17 -0
  121. data/lib/active_merchant/billing/integrations/quickpay/helper.rb +72 -0
  122. data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
  123. data/lib/active_merchant/billing/integrations/return.rb +35 -0
  124. data/lib/active_merchant/billing/integrations/sampo_est.rb +101 -0
  125. data/lib/active_merchant/billing/integrations/sampo_est/helper.rb +17 -0
  126. data/lib/active_merchant/billing/integrations/sampo_est/notification.rb +12 -0
  127. data/lib/active_merchant/billing/integrations/seb_est.rb +100 -0
  128. data/lib/active_merchant/billing/integrations/seb_est/helper.rb +16 -0
  129. data/lib/active_merchant/billing/integrations/seb_est/notification.rb +12 -0
  130. data/lib/active_merchant/billing/integrations/swedbank_est.rb +99 -0
  131. data/lib/active_merchant/billing/integrations/swedbank_est/helper.rb +20 -0
  132. data/lib/active_merchant/billing/integrations/swedbank_est/notification.rb +12 -0
  133. data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
  134. data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
  135. data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
  136. data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
  137. data/lib/active_merchant/billing/response.rb +32 -0
  138. data/lib/active_merchant/lib/connection.rb +170 -0
  139. data/lib/active_merchant/lib/country.rb +319 -0
  140. data/lib/active_merchant/lib/error.rb +4 -0
  141. data/lib/active_merchant/lib/post_data.rb +22 -0
  142. data/lib/active_merchant/lib/posts_data.rb +47 -0
  143. data/lib/active_merchant/lib/requires_parameters.rb +16 -0
  144. data/lib/active_merchant/lib/utils.rb +18 -0
  145. data/lib/active_merchant/lib/validateable.rb +76 -0
  146. data/lib/certs/cacert.pem +7815 -0
  147. data/lib/support/gateway_support.rb +58 -0
  148. data/script/destroy +14 -0
  149. data/script/generate +14 -0
  150. data/test/fixtures.yml +355 -0
  151. data/test/remote/gateways/remote_authorize_net_cim_test.rb +460 -0
  152. data/test/remote/gateways/remote_authorize_net_test.rb +145 -0
  153. data/test/remote/gateways/remote_beanstream_interac_test.rb +53 -0
  154. data/test/remote/gateways/remote_beanstream_test.rb +150 -0
  155. data/test/remote/gateways/remote_braintree_test.rb +154 -0
  156. data/test/remote/gateways/remote_card_stream_test.rb +148 -0
  157. data/test/remote/gateways/remote_cyber_source_test.rb +144 -0
  158. data/test/remote/gateways/remote_data_cash_test.rb +357 -0
  159. data/test/remote/gateways/remote_efsnet_test.rb +81 -0
  160. data/test/remote/gateways/remote_elavon_test.rb +66 -0
  161. data/test/remote/gateways/remote_eway_test.rb +74 -0
  162. data/test/remote/gateways/remote_exact_test.rb +60 -0
  163. data/test/remote/gateways/remote_first_pay_test.rb +87 -0
  164. data/test/remote/gateways/remote_instapay_test.rb +61 -0
  165. data/test/remote/gateways/remote_jetpay_test.rb +103 -0
  166. data/test/remote/gateways/remote_linkpoint_test.rb +121 -0
  167. data/test/remote/gateways/remote_merchant_e_solutions_test.rb +173 -0
  168. data/test/remote/gateways/remote_merchant_ware_test.rb +113 -0
  169. data/test/remote/gateways/remote_modern_payments_cim_test.rb +58 -0
  170. data/test/remote/gateways/remote_modern_payments_test.rb +57 -0
  171. data/test/remote/gateways/remote_moneris_test.rb +82 -0
  172. data/test/remote/gateways/remote_net_registry_test.rb +85 -0
  173. data/test/remote/gateways/remote_netbilling_test.rb +70 -0
  174. data/test/remote/gateways/remote_ogone_test.rb +115 -0
  175. data/test/remote/gateways/remote_pay_junction_test.rb +143 -0
  176. data/test/remote/gateways/remote_pay_secure_test.rb +39 -0
  177. data/test/remote/gateways/remote_payflow_express_test.rb +50 -0
  178. data/test/remote/gateways/remote_payflow_test.rb +237 -0
  179. data/test/remote/gateways/remote_payflow_uk_test.rb +173 -0
  180. data/test/remote/gateways/remote_payment_express_test.rb +136 -0
  181. data/test/remote/gateways/remote_paypal_express_test.rb +49 -0
  182. data/test/remote/gateways/remote_paypal_test.rb +191 -0
  183. data/test/remote/gateways/remote_plugnpay_test.rb +72 -0
  184. data/test/remote/gateways/remote_psigate_test.rb +50 -0
  185. data/test/remote/gateways/remote_psl_card_test.rb +125 -0
  186. data/test/remote/gateways/remote_quickpay_test.rb +190 -0
  187. data/test/remote/gateways/remote_realex_test.rb +224 -0
  188. data/test/remote/gateways/remote_sage_bankcard_test.rb +109 -0
  189. data/test/remote/gateways/remote_sage_pay_test.rb +219 -0
  190. data/test/remote/gateways/remote_sage_test.rb +87 -0
  191. data/test/remote/gateways/remote_sage_virtual_check_test.rb +62 -0
  192. data/test/remote/gateways/remote_sallie_mae_test.rb +51 -0
  193. data/test/remote/gateways/remote_secure_pay_au_test.rb +40 -0
  194. data/test/remote/gateways/remote_secure_pay_tech_test.rb +37 -0
  195. data/test/remote/gateways/remote_secure_pay_test.rb +28 -0
  196. data/test/remote/gateways/remote_skipjack_test.rb +105 -0
  197. data/test/remote/gateways/remote_trans_first_test.rb +34 -0
  198. data/test/remote/gateways/remote_transax_test.rb +112 -0
  199. data/test/remote/gateways/remote_trust_commerce_test.rb +152 -0
  200. data/test/remote/gateways/remote_usa_epay_test.rb +46 -0
  201. data/test/remote/gateways/remote_verifi_test.rb +107 -0
  202. data/test/remote/gateways/remote_viaklix_test.rb +43 -0
  203. data/test/remote/gateways/remote_wirecard_test.rb +111 -0
  204. data/test/remote/integrations/remote_gestpay_integration_test.rb +37 -0
  205. data/test/remote/integrations/remote_paypal_integration_test.rb +26 -0
  206. data/test/test_helper.rb +182 -0
  207. data/test/unit/avs_result_test.rb +59 -0
  208. data/test/unit/base_test.rb +55 -0
  209. data/test/unit/check_test.rb +88 -0
  210. data/test/unit/connection_test.rb +129 -0
  211. data/test/unit/country_code_test.rb +33 -0
  212. data/test/unit/country_test.rb +64 -0
  213. data/test/unit/credit_card_formatting_test.rb +19 -0
  214. data/test/unit/credit_card_methods_test.rb +179 -0
  215. data/test/unit/credit_card_test.rb +318 -0
  216. data/test/unit/cvv_result_test.rb +33 -0
  217. data/test/unit/expiry_date_test.rb +32 -0
  218. data/test/unit/gateways/authorize_net_cim_test.rb +676 -0
  219. data/test/unit/gateways/authorize_net_test.rb +290 -0
  220. data/test/unit/gateways/beanstream_interac_test.rb +51 -0
  221. data/test/unit/gateways/beanstream_test.rb +108 -0
  222. data/test/unit/gateways/bogus_test.rb +46 -0
  223. data/test/unit/gateways/braintree_test.rb +126 -0
  224. data/test/unit/gateways/card_stream_test.rb +90 -0
  225. data/test/unit/gateways/cyber_source_test.rb +188 -0
  226. data/test/unit/gateways/data_cash_test.rb +133 -0
  227. data/test/unit/gateways/efsnet_test.rb +123 -0
  228. data/test/unit/gateways/elavon_test.rb +139 -0
  229. data/test/unit/gateways/eway_test.rb +118 -0
  230. data/test/unit/gateways/exact_test.rb +156 -0
  231. data/test/unit/gateways/first_pay_test.rb +125 -0
  232. data/test/unit/gateways/gateway_test.rb +48 -0
  233. data/test/unit/gateways/instapay_test.rb +102 -0
  234. data/test/unit/gateways/jetpay_test.rb +185 -0
  235. data/test/unit/gateways/linkpoint_test.rb +197 -0
  236. data/test/unit/gateways/merchant_e_solutions_test.rb +169 -0
  237. data/test/unit/gateways/merchant_ware_test.rb +188 -0
  238. data/test/unit/gateways/modern_payments_cim_test.rb +162 -0
  239. data/test/unit/gateways/moneris_test.rb +158 -0
  240. data/test/unit/gateways/net_registry_test.rb +416 -0
  241. data/test/unit/gateways/netbilling_test.rb +54 -0
  242. data/test/unit/gateways/ogone_test.rb +319 -0
  243. data/test/unit/gateways/pay_junction_test.rb +123 -0
  244. data/test/unit/gateways/pay_secure_test.rb +71 -0
  245. data/test/unit/gateways/payflow_express_test.rb +173 -0
  246. data/test/unit/gateways/payflow_express_uk_test.rb +86 -0
  247. data/test/unit/gateways/payflow_test.rb +305 -0
  248. data/test/unit/gateways/payflow_uk_test.rb +30 -0
  249. data/test/unit/gateways/payment_express_test.rb +195 -0
  250. data/test/unit/gateways/paypal_express_test.rb +382 -0
  251. data/test/unit/gateways/paypal_test.rb +569 -0
  252. data/test/unit/gateways/plugnpay_test.rb +86 -0
  253. data/test/unit/gateways/psigate_test.rb +169 -0
  254. data/test/unit/gateways/psl_card_test.rb +64 -0
  255. data/test/unit/gateways/quickpay_test.rb +112 -0
  256. data/test/unit/gateways/realex_test.rb +151 -0
  257. data/test/unit/gateways/sage_bankcard_test.rb +196 -0
  258. data/test/unit/gateways/sage_pay_test.rb +139 -0
  259. data/test/unit/gateways/sage_virtual_check_test.rb +71 -0
  260. data/test/unit/gateways/sallie_mae_test.rb +53 -0
  261. data/test/unit/gateways/secure_pay_au_test.rb +207 -0
  262. data/test/unit/gateways/secure_pay_tech_test.rb +44 -0
  263. data/test/unit/gateways/secure_pay_test.rb +87 -0
  264. data/test/unit/gateways/skip_jack_test.rb +213 -0
  265. data/test/unit/gateways/trans_first_test.rb +112 -0
  266. data/test/unit/gateways/trust_commerce_test.rb +90 -0
  267. data/test/unit/gateways/usa_epay_test.rb +128 -0
  268. data/test/unit/gateways/verifi_test.rb +96 -0
  269. data/test/unit/gateways/viaklix_test.rb +78 -0
  270. data/test/unit/gateways/wirecard_test.rb +250 -0
  271. data/test/unit/generators/test_gateway_generator.rb +46 -0
  272. data/test/unit/generators/test_generator_helper.rb +20 -0
  273. data/test/unit/generators/test_integration_generator.rb +53 -0
  274. data/test/unit/integrations/action_view_helper_test.rb +50 -0
  275. data/test/unit/integrations/adyen_module_test.rb +9 -0
  276. data/test/unit/integrations/bogus_module_test.rb +20 -0
  277. data/test/unit/integrations/chronopay_module_test.rb +13 -0
  278. data/test/unit/integrations/gestpay_module_test.rb +14 -0
  279. data/test/unit/integrations/helpers/adyen_helper_test.rb +35 -0
  280. data/test/unit/integrations/helpers/bogus_helper_test.rb +28 -0
  281. data/test/unit/integrations/helpers/chronopay_helper_test.rb +67 -0
  282. data/test/unit/integrations/helpers/gestpay_helper_test.rb +100 -0
  283. data/test/unit/integrations/helpers/hi_trust_helper_test.rb +16 -0
  284. data/test/unit/integrations/helpers/nochex_helper_test.rb +53 -0
  285. data/test/unit/integrations/helpers/paypal_helper_test.rb +171 -0
  286. data/test/unit/integrations/helpers/quickpay_helper_test.rb +40 -0
  287. data/test/unit/integrations/helpers/seb_est_helper_test.rb +69 -0
  288. data/test/unit/integrations/helpers/two_checkout_helper_test.rb +92 -0
  289. data/test/unit/integrations/hi_trust_module_test.rb +13 -0
  290. data/test/unit/integrations/nochex_module_test.rb +13 -0
  291. data/test/unit/integrations/notifications/adyen_notification_test.rb +25 -0
  292. data/test/unit/integrations/notifications/chronopay_notification_test.rb +66 -0
  293. data/test/unit/integrations/notifications/gestpay_notification_test.rb +60 -0
  294. data/test/unit/integrations/notifications/hi_trust_notification_test.rb +59 -0
  295. data/test/unit/integrations/notifications/nochex_notification_test.rb +51 -0
  296. data/test/unit/integrations/notifications/notification_test.rb +54 -0
  297. data/test/unit/integrations/notifications/paypal_notification_test.rb +85 -0
  298. data/test/unit/integrations/notifications/quickpay_notification_test.rb +69 -0
  299. data/test/unit/integrations/notifications/seb_est_notification_test.rb +87 -0
  300. data/test/unit/integrations/notifications/two_checkout_notification_test.rb +55 -0
  301. data/test/unit/integrations/paypal_module_test.rb +28 -0
  302. data/test/unit/integrations/quickpay_module_test.rb +9 -0
  303. data/test/unit/integrations/returns/adyen_return_test.rb +26 -0
  304. data/test/unit/integrations/returns/chronopay_return_test.rb +11 -0
  305. data/test/unit/integrations/returns/gestpay_return_test.rb +10 -0
  306. data/test/unit/integrations/returns/hi_trust_return_test.rb +24 -0
  307. data/test/unit/integrations/returns/nochex_return_test.rb +10 -0
  308. data/test/unit/integrations/returns/paypal_return_test.rb +10 -0
  309. data/test/unit/integrations/returns/return_test.rb +11 -0
  310. data/test/unit/integrations/returns/two_checkout_return_test.rb +24 -0
  311. data/test/unit/integrations/sampo_est_module_test.rb +9 -0
  312. data/test/unit/integrations/seb_est_module_test.rb +9 -0
  313. data/test/unit/integrations/swedbank_est_module_test.rb +9 -0
  314. data/test/unit/integrations/two_checkout_module_test.rb +13 -0
  315. data/test/unit/post_data_test.rb +55 -0
  316. data/test/unit/posts_data_test.rb +48 -0
  317. data/test/unit/response_test.rb +28 -0
  318. data/test/unit/utils_test.rb +7 -0
  319. data/test/unit/validateable_test.rb +60 -0
  320. metadata +392 -0
@@ -0,0 +1,26 @@
1
+ require 'test_helper'
2
+
3
+ class AdyenReturnTest < Test::Unit::TestCase
4
+ include ActiveMerchant::Billing::Integrations
5
+
6
+ def test_successful_return
7
+ r = Adyen::Return.new('merchantReference=1234&skinCode=fVmBwBe3&shopperLocale=en_GB&paymentMethod=visa&authResult=AUTHORISED&pspReference=8612537486987238&merchantSig=6T6mc7NDB1c5I6So816B2hYMNRY%3D',
8
+ :shared_secret => 'qceaihyyxiducsnczt6bdl7m5z4vao4f')
9
+ assert r.success?
10
+ end
11
+
12
+ def test_failed_return
13
+ r = Adyen::Return.new('merchantReference=1234&skinCode=fVmBwBe3&shopperLocale=en_GB&paymentMethod=visa&authResult=REFUSED&pspReference=8612537501807270&merchantSig=%2FPF97ddepNssgRHiWpCEfu1TnxI%3D',
14
+ :shared_secret => 'qceaihyyxiducsnczt6bdl7m5z4vao4f')
15
+ assert_false r.success?
16
+ end
17
+
18
+ # important: this test ensures that if the digital signature is wrong, the transaction fails
19
+ def test_bad_signature
20
+ r = Adyen::Return.new('merchantReference=1234&skinCode=fVmBwBe3&shopperLocale=en_GB&paymentMethod=visa&authResult=AUTHORISED&pspReference=8612537486987238&merchantSig=6T6mc7NDB1c5I6So816B2hYMNRY%3D',
21
+ :shared_secret => 'QCEAIHYyxiducsnczt6bdl7m5z4vao4f') # NOTE this is intentionally the wrong shared secret, which should produce a signature verification failure
22
+ assert_false r.success?
23
+ end
24
+
25
+ end
26
+
@@ -0,0 +1,11 @@
1
+ require 'test_helper'
2
+
3
+ class ChronopayReturnTest < Test::Unit::TestCase
4
+ include ActiveMerchant::Billing::Integrations
5
+
6
+ def test_return
7
+ r = Chronopay::Return.new('')
8
+ assert r.success?
9
+ end
10
+ end
11
+
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class GestpayReturnTest < Test::Unit::TestCase
4
+ include ActiveMerchant::Billing::Integrations
5
+
6
+ def test_return
7
+ r = Gestpay::Return.new('')
8
+ assert r.success?
9
+ end
10
+ 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,10 @@
1
+ require 'test_helper'
2
+
3
+ class NochexReturnTest < Test::Unit::TestCase
4
+ include ActiveMerchant::Billing::Integrations
5
+
6
+ def test_return
7
+ r = Nochex::Return.new('')
8
+ assert r.success?
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ require 'test_helper'
2
+
3
+ class PaypalReturnTest < Test::Unit::TestCase
4
+ include ActiveMerchant::Billing::Integrations
5
+
6
+ def test_return
7
+ r = Paypal::Return.new('')
8
+ assert r.success?
9
+ end
10
+ end
@@ -0,0 +1,11 @@
1
+ require 'test_helper'
2
+
3
+ class ReturnTest < Test::Unit::TestCase
4
+ include ActiveMerchant::Billing::Integrations
5
+
6
+
7
+ def test_return
8
+ r = Return.new('')
9
+ assert r.success?
10
+ end
11
+ 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,9 @@
1
+ require File.dirname(__FILE__) + '/../../test_helper'
2
+
3
+ class SampoEstModuleTest < Test::Unit::TestCase
4
+ include ActiveMerchant::Billing::Integrations
5
+
6
+ def test_notification_method
7
+ assert_instance_of SampoEst::Notification, SampoEst.notification({'name' => 'cody'})
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require File.dirname(__FILE__) + '/../../test_helper'
2
+
3
+ class SebEstModuleTest < Test::Unit::TestCase
4
+ include ActiveMerchant::Billing::Integrations
5
+
6
+ def test_notification_method
7
+ assert_instance_of SebEst::Notification, SebEst.notification({'name' => 'cody'})
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ require File.dirname(__FILE__) + '/../../test_helper'
2
+
3
+ class SwedbankEstModuleTest < Test::Unit::TestCase
4
+ include ActiveMerchant::Billing::Integrations
5
+
6
+ def test_notification_method
7
+ assert_instance_of SwedbankEst::Notification, SwedbankEst.notification({'name' => 'cody'})
8
+ end
9
+ 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
@@ -0,0 +1,28 @@
1
+ require 'test_helper'
2
+
3
+ class ResponseTest < Test::Unit::TestCase
4
+ def test_response_success
5
+ assert Response.new(true, 'message', :param => 'value').success?
6
+ assert !Response.new(false, 'message', :param => 'value').success?
7
+ end
8
+
9
+ def test_get_params
10
+ response = Response.new(true, 'message', :param => 'value')
11
+
12
+ assert_equal ['param'], response.params.keys
13
+ end
14
+
15
+ def test_avs_result
16
+ response = Response.new(true, 'message', {}, :avs_result => { :code => 'A', :street_match => 'Y', :zip_match => 'N' })
17
+ avs_result = response.avs_result
18
+ assert_equal 'A', avs_result['code']
19
+ assert_equal AVSResult.messages['A'], avs_result['message']
20
+ end
21
+
22
+ def test_cvv_result
23
+ response = Response.new(true, 'message', {}, :cvv_result => 'M')
24
+ cvv_result = response.cvv_result
25
+ assert_equal 'M', cvv_result['code']
26
+ assert_equal CVVResult.messages['M'], cvv_result['message']
27
+ end
28
+ end
@@ -0,0 +1,7 @@
1
+ require 'test_helper'
2
+
3
+ class UtilsTest < Test::Unit::TestCase
4
+ def test_unique_id_should_be_32_chars_and_alphanumeric
5
+ assert_match /^\w{32}$/, ActiveMerchant::Utils.generate_unique_id
6
+ end
7
+ end
@@ -0,0 +1,60 @@
1
+ require 'test_helper'
2
+
3
+ class Dood
4
+ include ActiveMerchant::Validateable
5
+
6
+ attr_accessor :name, :email, :country
7
+
8
+ def validate
9
+ errors.add "name", "cannot be empty" if name.blank?
10
+ errors.add "email", "cannot be empty" if email.blank?
11
+ errors.add_to_base "The country cannot be blank" if country.blank?
12
+ end
13
+
14
+ end
15
+
16
+ class ValidateableTest < Test::Unit::TestCase
17
+ include ActiveMerchant
18
+
19
+ def setup
20
+ @dood = Dood.new
21
+ end
22
+
23
+ def test_validation
24
+ assert ! @dood.valid?
25
+ assert ! @dood.errors.empty?
26
+ end
27
+
28
+ def test_assigns
29
+ @dood = Dood.new(:name => "tobi", :email => "tobi@neech.de", :country => 'DE')
30
+
31
+ assert_equal "tobi", @dood.name
32
+ assert_equal "tobi@neech.de", @dood.email
33
+ assert @dood.valid?
34
+ end
35
+
36
+ def test_multiple_calls
37
+ @dood.name = "tobi"
38
+ assert !@dood.valid?
39
+
40
+ @dood.email = "tobi@neech.de"
41
+ assert !@dood.valid?
42
+
43
+ @dood.country = 'DE'
44
+ assert @dood.valid?
45
+ end
46
+
47
+ def test_messages
48
+ @dood.valid?
49
+ assert_equal "cannot be empty", @dood.errors.on('name')
50
+ assert_equal "cannot be empty", @dood.errors.on('email')
51
+ assert_equal nil, @dood.errors.on('doesnt_exist')
52
+
53
+ end
54
+
55
+ def test_full_messages
56
+ @dood.valid?
57
+ assert_equal ["Email cannot be empty", "Name cannot be empty", "The country cannot be blank"], @dood.errors.full_messages.sort
58
+ end
59
+
60
+ end
metadata ADDED
@@ -0,0 +1,392 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: activemerchant-est
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.2.5
5
+ platform: ruby
6
+ authors:
7
+ - Tobias Luetke
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain:
11
+ - gem-public_cert.pem
12
+ date: 2010-01-17 00:00:00 +02:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activesupport
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.3.2
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: builder
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 2.0.0
34
+ version:
35
+ description:
36
+ email: tobi@leetsoft.com
37
+ executables: []
38
+
39
+ extensions: []
40
+
41
+ extra_rdoc_files: []
42
+
43
+ files:
44
+ - lib/active_merchant/billing/check.rb
45
+ - lib/active_merchant/billing/integrations.rb
46
+ - lib/active_merchant/billing/integrations/adyen/return.rb
47
+ - lib/active_merchant/billing/integrations/adyen/helper.rb
48
+ - lib/active_merchant/billing/integrations/adyen/notification.rb
49
+ - lib/active_merchant/billing/integrations/seb_est/helper.rb
50
+ - lib/active_merchant/billing/integrations/seb_est/notification.rb
51
+ - lib/active_merchant/billing/integrations/swedbank_est/helper.rb
52
+ - lib/active_merchant/billing/integrations/swedbank_est/notification.rb
53
+ - lib/active_merchant/billing/integrations/quickpay.rb
54
+ - lib/active_merchant/billing/integrations/seb_est.rb
55
+ - lib/active_merchant/billing/integrations/action_view_helper.rb
56
+ - lib/active_merchant/billing/integrations/gestpay.rb
57
+ - lib/active_merchant/billing/integrations/sampo_est.rb
58
+ - lib/active_merchant/billing/integrations/return.rb
59
+ - lib/active_merchant/billing/integrations/hi_trust.rb
60
+ - lib/active_merchant/billing/integrations/paypal.rb
61
+ - lib/active_merchant/billing/integrations/bogus.rb
62
+ - lib/active_merchant/billing/integrations/hi_trust/return.rb
63
+ - lib/active_merchant/billing/integrations/hi_trust/helper.rb
64
+ - lib/active_merchant/billing/integrations/hi_trust/notification.rb
65
+ - lib/active_merchant/billing/integrations/sampo_est/helper.rb
66
+ - lib/active_merchant/billing/integrations/sampo_est/notification.rb
67
+ - lib/active_merchant/billing/integrations/pizza/helper.rb
68
+ - lib/active_merchant/billing/integrations/pizza/notification.rb
69
+ - lib/active_merchant/billing/integrations/chronopay.rb
70
+ - lib/active_merchant/billing/integrations/pizza.rb
71
+ - lib/active_merchant/billing/integrations/gestpay/return.rb
72
+ - lib/active_merchant/billing/integrations/gestpay/helper.rb
73
+ - lib/active_merchant/billing/integrations/gestpay/notification.rb
74
+ - lib/active_merchant/billing/integrations/gestpay/common.rb
75
+ - lib/active_merchant/billing/integrations/helper.rb
76
+ - lib/active_merchant/billing/integrations/nochex.rb
77
+ - lib/active_merchant/billing/integrations/adyen.rb
78
+ - lib/active_merchant/billing/integrations/nochex/return.rb
79
+ - lib/active_merchant/billing/integrations/nochex/helper.rb
80
+ - lib/active_merchant/billing/integrations/nochex/notification.rb
81
+ - lib/active_merchant/billing/integrations/quickpay/helper.rb
82
+ - lib/active_merchant/billing/integrations/quickpay/notification.rb
83
+ - lib/active_merchant/billing/integrations/notification.rb
84
+ - lib/active_merchant/billing/integrations/bogus/return.rb
85
+ - lib/active_merchant/billing/integrations/bogus/helper.rb
86
+ - lib/active_merchant/billing/integrations/bogus/notification.rb
87
+ - lib/active_merchant/billing/integrations/two_checkout/return.rb
88
+ - lib/active_merchant/billing/integrations/two_checkout/helper.rb
89
+ - lib/active_merchant/billing/integrations/two_checkout/notification.rb
90
+ - lib/active_merchant/billing/integrations/paypal/return.rb
91
+ - lib/active_merchant/billing/integrations/paypal/helper.rb
92
+ - lib/active_merchant/billing/integrations/paypal/notification.rb
93
+ - lib/active_merchant/billing/integrations/swedbank_est.rb
94
+ - lib/active_merchant/billing/integrations/two_checkout.rb
95
+ - lib/active_merchant/billing/integrations/chronopay/return.rb
96
+ - lib/active_merchant/billing/integrations/chronopay/helper.rb
97
+ - lib/active_merchant/billing/integrations/chronopay/notification.rb
98
+ - lib/active_merchant/billing/response.rb
99
+ - lib/active_merchant/billing/gateway.rb
100
+ - lib/active_merchant/billing/expiry_date.rb
101
+ - lib/active_merchant/billing/gateways/moneris.rb
102
+ - lib/active_merchant/billing/gateways/payflow_express.rb
103
+ - lib/active_merchant/billing/gateways/payment_express.rb
104
+ - lib/active_merchant/billing/gateways/authorize_net.rb
105
+ - lib/active_merchant/billing/gateways/secure_pay_au.rb
106
+ - lib/active_merchant/billing/gateways/quickpay.rb
107
+ - lib/active_merchant/billing/gateways/smart_ps.rb
108
+ - lib/active_merchant/billing/gateways/sage_pay.rb
109
+ - lib/active_merchant/billing/gateways/authorize_net_cim.rb
110
+ - lib/active_merchant/billing/gateways/payflow.rb
111
+ - lib/active_merchant/billing/gateways/merchant_e_solutions.rb
112
+ - lib/active_merchant/billing/gateways/paypal_ca.rb
113
+ - lib/active_merchant/billing/gateways/plugnpay.rb
114
+ - lib/active_merchant/billing/gateways/psigate.rb
115
+ - lib/active_merchant/billing/gateways/exact.rb
116
+ - lib/active_merchant/billing/gateways/netbilling.rb
117
+ - lib/active_merchant/billing/gateways/braintree.rb
118
+ - lib/active_merchant/billing/gateways/pay_junction.rb
119
+ - lib/active_merchant/billing/gateways/elavon.rb
120
+ - lib/active_merchant/billing/gateways/net_registry.rb
121
+ - lib/active_merchant/billing/gateways/viaklix.rb
122
+ - lib/active_merchant/billing/gateways/paypal_express.rb
123
+ - lib/active_merchant/billing/gateways/pay_secure.rb
124
+ - lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb
125
+ - lib/active_merchant/billing/gateways/sage/sage_core.rb
126
+ - lib/active_merchant/billing/gateways/sage/sage_bankcard.rb
127
+ - lib/active_merchant/billing/gateways/data_cash.rb
128
+ - lib/active_merchant/billing/gateways/first_pay.rb
129
+ - lib/active_merchant/billing/gateways/trans_first.rb
130
+ - lib/active_merchant/billing/gateways/wirecard.rb
131
+ - lib/active_merchant/billing/gateways/sage.rb
132
+ - lib/active_merchant/billing/gateways/secure_pay_tech.rb
133
+ - lib/active_merchant/billing/gateways/paypal.rb
134
+ - lib/active_merchant/billing/gateways/bogus.rb
135
+ - lib/active_merchant/billing/gateways/trust_commerce.rb
136
+ - lib/active_merchant/billing/gateways/modern_payments_cim.rb
137
+ - lib/active_merchant/billing/gateways/cyber_source.rb
138
+ - lib/active_merchant/billing/gateways/skip_jack.rb
139
+ - lib/active_merchant/billing/gateways/realex.rb
140
+ - lib/active_merchant/billing/gateways/linkpoint.rb
141
+ - lib/active_merchant/billing/gateways/eway.rb
142
+ - lib/active_merchant/billing/gateways/usa_epay.rb
143
+ - lib/active_merchant/billing/gateways/paypal_express_common.rb
144
+ - lib/active_merchant/billing/gateways/instapay.rb
145
+ - lib/active_merchant/billing/gateways/secure_pay.rb
146
+ - lib/active_merchant/billing/gateways/jetpay.rb
147
+ - lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb
148
+ - lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb
149
+ - lib/active_merchant/billing/gateways/payflow/payflow_response.rb
150
+ - lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb
151
+ - lib/active_merchant/billing/gateways/merchant_ware.rb
152
+ - lib/active_merchant/billing/gateways/efsnet.rb
153
+ - lib/active_merchant/billing/gateways/ogone.rb
154
+ - lib/active_merchant/billing/gateways/transax.rb
155
+ - lib/active_merchant/billing/gateways/verifi.rb
156
+ - lib/active_merchant/billing/gateways/payflow_uk.rb
157
+ - lib/active_merchant/billing/gateways/psl_card.rb
158
+ - lib/active_merchant/billing/gateways/beanstream_interac.rb
159
+ - lib/active_merchant/billing/gateways/payflow_express_uk.rb
160
+ - lib/active_merchant/billing/gateways/modern_payments.rb
161
+ - lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb
162
+ - lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb
163
+ - lib/active_merchant/billing/gateways/beanstream.rb
164
+ - lib/active_merchant/billing/gateways/card_stream.rb
165
+ - lib/active_merchant/billing/gateways/sallie_mae.rb
166
+ - lib/active_merchant/billing/cvv_result.rb
167
+ - lib/active_merchant/billing/base.rb
168
+ - lib/active_merchant/billing/gateways.rb
169
+ - lib/active_merchant/billing/credit_card_formatting.rb
170
+ - lib/active_merchant/billing/credit_card_methods.rb
171
+ - lib/active_merchant/billing/credit_card.rb
172
+ - lib/active_merchant/billing/avs_result.rb
173
+ - lib/active_merchant/lib/connection.rb
174
+ - lib/active_merchant/lib/requires_parameters.rb
175
+ - lib/active_merchant/lib/post_data.rb
176
+ - lib/active_merchant/lib/validateable.rb
177
+ - lib/active_merchant/lib/posts_data.rb
178
+ - lib/active_merchant/lib/error.rb
179
+ - lib/active_merchant/lib/country.rb
180
+ - lib/active_merchant/lib/utils.rb
181
+ - lib/support/gateway_support.rb
182
+ - lib/active_merchant.rb
183
+ - lib/certs/cacert.pem
184
+ - test/fixtures.yml
185
+ - test/unit/check_test.rb
186
+ - test/unit/utils_test.rb
187
+ - test/unit/credit_card_test.rb
188
+ - test/unit/integrations/notifications/seb_est_notification_test.rb
189
+ - test/unit/integrations/notifications/nochex_notification_test.rb
190
+ - test/unit/integrations/notifications/notification_test.rb
191
+ - test/unit/integrations/notifications/adyen_notification_test.rb
192
+ - test/unit/integrations/notifications/gestpay_notification_test.rb
193
+ - test/unit/integrations/notifications/chronopay_notification_test.rb
194
+ - test/unit/integrations/notifications/paypal_notification_test.rb
195
+ - test/unit/integrations/notifications/quickpay_notification_test.rb
196
+ - test/unit/integrations/notifications/two_checkout_notification_test.rb
197
+ - test/unit/integrations/notifications/hi_trust_notification_test.rb
198
+ - test/unit/integrations/returns/hi_trust_return_test.rb
199
+ - test/unit/integrations/returns/two_checkout_return_test.rb
200
+ - test/unit/integrations/returns/gestpay_return_test.rb
201
+ - test/unit/integrations/returns/nochex_return_test.rb
202
+ - test/unit/integrations/returns/chronopay_return_test.rb
203
+ - test/unit/integrations/returns/return_test.rb
204
+ - test/unit/integrations/returns/paypal_return_test.rb
205
+ - test/unit/integrations/returns/adyen_return_test.rb
206
+ - test/unit/integrations/nochex_module_test.rb
207
+ - test/unit/integrations/sampo_est_module_test.rb
208
+ - test/unit/integrations/paypal_module_test.rb
209
+ - test/unit/integrations/hi_trust_module_test.rb
210
+ - test/unit/integrations/gestpay_module_test.rb
211
+ - test/unit/integrations/bogus_module_test.rb
212
+ - test/unit/integrations/two_checkout_module_test.rb
213
+ - test/unit/integrations/quickpay_module_test.rb
214
+ - test/unit/integrations/swedbank_est_module_test.rb
215
+ - test/unit/integrations/action_view_helper_test.rb
216
+ - test/unit/integrations/adyen_module_test.rb
217
+ - test/unit/integrations/helpers/chronopay_helper_test.rb
218
+ - test/unit/integrations/helpers/seb_est_helper_test.rb
219
+ - test/unit/integrations/helpers/gestpay_helper_test.rb
220
+ - test/unit/integrations/helpers/bogus_helper_test.rb
221
+ - test/unit/integrations/helpers/two_checkout_helper_test.rb
222
+ - test/unit/integrations/helpers/adyen_helper_test.rb
223
+ - test/unit/integrations/helpers/quickpay_helper_test.rb
224
+ - test/unit/integrations/helpers/paypal_helper_test.rb
225
+ - test/unit/integrations/helpers/hi_trust_helper_test.rb
226
+ - test/unit/integrations/helpers/nochex_helper_test.rb
227
+ - test/unit/integrations/seb_est_module_test.rb
228
+ - test/unit/integrations/chronopay_module_test.rb
229
+ - test/unit/posts_data_test.rb
230
+ - test/unit/cvv_result_test.rb
231
+ - test/unit/country_test.rb
232
+ - test/unit/expiry_date_test.rb
233
+ - test/unit/connection_test.rb
234
+ - test/unit/gateways/ogone_test.rb
235
+ - test/unit/gateways/netbilling_test.rb
236
+ - test/unit/gateways/psigate_test.rb
237
+ - test/unit/gateways/plugnpay_test.rb
238
+ - test/unit/gateways/quickpay_test.rb
239
+ - test/unit/gateways/exact_test.rb
240
+ - test/unit/gateways/viaklix_test.rb
241
+ - test/unit/gateways/payflow_express_uk_test.rb
242
+ - test/unit/gateways/trans_first_test.rb
243
+ - test/unit/gateways/skip_jack_test.rb
244
+ - test/unit/gateways/authorize_net_test.rb
245
+ - test/unit/gateways/payflow_uk_test.rb
246
+ - test/unit/gateways/net_registry_test.rb
247
+ - test/unit/gateways/payflow_test.rb
248
+ - test/unit/gateways/pay_junction_test.rb
249
+ - test/unit/gateways/gateway_test.rb
250
+ - test/unit/gateways/merchant_e_solutions_test.rb
251
+ - test/unit/gateways/wirecard_test.rb
252
+ - test/unit/gateways/linkpoint_test.rb
253
+ - test/unit/gateways/elavon_test.rb
254
+ - test/unit/gateways/verifi_test.rb
255
+ - test/unit/gateways/braintree_test.rb
256
+ - test/unit/gateways/data_cash_test.rb
257
+ - test/unit/gateways/sage_bankcard_test.rb
258
+ - test/unit/gateways/bogus_test.rb
259
+ - test/unit/gateways/paypal_express_test.rb
260
+ - test/unit/gateways/modern_payments_cim_test.rb
261
+ - test/unit/gateways/sallie_mae_test.rb
262
+ - test/unit/gateways/realex_test.rb
263
+ - test/unit/gateways/jetpay_test.rb
264
+ - test/unit/gateways/merchant_ware_test.rb
265
+ - test/unit/gateways/efsnet_test.rb
266
+ - test/unit/gateways/instapay_test.rb
267
+ - test/unit/gateways/beanstream_interac_test.rb
268
+ - test/unit/gateways/paypal_test.rb
269
+ - test/unit/gateways/beanstream_test.rb
270
+ - test/unit/gateways/pay_secure_test.rb
271
+ - test/unit/gateways/usa_epay_test.rb
272
+ - test/unit/gateways/cyber_source_test.rb
273
+ - test/unit/gateways/eway_test.rb
274
+ - test/unit/gateways/first_pay_test.rb
275
+ - test/unit/gateways/payflow_express_test.rb
276
+ - test/unit/gateways/secure_pay_tech_test.rb
277
+ - test/unit/gateways/authorize_net_cim_test.rb
278
+ - test/unit/gateways/psl_card_test.rb
279
+ - test/unit/gateways/sage_pay_test.rb
280
+ - test/unit/gateways/card_stream_test.rb
281
+ - test/unit/gateways/secure_pay_au_test.rb
282
+ - test/unit/gateways/sage_virtual_check_test.rb
283
+ - test/unit/gateways/moneris_test.rb
284
+ - test/unit/gateways/payment_express_test.rb
285
+ - test/unit/gateways/trust_commerce_test.rb
286
+ - test/unit/gateways/secure_pay_test.rb
287
+ - test/unit/credit_card_methods_test.rb
288
+ - test/unit/base_test.rb
289
+ - test/unit/post_data_test.rb
290
+ - test/unit/response_test.rb
291
+ - test/unit/credit_card_formatting_test.rb
292
+ - test/unit/avs_result_test.rb
293
+ - test/unit/country_code_test.rb
294
+ - test/unit/validateable_test.rb
295
+ - test/unit/generators/test_gateway_generator.rb
296
+ - test/unit/generators/test_integration_generator.rb
297
+ - test/unit/generators/test_generator_helper.rb
298
+ - test/remote/integrations/remote_gestpay_integration_test.rb
299
+ - test/remote/integrations/remote_paypal_integration_test.rb
300
+ - test/remote/gateways/remote_trust_commerce_test.rb
301
+ - test/remote/gateways/remote_sage_test.rb
302
+ - test/remote/gateways/remote_data_cash_test.rb
303
+ - test/remote/gateways/remote_cyber_source_test.rb
304
+ - test/remote/gateways/remote_merchant_ware_test.rb
305
+ - test/remote/gateways/remote_card_stream_test.rb
306
+ - test/remote/gateways/remote_quickpay_test.rb
307
+ - test/remote/gateways/remote_verifi_test.rb
308
+ - test/remote/gateways/remote_exact_test.rb
309
+ - test/remote/gateways/remote_moneris_test.rb
310
+ - test/remote/gateways/remote_plugnpay_test.rb
311
+ - test/remote/gateways/remote_paypal_test.rb
312
+ - test/remote/gateways/remote_secure_pay_au_test.rb
313
+ - test/remote/gateways/remote_efsnet_test.rb
314
+ - test/remote/gateways/remote_netbilling_test.rb
315
+ - test/remote/gateways/remote_sage_pay_test.rb
316
+ - test/remote/gateways/remote_sallie_mae_test.rb
317
+ - test/remote/gateways/remote_viaklix_test.rb
318
+ - test/remote/gateways/remote_psigate_test.rb
319
+ - test/remote/gateways/remote_trans_first_test.rb
320
+ - test/remote/gateways/remote_secure_pay_test.rb
321
+ - test/remote/gateways/remote_eway_test.rb
322
+ - test/remote/gateways/remote_ogone_test.rb
323
+ - test/remote/gateways/remote_net_registry_test.rb
324
+ - test/remote/gateways/remote_pay_secure_test.rb
325
+ - test/remote/gateways/remote_payflow_test.rb
326
+ - test/remote/gateways/remote_realex_test.rb
327
+ - test/remote/gateways/remote_sage_bankcard_test.rb
328
+ - test/remote/gateways/remote_modern_payments_test.rb
329
+ - test/remote/gateways/remote_braintree_test.rb
330
+ - test/remote/gateways/remote_instapay_test.rb
331
+ - test/remote/gateways/remote_pay_junction_test.rb
332
+ - test/remote/gateways/remote_authorize_net_cim_test.rb
333
+ - test/remote/gateways/remote_payflow_uk_test.rb
334
+ - test/remote/gateways/remote_payflow_express_test.rb
335
+ - test/remote/gateways/remote_secure_pay_tech_test.rb
336
+ - test/remote/gateways/remote_linkpoint_test.rb
337
+ - test/remote/gateways/remote_jetpay_test.rb
338
+ - test/remote/gateways/remote_wirecard_test.rb
339
+ - test/remote/gateways/remote_transax_test.rb
340
+ - test/remote/gateways/remote_beanstream_test.rb
341
+ - test/remote/gateways/remote_payment_express_test.rb
342
+ - test/remote/gateways/remote_skipjack_test.rb
343
+ - test/remote/gateways/remote_usa_epay_test.rb
344
+ - test/remote/gateways/remote_psl_card_test.rb
345
+ - test/remote/gateways/remote_sage_virtual_check_test.rb
346
+ - test/remote/gateways/remote_authorize_net_test.rb
347
+ - test/remote/gateways/remote_merchant_e_solutions_test.rb
348
+ - test/remote/gateways/remote_first_pay_test.rb
349
+ - test/remote/gateways/remote_elavon_test.rb
350
+ - test/remote/gateways/remote_paypal_express_test.rb
351
+ - test/remote/gateways/remote_modern_payments_cim_test.rb
352
+ - test/remote/gateways/remote_beanstream_interac_test.rb
353
+ - test/test_helper.rb
354
+ - script/destroy
355
+ - script/generate
356
+ - gem-public_cert.pem
357
+ - MIT-LICENSE
358
+ - README
359
+ - CHANGELOG
360
+ - CONTRIBUTORS
361
+ - init.rb
362
+ - Rakefile
363
+ has_rdoc: true
364
+ homepage: http://activemerchant.org/
365
+ licenses: []
366
+
367
+ post_install_message:
368
+ rdoc_options: []
369
+
370
+ require_paths:
371
+ - lib
372
+ required_ruby_version: !ruby/object:Gem::Requirement
373
+ requirements:
374
+ - - ">="
375
+ - !ruby/object:Gem::Version
376
+ version: "0"
377
+ version:
378
+ required_rubygems_version: !ruby/object:Gem::Requirement
379
+ requirements:
380
+ - - ">="
381
+ - !ruby/object:Gem::Version
382
+ version: "0"
383
+ version:
384
+ requirements: []
385
+
386
+ rubyforge_project: activemerchant
387
+ rubygems_version: 1.3.5
388
+ signing_key:
389
+ specification_version: 3
390
+ summary: Framework and tools for dealing with credit card transactions.
391
+ test_files: []
392
+