Sha256: d66aae50ba5ee87a15bed25f45f4d13669366b54c2eed0071e07050376386fe4

Contents?: true

Size: 1.2 KB

Versions: 10

Compression:

Stored size: 1.2 KB

Contents

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

class RemoteGestpayIntegrationTest < Test::Unit::TestCase
  include ActiveMerchant::Billing::Integrations

  def setup
    # Your Gestpay ShopLogin
    @shop_login = 'SHOPLOGIN'
    
    @helper = Gestpay::Helper.new('order-500', @shop_login, :amount => '5.00', :currency => 'EUR')
  end

  def test_get_encryption_string
    # Extra fields don't work yet
    # @helper.customer :first_name => 'Cody', :last_name => 'Fauser', :email => 'codyfauser@gmail.com'
    response = @helper.send(:get_encrypted_string)
    assert !response.blank?
  end
  
  def test_get_encryption_string_fails
    @helper = Gestpay::Helper.new('order-500','99999999', :amount => '5.00', :currency => 'EUR')
    assert_raise(StandardError) do
      assert @helper.send(:get_encrypted_string).blank?
    end
  end
  
  def test_unknown_shop_for_decryption_request
    assert_raise(StandardError) do 
      Gestpay::Notification.new(raw_query_string)
    end
  end
  
  private
  def raw_query_string
    "a=900000&b=F7DEB36478FD84760F9134F23C922697272D57DE6D4518EB9B4D468B769D9A3A8071B6EB160B35CB412FC1820C7CC12D17B3141855B1ED55468613702A2E213DDE9DE5B0209E13C416448AE833525959F05693172D7F0656"
  end
end

Version data entries

10 entries across 10 versions & 4 rubygems

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