summaryrefslogtreecommitdiff
path: root/t/credit_card.t
blob: 0063804e1f436187a56b5ae3ca1539964e70e6f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
BEGIN { $| = 1; print "1..1\n"; }

#testing/testing is valid and seems to work...
#print "ok 1 # Skipped: need a valid Authorize.Net login/password to test\n"; exit;

use Business::OnlinePayment;

my($month, $year) = (localtime)[4,5];
$year++; # So we expire next year.
$year %= 100; # y2k? What's that?

my $tx = new Business::OnlinePayment("AuthorizeNet");
$tx->content(
    type           => 'VISA',
    login          => 'testing',
    password       => 'testing',
    action         => 'Normal Authorization',
    description    => 'Business::OnlinePayment visa test',
    amount         => '49.95',
    invoice_number => '100100',
    customer_id    => 'jsk',
    first_name     => 'Tofu',
    last_name      => 'Beast',
    address        => '123 Anystreet',
    city           => 'Anywhere',
    state          => 'UT',
    zip            => '84058',
    card_number    => '4007000000027',
    expiration     => sprintf("%02d/%02d", $month, $year),
);
$tx->test_transaction(1); # test, dont really charge
$tx->submit();

if($tx->is_success()) {
    print "ok 1\n";
} else {
    warn $tx->error_message;
    print "not ok 1\n";
}