require 'test_helper'
class OgoneTest < Test::Unit::TestCase
def setup
@credentials = { :login => 'merchant id',
:user => 'username',
:password => 'password',
:signature => 'mynicesig' }
@gateway = OgoneGateway.new(@credentials)
@credit_card = credit_card
@amount = 100
@identification = "3014726"
@options = {
:order_id => '1',
:billing_address => address,
:description => 'Store Purchase'
}
end
def test_successful_authorize
@gateway.expects(:ssl_post).returns(successful_purchase_response)
assert response = @gateway.authorize(@amount, @credit_card, @options)
assert_success response
assert_equal '3014726;RES', response.authorization
assert response.test?
end
def test_successful_purchase
@gateway.expects(:ssl_post).returns(successful_purchase_response)
assert response = @gateway.purchase(@amount, @credit_card, @options)
assert_success response
assert_equal '3014726;SAL', response.authorization
assert response.test?
end
def test_successful_purchase_without_order_id
@gateway.expects(:ssl_post).returns(successful_purchase_response)
@options.delete(:order_id)
assert response = @gateway.purchase(@amount, @credit_card, @options)
assert_success response
assert_equal '3014726;SAL', response.authorization
assert response.test?
end
def test_successful_capture
@gateway.expects(:ssl_post).returns(successful_capture_response)
assert response = @gateway.capture(@amount, "3048326")
assert_success response
assert_equal '3048326;SAL', response.authorization
assert response.test?
end
def test_successful_void
@gateway.expects(:ssl_post).returns(successful_void_response)
assert response = @gateway.void("3048606")
assert_success response
assert_equal '3048606;DES', response.authorization
assert response.test?
end
def test_successful_referenced_credit
@gateway.expects(:ssl_post).returns(successful_referenced_credit_response)
assert response = @gateway.credit(@amount, "3049652")
assert_success response
assert_equal '3049652;RFD', response.authorization
assert response.test?
end
def test_successful_unreferenced_credit
@gateway.expects(:ssl_post).returns(successful_unreferenced_credit_response)
assert response = @gateway.credit(@amount, @credit_card)
assert_success response
assert_equal "3049654;RFD", response.authorization
assert response.test?
end
def test_unsuccessful_request
@gateway.expects(:ssl_post).returns(failed_purchase_response)
assert response = @gateway.purchase(@amount, @credit_card, @options)
assert_failure response
assert response.test?
end
def test_supported_countries
assert_equal ['BE', 'DE', 'FR', 'NL', 'AT', 'CH'], OgoneGateway.supported_countries
end
def test_supported_card_types
assert_equal [:visa, :master, :american_express, :diners_club, :discover, :jcb, :maestro], OgoneGateway.supported_cardtypes
end
def test_default_currency
assert_equal 'EUR', OgoneGateway.default_currency
end
def test_avs_result
@gateway.expects(:ssl_post).returns(successful_purchase_response)
response = @gateway.purchase(@amount, @credit_card)
assert_equal 'R', response.avs_result['code']
end
def test_cvv_result
@gateway.expects(:ssl_post).returns(successful_purchase_response)
response = @gateway.purchase(@amount, @credit_card)
assert_equal 'P', response.cvv_result['code']
end
private
def successful_authorize_response
<<-END
END
end
def successful_purchase_response
<<-END
END
end
def failed_purchase_response
<<-END
END
end
def successful_capture_response
<<-END
END
end
def successful_void_response
<<-END
END
end
def successful_referenced_credit_response
<<-END
END
end
def successful_unreferenced_credit_response
<<-END
END
end
end