add these tests
authorivan <ivan>
Fri, 6 Apr 2007 02:16:39 +0000 (02:16 +0000)
committerivan <ivan>
Fri, 6 Apr 2007 02:16:39 +0000 (02:16 +0000)
t/credit_card_fs.t [new file with mode: 0644]
t/credit_card_onedigitmonth.t [new file with mode: 0644]

diff --git a/t/credit_card_fs.t b/t/credit_card_fs.t
new file mode 100644 (file)
index 0000000..8fa2ee2
--- /dev/null
@@ -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 (file)
index 0000000..336a9cf
--- /dev/null
@@ -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";
+}
+