Renamed sales_number to order_number
[Business-OnlinePayment-InternetSecure.git] / t / 30parse.t
index cfc2b55..435b67d 100755 (executable)
@@ -1,10 +1,12 @@
+# vim:set syntax=perl:
+
 use constant FIELDS => qw(
                        result_code authorization error_message
-                       receipt_number sales_number
+                       receipt_number order_number
                        date
                        card_type
-                       avs_response cvv2_response
-                       total_amount
+                       avs_code cvv2_response
+                       total_amount tax_amounts
                        );
 
 use constant RESULTS => (
@@ -12,14 +14,17 @@ use constant RESULTS => (
                                        is_success      => 1,
                                        result_code     => '2000',
                                        authorization   => 'T00000',
-                                       error_message   => 'Test Approved',
+                                       error_message   => undef,
                                        receipt_number  => '1096019995.5012',
-                                       sales_number    => 0,
+                                       order_number    => 0,
                                        date            => '2003/12/17 09:59:58',
                                        card_type       => undef,
-                                       avs_response    => undef,
+                                       avs_code        => undef,
                                        cvv2_response   => undef,
                                        total_amount    => 3.88,
+                                       tax_amounts     => { GST => 0.25 },
+                                       uuid            => 'f81d4fae-7dec-11d0-a765-00a0c91e6bf6',
+                                       guid            => 'f81d4fae-7dec-11d0-a765-00a0c91e6bf6',
                                },
                                {
                                        is_success      => 0,
@@ -27,12 +32,16 @@ use constant RESULTS => (
                                        authorization   => undef,
                                        error_message   => 'Real error message',
                                        receipt_number  => '1096021915.5853',
-                                       sales_number    => 729,
+                                       order_number    => 729,
                                        date            => '2003/12/17 10:31:58',
                                        card_type       => 'Visa',
-                                       avs_response    => undef,
+                                       avs_code        => undef,
                                        cvv2_response   => undef,
                                        total_amount    => 3.88,
+                                       tax_amounts     => { GST => 0.25,
+                                                               PST => 0.27 },
+                                       uuid            => undef,
+                                       guid            => undef,
                                },
                        );
 
@@ -60,7 +69,7 @@ foreach my $results (RESULTS) {
 
        foreach (FIELDS) {
                no strict 'refs';
-               is($txn->$_, $results->{$_}, $_);
+               is_deeply($txn->$_, $results->{$_}, $_);
        }
 }
 
@@ -128,6 +137,7 @@ __DATA__
   <DoubleColonProducts>3.10::1::001::Test Product 1::{USD}{GST}{TEST}|0.20::1::010::Test Product 2::{GST}{TEST}|0.33::1::020::Test Product 3::{GST}{TEST}|0.25::1::GST::Canadian GST Charged::{TAX}{CALCULATED}</DoubleColonProducts>
   <AVSResponseCode />
   <CVV2ResponseCode />
+  <GUID>f81d4fae-7dec-11d0-a765-00a0c91e6bf6</GUID>
 </TranxResponse>
 
 <?xml version="1.0" encoding="UTF-8"?>
@@ -153,6 +163,7 @@ __DATA__
       <flags>
         <flag>{USD}</flag>
        <flag>{GST}</flag>
+       <flag>{PST}</flag>
       </flags>
     </product>
     <product>
@@ -163,6 +174,7 @@ __DATA__
       <subtotal>0.20</subtotal>
       <flags>
        <flag>{GST}</flag>
+       <flag>{PST}</flag>
       </flags>
     </product>
     <product>
@@ -173,6 +185,7 @@ __DATA__
       <subtotal>0.33</subtotal>
       <flags>
        <flag>{GST}</flag>
+       <flag>{PST}</flag>
       </flags>
     </product>
     <product>
@@ -186,8 +199,19 @@ __DATA__
        <flag>{CALCULATED}</flag>
       </flags>
     </product>
+    <product>
+      <code>PST</code>
+      <description>PST Charged</description>
+      <quantity>1</quantity>
+      <price>0.27</price>
+      <subtotal>0.27</subtotal>
+      <flags>
+        <flag>{TAX}</flag>
+       <flag>{CALCULATED}</flag>
+      </flags>
+    </product>
   </Products>
-  <DoubleColonProducts>3.10::1::001::Test Product 1::{USD}{GST}|0.20::1::010::Test Product 2::{GST}|0.33::1::020::Test Product 3::{GST}|0.25::1::GST::Canadian GST Charged::{TAX}{CALCULATED}</DoubleColonProducts>
+  <DoubleColonProducts>3.10::1::001::Test Product 1::{USD}{GST}{PST}|0.20::1::010::Test Product 2::{GST}{PST}|0.33::1::020::Test Product 3::{GST}{PST}|0.25::1::GST::Canadian GST Charged::{TAX}{CALCULATED}|0.27::1::PST::PST Charged::{TAX}{CALCULATED}</DoubleColonProducts>
   <AVSResponseCode />
   <CVV2ResponseCode />
 </TranxResponse>