Sha256: e00f64e913b63ee135a5b773a4c40997255bea4eb4b41ea1f9c7b89554b7f5cf
Contents?: true
Size: 1.76 KB
Versions: 2
Compression:
Stored size: 1.76 KB
Contents
require 'test_helper' class HiTrustNotificationTest < Test::Unit::TestCase include AbtainBilling::Billing::Integrations def setup @notification = HiTrust::Notification.new(successful_response) end def teardown AbtainBilling::Billing::Base.integration_mode = :test end def test_accessors assert @notification.complete? assert_equal "Completed", @notification.status assert_equal "012345678901", @notification.transaction_id assert_equal "1000", @notification.item_id assert_equal "101010", @notification.account assert_equal "5.00", @notification.gross assert_equal "USD", @notification.currency assert_equal Time.parse("2007-12-01.12.35.40.123456"), @notification.received_at assert @notification.test? end def test_compositions assert_equal Money.new(500, 'USD'), @notification.amount end def test_send_acknowledgement assert @notification.acknowledge end def test_respond_to_acknowledge assert @notification.respond_to?(:acknowledge) end def test_valid_sender_in_testmode_always_true assert @notification.test? assert @notification.valid_sender?('127.0.0.1') assert @notification.valid_sender?(nil) end def test_valid_sender AbtainBilling::Billing::Base.integration_mode = :production assert @notification.valid_sender?('203.75.242.8') end def test_invalid_sender AbtainBilling::Billing::Base.integration_mode = :production assert_false @notification.valid_sender?('127.0.0.1') assert_false @notification.valid_sender?(nil) end private def successful_response 'retcode=00&ordernumber=1000&orderstatus=02&authCode=123456&eci=VISA3D&authRRN=012345678901&storeid=101010&approveamount=500¤cy=USD&orderdate=2007-12-01.12.35.40.123456' end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
abtain_billing-1.03 | test/unit/integrations/notifications/hi_trust_notification_test.rb |
abtain_billing-1.02 | test/unit/integrations/notifications/hi_trust_notification_test.rb |