[BACK]Return to keyring.t CVS log [TXT][DIR] Up to [local] / palm / Palm-Keyring / t

Diff for /palm/Palm-Keyring/t/keyring.t between version 1.2 and 1.14

version 1.2, 2007/01/28 16:12:47 version 1.14, 2007/08/10 05:13:31
Line 1 
Line 1 
 # Before `make install' is performed this script should be runnable with  #!/usr/bin/perl -T
 # `make test'. After `make install' it should work as `perl test.pl'  # $RedRiver: keyring.t,v 1.13 2007/02/27 17:08:05 andrew Exp $
   use strict;
   use warnings;
   
 ######################### We start with some black magic to print on failure.  use Test::More tests => 44;
   
 # Change 1..1 below to 1..last_test_to_print .  BEGIN {
 # (It may become useful if the test is moved to ./t subdirectory.)      use_ok( 'Palm::PDB' );
       use_ok( 'Palm::Keyring' );
   }
   
 BEGIN { $| = 1; print "1..6\n"; }  my $file = 'Keys-test.pdb';
 END {print "not ok 1\n" unless $loaded;}  my $password = '12345';
 use Palm::Keyring;  my $new_password = '54321';
 $loaded = 1;  
 print "ok 1\n";  
   
   my @o = (
       {
           version  => 4,
           password => $password,
       },
       {
           version      => 5,
           password     => $password,
           cipher       => 1,
       },
   );
   
 ######################### End of black magic.  foreach my $options (@o) {
       my $pdb;
       my $record;
       my $decrypted;
   
 # Insert your test code below (better if it prints "ok 13"      my $acct = {
 # (correspondingly "not ok 13") depending on the success of chunk 13          0 => {
 # of the test code):              label => 'name',
               label_id => 0,
               data  => 'test3',
               font  => 0,
           },
           1 => {
               label => 'account',
               label_id => 1,
               data  => 'atestaccount',
               font  => 0,
           },
           2 => {
               label    => 'password',
               label_id => 2,
               data     => $password,
               font  => 0,
           },
           3 => {
               label => 'lastchange',
               label_id => 3,
               data => {
                   day   =>  2,
                   month =>  2,
                   year  => 99,
               },
               font  => 0,
           },
           255 => {
               label => 'notes',
               label_id => 255,
               data  => 'now that really roxorZ!',
               font  => 0,
           },
       };
   
 my $password = '12345';      SKIP: {
 my $pdb;          if (defined $options->{cipher} && $options->{cipher} > 0) {
               my $crypt = Palm::Keyring::crypts($options->{cipher});
               skip 'Crypt::CBC not installed', 21 unless
                   eval "require Crypt::CBC";
               skip 'Crypt::' . $crypt->{name} . ' not installed', 21 unless
                   eval "require Crypt::$crypt->{name}";
           }
   
 eval { $pdb = new Palm::Keyring($password) };          if ($options->{version} == 4) {
 unless( $@ ) {              skip 'Crypt::DES not installed', 21 unless
         print "ok 2\n";                  eval " require Crypt::DES ";
 } else {              skip 'Digest::MD5 not installed', 21 unless
         print "not ok 2\n";                  eval " require Digest::MD5 ";
 }          } elsif ($options->{version} == 5) {
               skip 'Digest::HMAC_SHA1 not installed', 21 unless
                   eval " require Digest::HMAC_SHA1 ";
           }
   
 my $record;          ok( $pdb = new Palm::Keyring($options),
               'new Palm::Keyring v' . $options->{version});
   
 eval { $record = $pdb->append_Record() };          ok( $record = $pdb->append_Record(), 'Append Record' );
 unless( $@ ) {  
         print "ok 3\n";  
 } else {  
         print "not ok 3\n";  
 }  
   
 $record->{plaintext} = {          ok( $pdb->Encrypt($record, $acct, $password),
         name        => 'Test3',              'Encrypt account into record' );
         account     => 'atestaccount',  
         password    => $password,  
         description => 'now that really roxorZ!',  
 };  
   
 my $file = 'Keys-GTKR-test.pdb';          ok( $pdb->Write($file), 'Write file' );
   
 if ( $pdb->Write($file) ) {          $pdb = undef;
         print "ok 4\n";  
 } else {  
         print "not ok 4\n";  
 }  
   
 if ( $pdb->Load($file, $password) ) {          ok( $pdb = new Palm::PDB(), 'new Palm::Keyring' );
         print "ok 5\n";  
 } else {  
         print "not ok 5\n";  
 }  
   
 if ($pdb->{'records'}->[1]->{'plaintext'}->{'password'} eq $password) {          ok( $pdb->Load($file), 'Load File' );
         print "ok 6\n";  
 } else {  
         print "not ok 6\n";  
 }  
   
 unlink($file);          ok( $pdb->Password($password), 'Verify Password' );
   
 1;          my $rec_num = 0;
           ok( $decrypted = $pdb->Decrypt($pdb->{records}->[$rec_num]),
               'Decrypt record' );
   
           is( $decrypted->{2}->{data}, $password, 'Got password' );
   
           is_deeply( $decrypted, $acct, 'Account Matches' );
   
           my $old_date = $decrypted->{3}->{data};
   
           ok( $pdb->Password($password, $new_password), 'Change PDB Password' );
   
           ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]),
               'Decrypt with new password' );
   
           my $new_date = $decrypted->{3}->{data};
   
           is_deeply( $old_date, $new_date, 'Date didn\'t change' );
   
           $acct->{2}->{data} = $new_password;
   
           ok(  $pdb->Encrypt($pdb->{'records'}->[$rec_num], $acct),
               'Change record' );
   
           ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]),
               'Decrypt new record' );
   
           $new_date = $decrypted->{3}->{data};
   
           my $od = join '/', map { $old_date->{$_} } sort keys %{ $old_date };
           my $nd = join '/', map { $new_date->{$_} } sort keys %{ $new_date };
   
           isnt( $od, $nd, 'Date changed');
   
           is( $decrypted->{2}->{data}, $new_password, 'Got new password' );
   
           $decrypted = {};
           ok( $pdb->Password(), 'Forget password' );
   
           eval{ $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]) };
           ok( $@, 'Don\'t decrypt' );
   
           isnt( $decrypted->{password}, $new_password, 'Didn\'t get new password' );
   
           ok( unlink($file), 'Remove test pdb v' . $options->{version} );
       }
   }
   
   1;

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.14

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>