[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.10

version 1.4, 2007/02/01 01:56:11 version 1.10, 2007/02/19 01:37:10
Line 1 
Line 1 
 # Before `make install' is performed this script should be runnable with  #!/usr/bin/perl
 # `make test'. After `make install' it should work as `perl test.pl'  # $RedRiver: keyring.t,v 1.9 2007/02/19 00:22:42 andrew Exp $
   use strict;
   use warnings;
   
 ######################### We start with some black magic to print on failure.  use Test::More tests => 44;
   use YAML;
   
 # 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"; }  
 END {print "not ok $test\n" unless $loaded;}  
 use Palm::PDB;  
 use Palm::Keyring;  
 $loaded = 1;  
 print "ok $test\n";  
 $test++;  
   
 ######################### End of black magic.  
   
 # 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 $password = '12345';
 my $new_password = '54321';  my $new_password = '54321';
 my $acct = {  
     name        => 'test3',  my @o = (
         account     => 'atestaccount',      {
         password    => $password,          version  => 4,
         notes       => 'now that really roxorZ!',          password => $password,
     lastchange  => {  
         day   =>  2,  
         month =>  2,  
         year  => 99,  
     },      },
 };      {
           version      => 5,
           password     => $password,
           cipher       => 1,
           v4compatible => 1,
       },
   );
   
 my $pdb;  foreach my $options (@o) {
 my $record;      my $pdb;
       my $record;
       my $decrypted;
   
 eval { $pdb = new Palm::Keyring($password) };      my $acct = {
 unless( $@ ) {          name        => 'test3',
         print "ok $test\n";          account     => 'atestaccount',
 } else {          password    => $password,
         print "not ok $test\n";          notes       => 'now that really roxorZ!',
 }          lastchange  => {
 $test++;              day   =>  2,
               month =>  2,
               year  => 99,
           },
       };
   
 eval { $record = $pdb->append_Record() };      ok( $pdb = new Palm::Keyring($options), 'New Palm::Keyring v' . $options->{version} );
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 eval { $pdb->Encrypt($record, $acct, $password) || die };      ok( $record = $pdb->append_Record(), 'Append Record' );
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 eval { $pdb->Write($file) };      ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' );
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 $pdb = new Palm::PDB;      ok( $pdb->Write($file), 'Write file' );
 $acct = {};  
   
 eval { $pdb->Load($file) };      $pdb = undef;
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 eval { $pdb->Password($password) || die };  
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 eval { $acct = $pdb->Decrypt($pdb->{'records'}->[1]) || die };      my $rec_num = 1;
 unless( $@ ) {      if ($options->{version} == 4) {
         print "ok $test\n";          ok( $pdb = new Palm::PDB(), 'New Palm::PDB' );
 } else {      } else {
         print "not ok $test\n";          ok( $pdb = new Palm::Keyring(-v4compatible => 1), 'New Palm::Keyring' );
 }          $rec_num = 0;
 $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 };      ok( $decrypted = $pdb->Decrypt($pdb->{records}->[$rec_num]), 'Decrypt record' );
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 $acct = {};      is( $decrypted->{password}, $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->{'lastchange'};
   
 if (      ok( $pdb->Password($password, $new_password), 'Change PDB Password' );
     $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++;  
   
 $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->{'lastchange'};
 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 };      $acct->{'password'} = $new_password;
 unless( $@ ) {  
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
 if (      ok(  $pdb->Encrypt($pdb->{'records'}->[$rec_num], $acct), 'Change record' );
     $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( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]), 'Decrypt new record' );
         print "ok $test\n";  
 } else {  
         print "not ok $test\n";  
 }  
 $test++;  
   
       $new_date = $decrypted->{'lastchange'};
   
 unlink($file);      my $od = join '/', map { $old_date->{$_} } sort keys %{ $old_date };
       my $nd = join '/', map { $new_date->{$_} } sort keys %{ $new_date };
   
 1;      isnt( $od, $nd, 'Date changed');
   
       is( $decrypted->{password}, $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.4  
changed lines
  Added in v.1.10

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