Pass AVS and CVV information
[Business-OnlinePayment-eSelectPlus.git] / t / credit_card_ca.t
1 BEGIN { $| = 1; print "1..1\n"; }
2
3 eval "use Net::SSLeay;";
4 if ( $@ ) {
5   print "ok 1 # Skipped: Net::SSLeay is not installed\n"; exit;
6 }
7
8 use Business::OnlinePayment;
9
10 my $tx = new Business::OnlinePayment("eSelectPlus");
11
12 #$Business::OnlinePayment::HTTPS::DEBUG = 1;
13 #$Business::OnlinePayment::HTTPS::DEBUG = 1;
14 $Business::OnlinePayment::eSelectPlus::DEBUG = 1;
15 $Business::OnlinePayment::eSelectPlus::DEBUG = 1;
16
17 $tx->content(
18     type           => 'VISA',
19     login          => 'moot',
20     password       => 'moot',
21     action         => 'Normal Authorization',
22     amount         => '0.80',
23     currency       => 'CAD',
24     card_number    => '4242424242424242',
25     expiration     => '01/12',
26     cvv2           => '123',
27     address        => '1234 Tofu Lane',
28     zip            => 'L3T 2C6',
29 );
30 $tx->test_transaction(1); # test, dont really charge
31 $tx->submit();
32
33 if($tx->is_success()) {
34     print "ok 1\n";
35 } else {
36     warn $tx->server_response."\n";
37     warn $tx->error_message. "\n";
38     print "not ok 1\n";
39 }
40