Sha256: 8d99d0aabab5e1ad8429664b3a66a5875b59fda7f24812a1acd81d0bb9a478d1
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 KB
Contents
require File.dirname(__FILE__) + '/../../test_helper' class RemoteGestpayIntegrationTest < Test::Unit::TestCase include MerbMerchant::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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
merb_merchant-1.4.1 | test/remote/integrations/remote_gestpay_integration_test.rb |