require File.dirname(__FILE__) + '/../../test_helper' class QuickpayTest < Test::Unit::TestCase def setup @gateway = QuickpayGateway.new( :login => 'LOGIN', :password => 'PASSWORD' ) @credit_card = credit_card('4242424242424242') @amount = 100 @options = { :order_id => '1', :billing_address => address } end def test_successful_purchase @gateway.expects(:ssl_post).times(2).returns(successful_authorization_response, successful_capture_response) assert response = @gateway.purchase(@amount, @credit_card, @options) assert_success response assert_equal '2865261', response.authorization assert response.test? end def test_successful_authorization @gateway.expects(:ssl_post).returns(successful_authorization_response) assert response = @gateway.authorize(@amount, @credit_card, @options) assert_success response assert_equal '2865261', response.authorization assert response.test? end def test_failed_authorization @gateway.expects(:ssl_post).returns(failed_authorization_response) assert response = @gateway.authorize(@amount, @credit_card, @options) assert_failure response assert_equal 'Missing/error in card verification data', response.message assert response.test? end def test_parsing_response_with_errors @gateway.expects(:ssl_post).returns(error_response) response = @gateway.purchase(@amount, @credit_card, @options) assert_failure response assert_equal '008', response.params['qpstat'] assert_equal 'Missing/error in cardnumberMissing/error in expirationdateMissing/error in card verification dataMissing/error in amountMissing/error in ordernumMissing/error in currency', response.params['qpstatmsg'] assert_equal 'Missing/error in cardnumber, Missing/error in expirationdate, Missing/error in card verification data, Missing/error in amount, Missing/error in ordernum, and Missing/error in currency', response.message end def test_merchant_error @gateway.expects(:ssl_post).returns(merchant_error) response = @gateway.purchase(@amount, @credit_card, @options) assert_failure response assert_equal response.message, 'Missing/error in merchant' end def test_parsing_successful_response @gateway.expects(:ssl_post).returns(successful_authorization_response) response = @gateway.authorize(@amount, @credit_card, @options) assert_success response assert_equal 'OK', response.message assert_equal '2865261', response.authorization assert_equal '000', response.params['qpstat'] assert_equal '000', response.params['pbsstat'] assert_equal '2865261', response.params['transaction'] assert_equal '070425223705', response.params['time'] assert_equal '104680', response.params['ordernum'] assert_equal 'cody@example.com', response.params['merchantemail'] assert_equal 'Visa', response.params['cardtype'] assert_equal @amount.to_s, response.params['amount'] assert_equal 'OK', response.params['qpstatmsg'] assert_equal 'Shopify', response.params['merchant'] assert_equal '1110', response.params['msgtype'] assert_equal 'USD', response.params['currency'] end def test_supported_countries assert_equal ['DK'], QuickpayGateway.supported_countries end def test_supported_card_types assert_equal [ :dankort, :forbrugsforeningen, :visa, :master, :american_express, :diners_club, :jcb, :maestro ], QuickpayGateway.supported_cardtypes end #Tests storing credit card information with Quickpay def test_store @gateway.expects(:ssl_post).returns(successful_store_response) response = @gateway.store(@credit_card, :description => 'fiddle', :order_id => 'wobble') assert response.success? assert_equal 'OK', response.message assert_equal '42', response.authorization end def test_release @gateway.expects(:ssl_post).returns(successful_release_response) response = @gateway.void(42) assert response.success? assert_equal 'OK', response.message assert_equal '42', response.authorization end private def error_response "<?xml version='1.0' encoding='ISO-8859-1'?><values qpstat='008' qpstatmsg='Missing/error in cardnumberMissing/error in expirationdateMissing/error in card verification dataMissing/error in amountMissing/error in ordernumMissing/error in currency'/>" end def merchant_error "<?xml version='1.0' encoding='ISO-8859-1'?><values qpstat='008' qpstatmsg='Missing/error in merchant'/>" end def successful_authorization_response "<?xml version='1.0' encoding='ISO-8859-1'?><values qpstat='000' transaction='2865261' time='070425223705' ordernum='104680' merchantemail='cody@example.com' pbsstat='000' cardtype='Visa' amount='100' qpstatmsg='OK' merchant='Shopify' msgtype='1110' currency='USD'/>" end def successful_capture_response '<?xml version="1.0" encoding="ISO-8859-1"?><values msgtype="1230" amount="100" time="080107061755" pbsstat="000" qpstat="000" qpstatmsg="OK" currency="DKK" ordernum="4820346075804536193" transaction="2865261" merchant="Shopify" merchantemail="pixels@jadedpixel.com" />' end def successful_store_response '<?xml version="1.0" encoding="ISO-8859-1"?><values msgtype="1110" amount="100" time="050810144504" ordernum="4620" pbsstat="000" qpstat="000" qpstatmsg="OK" merchantemail="test@quickpay.dk" merchant="Test firma" currency="DKK" transaction="42" cardtype="MasterCard-DK" />' end def successful_release_response '<?xml version="1.0" encoding="ISO-8859-1"?><values msgtype="1430" amount="100" time="050810145441" pbsstat="000" qpstat="000" qpstatmsg="OK" currency="DKK" ordernum="4620" transaction="42" merchant="Test merchant" merchantemail="test@quickpay.dk" />' end def failed_authorization_response '<?xml version="1.0" encoding="ISO-8859-1"?><values qpstat="008" qpstatmsg="Missing/error in card verification data" />' end end