working tests!
[Business-OnlinePayment-Skipjack.git] / t / crypt_bad_card_mc.t
1 BEGIN {
2   $| = 1; print "1..1\n";
3   $Business::OnlinePayment::HTTPS::skip_NetSSLeay=1;
4   $Business::OnlinePayment::HTTPS::skip_NetSSLeay=1;
5 }
6
7 eval "use Crypt::SSLeay;";
8 if ( $@ ) {
9   print "ok 1 # Skipped: Crypt::SSLeay is not installed\n"; exit;
10 }
11
12 use Business::OnlinePayment;
13
14 my $tx = new Business::OnlinePayment("Skipjack");
15
16 #$Business::OnlinePayment::HTTPS::DEBUG = 1;
17 #$Business::OnlinePayment::HTTPS::DEBUG = 1;
18 #$Business::OnlinePayment::Skipjack::DEBUG = 1;
19 #$Business::OnlinePayment::Skipjack::DEBUG = 1;
20
21 my $login = $ENV{'sj_html_serial_number'} || '000792524556';
22 my $password = $ENV{'sj_devel_serial_number'} || '100025931874';
23
24 $tx->content(
25     type           => 'VISA',
26     login          => $login, # "HTML serial number"
27     password       => $password, # "Developer serial number"
28     action         => 'Normal Authorization',
29     description    => 'Business::OnlinePayment::Skipjack test',
30     amount         => '32',
31     #card_number    => '5212345678901234',
32     card_number    => '5222222222222222',
33     expiration     => '03/10',
34     name           => 'Tofu Beast',
35     address        => '123 Anystreet',
36     city           => 'Anywhere',
37     state          => 'UT',
38     zip            => '84058',
39     phone          => '415-420-5454',
40     email          => 'ivan-skipjack-test@420.am',
41 );
42 $tx->test_transaction(1); # test, dont really charge
43 $tx->submit();
44
45 if($tx->is_success()) {
46     print "not ok 1\n";
47 } else {
48     #warn $tx->server_response."\n";
49     #warn $tx->error_message. "\n";
50     print "ok 1\n";
51 }
52