X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=t%2Forder_number.t;fp=t%2Forder_number.t;h=9d752a4230faea8d8b124ea2b56f9c7a3a3a160b;hb=2e64453300da7fc60b2488b38ee46f2cd3f3f08c;hp=0000000000000000000000000000000000000000;hpb=6ba72ba30863c04cf190de9159ecb026f46cde15;p=Business-OnlinePayment-TransactionCentral.git diff --git a/t/order_number.t b/t/order_number.t new file mode 100644 index 0000000..9d752a4 --- /dev/null +++ b/t/order_number.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 => '01/06', + 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() && $tx->order_number =~ /^(\w+)$/ ) { + print "ok 1\n"; +} else { + warn "order number: ". $tx->order_number."\n"; + #warn $tx->error_message. "\n"; + print "not ok 1\n"; +} +