[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.4 and 1.19

version 1.4, 2007/02/01 01:56:11 version 1.19, 2008/09/18 03:02:50
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.18 2008/09/18 01:53:27 andrew Exp $
   use strict;
   use warnings;
   
 ######################### We start with some black magic to print on failure.  use Test::More tests => 52;
   use Data::Dumper;
   
 # 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');
   }
   
 my $test = 1;  my $file         = 'Keys-test.pdb';
 BEGIN { $| = 1; print "1..17\n"; }  my $password     = '12345';
 END {print "not ok $test\n" unless $loaded;}  my $new_password = '54321';
 use Palm::PDB;  
 use Palm::Keyring;  
 $loaded = 1;  
 print "ok $test\n";  
 $test++;  
   
 ######################### End of black magic.  my @o = (
       {   version  => 4,
           password => $password,
       },
       {   version  => 5,
           password => $password,
           cipher   => 1,
       },
   );
   
 # Insert your test code below (better if it prints "ok 13"  
 # (correspondingly "not ok 13") depending on the success of chunk 13  
 # of the test code):  
   
 my $file = 'Keys-GTKR-test.pdb';  
 my $password = '12345';  
 my $new_password = '54321';  
 my $acct = {  my $acct = {
     name        => 'test3',      0 => {
         account     => 'atestaccount',          label    => 'name',
         password    => $password,          label_id => 0,
         notes       => 'now that really roxorZ!',          data     => 'test3',
     lastchange  => {          font     => 0,
         day   =>  2,  
         month =>  2,  
         year  => 99,  
     },      },
       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 $pdb;  foreach my $options (@o) {
 my $record;      my $pdb;
       my $record;
       my $decrypted;
   
 eval { $pdb = new Palm::Keyring($password) };      my $Num_Tests_Left = 25;
 unless( $@ ) {  SKIP: {
         print "ok $test\n";          if ( defined $options->{cipher} && $options->{cipher} > 0 ) {
 } else {              my $crypt = Palm::Keyring::crypts( $options->{cipher} );
         print "not ok $test\n";              skip 'Crypt::CBC not installed', $Num_Tests_Left
 }                  unless eval "require Crypt::CBC";
 $test++;              skip 'Crypt::' . $crypt->{name} . ' not installed',
                   $Num_Tests_Left
                   unless eval "require Crypt::$crypt->{name}";
           }
   
 eval { $record = $pdb->append_Record() };          if ( $options->{version} == 4 ) {
 unless( $@ ) {              skip 'Crypt::DES not installed', $Num_Tests_Left
         print "ok $test\n";                  unless eval "require Crypt::DES ";
 } else {              skip 'Digest::MD5 not installed', $Num_Tests_Left
         print "not ok $test\n";                  unless eval "require Digest::MD5 ";
 }          }
 $test++;          elsif ( $options->{version} == 5 ) {
               skip 'Digest::HMAC_SHA1 not installed', $Num_Tests_Left
                   unless eval "require Digest::HMAC_SHA1 ";
           }
   
 eval { $pdb->Encrypt($record, $acct, $password) || die };          ok( $pdb = new Palm::Keyring($options),
 unless( $@ ) {              'new Palm::Keyring v' . $options->{version}
         print "ok $test\n";          );
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 eval { $pdb->Write($file) };          ok( $record = $pdb->append_Record(), 'Append Record' );
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 $pdb = new Palm::PDB;          ok( $pdb->Encrypt( $record, $password, $acct ),
 $acct = {};              'Encrypt account into record' );
   
 eval { $pdb->Load($file) };          ok( $pdb->Write($file), 'Write file' );
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 eval { $pdb->Password($password) || die };          $pdb = undef;
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 eval { $acct = $pdb->Decrypt($pdb->{'records'}->[1]) || die };          ok( $pdb = new Palm::Keyring(), 'new Palm::Keyring' );
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 if ($acct->{'password'} eq $password) {          ok( $pdb->Load($file), 'Load File' );
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 my $old_date = $acct->{'lastchange'};          ok( $pdb->Password($password), 'Verify Password' );
   
 eval { $pdb->Password($password, $new_password) || die };          my $rec_num = 0;
 unless( $@ ) {          ok( $decrypted = $pdb->Decrypt( $pdb->{records}->[$rec_num] ),
         print "ok $test\n";              'Decrypt record' );
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 $acct = {};          is( $decrypted->{2}->{data}, $password, 'Got password' );
 eval { $acct = $pdb->Decrypt($pdb->{'records'}->[1]) || die };  
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 if ($acct->{'password'} eq $password) {          is_deeply( $decrypted, $acct, 'Account Matches' );
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 my $new_date = $acct->{'lastchange'};          my $old_date = $decrypted->{3}->{data};
   
 if (          ok( $pdb->Password( $password, $new_password ),
     $old_date->{'day'}   == $new_date->{'day'}   &&              'Change PDB Password' );
     $old_date->{'month'} == $new_date->{'month'} &&  
     $old_date->{'year'}  == $new_date->{'year'}  
 ) {  
     print "ok $test\n";  
 } else {  
     print "not ok $test\n";  
 }  
 $test++;  
   
 $acct->{'password'} = $new_password;          ok( $decrypted = $pdb->Decrypt( $pdb->{'records'}->[$rec_num] ),
               'Decrypt with new password' );
   
 eval { $acct = $pdb->Encrypt($pdb->{'records'}->[1], $acct) || die };          my $new_date = $decrypted->{3}->{data};
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 $old_date = $new_date;          is_deeply( $old_date, $new_date, 'Date didn\'t change' );
 $new_date = $acct->{'lastchange'};  
   
 eval { $acct = $pdb->Decrypt($pdb->{'records'}->[1]) || die };          $decrypted->{2}->{data} = $new_password;
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 if (          $pdb->{records}->[$rec_num]->{plaintext} = $decrypted;
     $old_date->{'day'}   != $new_date->{'day'}   ||  
     $old_date->{'month'} != $new_date->{'month'} ||  
     $old_date->{'year'}  != $new_date->{'year'}  
 ) {  
     print "ok $test\n";  
 } else {  
     print "not ok $test\n";  
 }  
 $test++;  
   
 if ($acct->{'password'} eq $new_password) {          ok( $pdb->Encrypt( $pdb->{'records'}->[$rec_num] ), 'Change record' );
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
           ok( $decrypted = $pdb->Decrypt( $pdb->{'records'}->[$rec_num] ),
               'Decrypt new record' );
   
 unlink($file);          $new_date = $decrypted->{3}->{data};
   
 1;          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' );
   
           my $last_decrypted = $decrypted;
   
           $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( $pdb->Unlock($new_password), 'Unlock' );
   
           my @plaintext = map { $_->{plaintext} } @{ $pdb->{records} };
   
           is_deeply( $plaintext[0], $last_decrypted, 'Account Matches' );
   
           ok( $pdb->Lock(), 'Lock' );
   
           my $cleared_decrypted = {};
           $cleared_decrypted->{0} = $last_decrypted->{0};
           @plaintext = map { $_->{plaintext} } @{ $pdb->{records} };
   
           is_deeply( $plaintext[0], $cleared_decrypted, 'Cleared records' );
   
           ok( unlink($file), 'Remove test pdb v' . $options->{version} );
   
       }
   }
   
   1;

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.19

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