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

version 1.2, 2007/01/28 16:12:47 version 1.8, 2007/02/18 16:24:53
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.7 2007/02/18 16:19:12 andrew Exp $
   use strict;
   use warnings;
   
 ######################### We start with some black magic to print on failure.  use Test::More qw/no_plan/; #tests => 22;
   
 # Change 1..1 below to 1..last_test_to_print .  BEGIN { use_ok( 'Palm::PDB' ); }
 # (It may become useful if the test is moved to ./t subdirectory.)  BEGIN { 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;  my $acct = {
 print "ok 1\n";      name        => 'test3',
           account     => 'atestaccount',
           password    => $password,
           notes       => 'now that really roxorZ!',
       lastchange  => {
           day   =>  2,
           month =>  2,
           year  => 99,
       },
   };
   
   my @o = (
       {
           version  => 4,
           password => $password,
       },
       {
           version      => 5,
           password     => $password,
           v4compatible => 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"      ok( $pdb = new Palm::Keyring($options), 'New Palm::Keyring');
 # (correspondingly "not ok 13") depending on the success of chunk 13  
 # of the test code):  
   
 my $password = '12345';      ok( $record = $pdb->append_Record(), 'Append Record' );
 my $pdb;  
   
 eval { $pdb = new Palm::Keyring($password) };      ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' );
 unless( $@ ) {  
         print "ok 2\n";  
 } else {  
         print "not ok 2\n";  
 }  
   
 my $record;      ok( $pdb->Write($file), 'Write file' );
   
 eval { $record = $pdb->append_Record() };      $pdb = undef;
 unless( $@ ) {  
         print "ok 3\n";  
 } else {  
         print "not ok 3\n";  
 }  
   
 $record->{plaintext} = {      ok( $pdb = new Palm::PDB(), 'New Palm::PDB' );
         name        => 'Test3',  
         account     => 'atestaccount',  
         password    => $password,  
         description => 'now that really roxorZ!',  
 };  
   
 my $file = 'Keys-GTKR-test.pdb';      ok( $pdb->Load($file), 'Load File' );
   
 if ( $pdb->Write($file) ) {      ok( $pdb->Password($password), 'Verify Password' );
         print "ok 4\n";  
 } else {  
         print "not ok 4\n";  
 }  
   
 if ( $pdb->Load($file, $password) ) {      ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]), 'Decrypt record' );
         print "ok 5\n";  
 } else {  
         print "not ok 5\n";  
 }  
   
 if ($pdb->{'records'}->[1]->{'plaintext'}->{'password'} eq $password) {      is( $decrypted->{password}, $password, 'Got password' );
         print "ok 6\n";  
 } else {  
         print "not ok 6\n";  
 }  
   
 unlink($file);      is_deeply( $decrypted, $acct, 'Account Matches' );
   
 1;      my $old_date = $decrypted->{'lastchange'};
   
       ok( $pdb->Password($password, $new_password), 'Change PDB Password' );
   
       ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]), 'Decrypt with new password' );
   
       my $new_date = $decrypted->{'lastchange'};
   
       is_deeply( $old_date, $new_date, 'Date didn\'t change' );
   
       $acct->{'password'} = $new_password;
   
       ok(  $pdb->Encrypt($pdb->{'records'}->[1], $acct), 'Change record' );
   
       ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]), 'Decrypt new record' );
   
       $new_date = $decrypted->{'lastchange'};
   
       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->{password}, $new_password, 'Got new password' );
   
       $decrypted = {};
       ok( $pdb->Password(), 'Forget password' );
   
       eval{ $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]) };
       ok( $@, 'Don\'t decrypt' );
   
       isnt( $decrypted->{password}, $new_password, 'Didn\'t get new password' );
   
       unlink($file);
   }
   
   1;

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

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