From cec42b9eea13c8e38ba9d8f9dbcf0dee4e1e7876 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 6 Apr 2007 02:16:39 +0000 Subject: [PATCH] add these tests --- t/credit_card_fs.t | 56 +++++++++++++++++++++++++++++++++++++++++++ t/credit_card_onedigitmonth.t | 45 ++++++++++++++++++++++++++++++++++ 2 files changed, 101 insertions(+) create mode 100644 t/credit_card_fs.t create mode 100644 t/credit_card_onedigitmonth.t diff --git a/t/credit_card_fs.t b/t/credit_card_fs.t new file mode 100644 index 0000000..8fa2ee2 --- /dev/null +++ b/t/credit_card_fs.t @@ -0,0 +1,56 @@ +BEGIN { $| = 1; print "1..1\n"; } + +eval "use Net::SSLeay;"; +if ( $@ ) { + print "ok 1 # Skipped: Net::SSLeay is not installed\n"; exit; +} + +use Business::OnlinePayment; + +my $tx = new Business::OnlinePayment("TransactionCentral"); + +#$Business::OnlinePayment::HTTPS::DEBUG = 1; +#$Business::OnlinePayment::HTTPS::DEBUG = 1; +#$Business::OnlinePayment::TransactionCentral::DEBUG = 1; +#$Business::OnlinePayment::TransactionCentral::DEBUG = 1; + +$tx->content( + type => 'VISA', + login => '10011', + password => 'KK48NPYEJHMAH6DK', #regkey + action => 'Normal Authorization', + description => 'Business::OnlinePayment::TransactionCentral test', + amount => '32', + + customer_id => '54', + last_name => 'Beast', + first_name => 'Tofu', + name => 'Tofu Beast', + address => '123 Anystreet', + city => 'Anywhere', + state => 'UT', + zip => '84058', + country => 'US', + + referer => 'http://cleanwhisker.420.am/', + email => 'ivan-transactioncentral-test@420.am', + #email => 'tofubeast@example.com', + phone => '530-555-3300', + + 'customer_ip' => '5.4.3.2', + #invoice_number => '420', + card_number => '4012000000001', + expiration => '01/06', + cvv2 => '420', +); +$tx->test_transaction(1); # test, dont really charge +$tx->submit(); + +if($tx->is_success()) { + print "ok 1\n"; +} else { + #warn $tx->server_response."\n"; + warn $tx->error_message. "\n"; + print "not ok 1\n"; +} + diff --git a/t/credit_card_onedigitmonth.t b/t/credit_card_onedigitmonth.t new file mode 100644 index 0000000..336a9cf --- /dev/null +++ b/t/credit_card_onedigitmonth.t @@ -0,0 +1,45 @@ +BEGIN { $| = 1; print "1..1\n"; } + +eval "use Net::SSLeay;"; +if ( $@ ) { + print "ok 1 # Skipped: Net::SSLeay is not installed\n"; exit; +} + +use Business::OnlinePayment; + +my $tx = new Business::OnlinePayment("TransactionCentral"); + +#$Business::OnlinePayment::HTTPS::DEBUG = 1; +#$Business::OnlinePayment::HTTPS::DEBUG = 1; +#$Business::OnlinePayment::TransactionCentral::DEBUG = 1; +#$Business::OnlinePayment::TransactionCentral::DEBUG = 1; + +$tx->content( + type => 'VISA', + login => '10011', + password => 'KK48NPYEJHMAH6DK', #regkey + action => 'Normal Authorization', + description => 'Business::OnlinePayment::TransactionCentral test', + amount => '32', + card_number => '4012000000001', + expiration => '1/12', + cvv2 => '420', + name => 'Tofu Beast', + address => '123 Anystreet', + city => 'Anywhere', + state => 'UT', + zip => '84058', + country => 'US', + email => 'ivan-transactioncentral-test@420.am', +); +$tx->test_transaction(1); # test, dont really charge +$tx->submit(); + +if($tx->is_success()) { + print "ok 1\n"; +} else { + #warn $tx->server_response."\n"; + warn $tx->error_message. "\n"; + print "not ok 1\n"; +} + -- 2.11.0