Sha256: 34a6552e2ed25bb60f9cd7982e74a7d1613a5a869b037e37d5d26a9f7e0838fe

Contents?: true

Size: 1.11 KB

Versions: 11

Compression:

Stored size: 1.11 KB

Contents

require File.dirname(__FILE__) + '/../../test_helper'

class RemotePaySecureTest < Test::Unit::TestCase

  def setup
    @gateway = PaySecureGateway.new(fixtures(:pay_secure))
    
    @credit_card = credit_card('4000100011112224')
    @options = { 
      :billing_address => address,
      :order_id => generate_unique_id
    }
    @amount = 100
  end
  
  def test_successful_purchase
    assert response = @gateway.purchase(@amount, @credit_card, @options)
    assert_success response
    assert_equal PaySecureGateway::SUCCESS_MESSAGE, response.message
    assert response.test?
  end

  def test_unsuccessful_purchase
    @credit_card.year = '2006'
    assert response = @gateway.purchase(@amount, @credit_card, @options)
    assert_equal 'Declined, card expired', response.message
    assert_failure response
  end
  
  def test_invalid_login
    gateway = PaySecureGateway.new(
                :login => '',
                :password => ''
              )
    assert response = gateway.purchase(@amount, @credit_card, @options)
    assert_equal "MissingField: 'MERCHANT_ID'", response.message
    assert_failure response
  end
end

Version data entries

11 entries across 11 versions & 5 rubygems

Version Path
martinstannard-activemerchant-0.1.0 test/remote/gateways/remote_pay_secure_test.rb
seamusabshere-active_merchant-1.4.2.1 test/remote/gateways/remote_pay_secure_test.rb
seamusabshere-active_merchant-1.4.2.3 test/remote/gateways/remote_pay_secure_test.rb
activemerchant-1.3.0 test/remote/gateways/remote_pay_secure_test.rb
activemerchant-1.3.2 test/remote/gateways/remote_pay_secure_test.rb
activemerchant-1.4.1 test/remote/gateways/remote_pay_secure_test.rb
activemerchant-1.3.1 test/remote/gateways/remote_pay_secure_test.rb
activemerchant-1.4.0 test/remote/gateways/remote_pay_secure_test.rb
activemerchant-1.4.2 test/remote/gateways/remote_pay_secure_test.rb
merb_merchant-1.4.1 test/remote/gateways/remote_pay_secure_test.rb
spree-0.2.0 vendor/plugins/active_merchant/test/remote/gateways/remote_pay_secure_test.rb