[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.17 and 1.18

version 1.17, 2007/09/13 16:41:36 version 1.18, 2008/09/18 02:53:27
Line 1 
Line 1 
 #!/usr/bin/perl -T  #!/usr/bin/perl -T
 # $RedRiver: keyring.t,v 1.16 2007/09/13 00:02:52 andrew Exp $  # $RedRiver: keyring.t,v 1.17 2007/09/13 15:41:36 andrew Exp $
 use strict;  use strict;
 use warnings;  use warnings;
   
 use Test::More tests => 52;  use Test::More tests => 52;
 use Data::Dumper;  use Data::Dumper;
   
 BEGIN {  BEGIN {
     use_ok( 'Palm::PDB' );      use_ok('Palm::PDB');
     use_ok( 'Palm::Keyring' );      use_ok('Palm::Keyring');
 }  }
   
 my $file = 'Keys-test.pdb';  my $file         = 'Keys-test.pdb';
 my $password = '12345';  my $password     = '12345';
 my $new_password = '54321';  my $new_password = '54321';
   
 my @o = (  my @o = (
     {      {   version  => 4,
         version  => 4,  
         password => $password,          password => $password,
     },      },
     {      {   version  => 5,
         version      => 5,          password => $password,
         password     => $password,          cipher   => 1,
         cipher       => 1,  
     },      },
 );  );
   
 foreach my $options (@o) {  
     my $pdb;  
     my $record;  
     my $decrypted;  
   
     my $acct = {      my $acct = {
         0 => {          0 => {
             label => 'name',              label    => 'name',
             label_id => 0,              label_id => 0,
             data  => 'test3',              data     => 'test3',
             font  => 0,              font     => 0,
         },          },
         1 => {          1 => {
             label => 'account',              label    => 'account',
             label_id => 1,              label_id => 1,
             data  => 'atestaccount',              data     => 'atestaccount',
             font  => 0,              font     => 0,
         },          },
         2 => {          2 => {
             label    => 'password',              label    => 'password',
             label_id => 2,              label_id => 2,
             data     => $password,              data     => $password,
             font  => 0,              font     => 0,
         },          },
         3 => {          3 => {
             label => 'lastchange',              label    => 'lastchange',
             label_id => 3,              label_id => 3,
             data => {              data     => {
                 day   =>  2,                  day   => 2,
                 month =>  2,                  month => 2,
                 year  => 99,                  year  => 99,
             },              },
             font  => 0,              font => 0,
         },          },
         255 => {          255 => {
             label => 'notes',              label    => 'notes',
             label_id => 255,              label_id => 255,
             data  => 'now that really roxorZ!',              data     => 'now that really roxorZ!',
             font  => 0,              font     => 0,
         },          },
     };      };
   
   foreach my $options (@o) {
       my $pdb;
       my $record;
       my $decrypted;
   
     my $Num_Tests_Left = 25;      my $Num_Tests_Left = 25;
     SKIP: {  SKIP: {
         if (defined $options->{cipher} && $options->{cipher} > 0) {          if ( defined $options->{cipher} && $options->{cipher} > 0 ) {
             my $crypt = Palm::Keyring::crypts($options->{cipher});              my $crypt = Palm::Keyring::crypts( $options->{cipher} );
             skip 'Crypt::CBC not installed', $Num_Tests_Left              skip 'Crypt::CBC not installed', $Num_Tests_Left
                 unless eval "require Crypt::CBC";                  unless eval "require Crypt::CBC";
             skip 'Crypt::' . $crypt->{name} . ' not installed', $Num_Tests_Left              skip 'Crypt::' . $crypt->{name} . ' not installed',
                   $Num_Tests_Left
                 unless eval "require Crypt::$crypt->{name}";                  unless eval "require Crypt::$crypt->{name}";
         }          }
   
         if ($options->{version} == 4) {          if ( $options->{version} == 4 ) {
             skip 'Crypt::DES not installed', $Num_Tests_Left              skip 'Crypt::DES not installed', $Num_Tests_Left
                 unless eval "require Crypt::DES ";                  unless eval "require Crypt::DES ";
             skip 'Digest::MD5 not installed', $Num_Tests_Left              skip 'Digest::MD5 not installed', $Num_Tests_Left
                 unless eval "require Digest::MD5 ";                  unless eval "require Digest::MD5 ";
         } elsif ($options->{version} == 5) {          }
           elsif ( $options->{version} == 5 ) {
             skip 'Digest::HMAC_SHA1 not installed', $Num_Tests_Left              skip 'Digest::HMAC_SHA1 not installed', $Num_Tests_Left
                 unless eval "require Digest::HMAC_SHA1 ";                  unless eval "require Digest::HMAC_SHA1 ";
         }          }
   
         ok( $pdb = new Palm::Keyring($options),          ok( $pdb = new Palm::Keyring($options),
             'new Palm::Keyring v' . $options->{version});              'new Palm::Keyring v' . $options->{version}
           );
   
         ok( $record = $pdb->append_Record(), 'Append Record' );          ok( $record = $pdb->append_Record(), 'Append Record' );
   
         ok( $pdb->Encrypt($record, $password, $acct),          ok( $pdb->Encrypt( $record, $password, $acct ),
             'Encrypt account into record' );              'Encrypt account into record' );
   
         ok( $pdb->Write($file), 'Write file' );          ok( $pdb->Write($file), 'Write file' );
Line 108 
Line 109 
         ok( $pdb->Password($password), 'Verify Password' );          ok( $pdb->Password($password), 'Verify Password' );
   
         my $rec_num = 0;          my $rec_num = 0;
         ok( $decrypted = $pdb->Decrypt($pdb->{records}->[$rec_num]),          ok( $decrypted = $pdb->Decrypt( $pdb->{records}->[$rec_num] ),
             'Decrypt record' );              'Decrypt record' );
   
         is( $decrypted->{2}->{data}, $password, 'Got password' );          is( $decrypted->{2}->{data}, $password, 'Got password' );
Line 117 
Line 118 
   
         my $old_date = $decrypted->{3}->{data};          my $old_date = $decrypted->{3}->{data};
   
         ok( $pdb->Password($password, $new_password), 'Change PDB Password' );          ok( $pdb->Password( $password, $new_password ),
               'Change PDB Password' );
   
         ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]),          ok( $decrypted = $pdb->Decrypt( $pdb->{'records'}->[$rec_num] ),
             'Decrypt with new password' );              'Decrypt with new password' );
   
         my $new_date = $decrypted->{3}->{data};          my $new_date = $decrypted->{3}->{data};
Line 130 
Line 132 
   
         $pdb->{records}->[$rec_num]->{plaintext} = $acct;          $pdb->{records}->[$rec_num]->{plaintext} = $acct;
   
         ok(  $pdb->Encrypt($pdb->{'records'}->[$rec_num]), 'Change record' );          ok( $pdb->Encrypt( $pdb->{'records'}->[$rec_num] ), 'Change record' );
   
         ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]),          ok( $decrypted = $pdb->Decrypt( $pdb->{'records'}->[$rec_num] ),
             'Decrypt new record' );              'Decrypt new record' );
   
         $new_date = $decrypted->{3}->{data};          $new_date = $decrypted->{3}->{data};
   
         my $od = join '/', map { $old_date->{$_} } sort keys %{ $old_date };          my $od = join '/', map { $old_date->{$_} } sort keys %{$old_date};
         my $nd = join '/', map { $new_date->{$_} } sort keys %{ $new_date };          my $nd = join '/', map { $new_date->{$_} } sort keys %{$new_date};
   
         isnt( $od, $nd, 'Date changed');          isnt( $od, $nd, 'Date changed' );
   
         is( $decrypted->{2}->{data}, $new_password, 'Got new password' );          is( $decrypted->{2}->{data}, $new_password, 'Got new password' );
   
         my $last_decrypted = $decrypted;          my $last_decrypted = $decrypted;
   
         $decrypted = {};          $decrypted = {};
         ok( $pdb->Password(), 'Forget password' );          ok( $pdb->Password(), 'Forget password' );
   
         eval{ $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]) };          eval { $decrypted = $pdb->Decrypt( $pdb->{'records'}->[$rec_num] ) };
         ok( $@, 'Don\'t decrypt' );          ok( $@, 'Don\'t decrypt' );
   
         isnt( $decrypted->{password}, $new_password, 'Didn\'t get new password' );          isnt( $decrypted->{password},
               $new_password, 'Didn\'t get new password' );
   
         ok( $pdb->Unlock($new_password), 'Unlock' );          ok( $pdb->Unlock($new_password), 'Unlock' );
   
Line 163 
Line 166 
         ok( $pdb->Lock(), 'Lock' );          ok( $pdb->Lock(), 'Lock' );
   
         my $cleared_decrypted = {};          my $cleared_decrypted = {};
         $cleared_decrypted->{0}= $last_decrypted->{0};          $cleared_decrypted->{0} = $last_decrypted->{0};
         @plaintext = map { $_->{plaintext} } @{ $pdb->{records} };          @plaintext = map { $_->{plaintext} } @{ $pdb->{records} };
   
         is_deeply( $plaintext[0], $cleared_decrypted, 'Cleared records' );          is_deeply( $plaintext[0], $cleared_decrypted, 'Cleared records' );

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

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