=================================================================== RCS file: /cvs/palm/Palm-Keyring/t/keyring.t,v retrieving revision 1.2 retrieving revision 1.11 diff -u -r1.2 -r1.11 --- palm/Palm-Keyring/t/keyring.t 2007/01/28 16:12:47 1.2 +++ palm/Palm-Keyring/t/keyring.t 2007/02/22 04:57:37 1.11 @@ -1,71 +1,134 @@ -# Before `make install' is performed this script should be runnable with -# `make test'. After `make install' it should work as `perl test.pl' +#!/usr/bin/perl +# $RedRiver: keyring.t,v 1.10 2007/02/19 01:37:10 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 . -# (It may become useful if the test is moved to ./t subdirectory.) +BEGIN { + use_ok( 'Palm::PDB' ); + use_ok( 'Palm::Keyring' ); +} -BEGIN { $| = 1; print "1..6\n"; } -END {print "not ok 1\n" unless $loaded;} -use Palm::Keyring; -$loaded = 1; -print "ok 1\n"; +my $file = 'Keys-test.pdb'; +my $password = '12345'; +my $new_password = '54321'; +my @o = ( + { + version => 4, + password => $password, + }, + { + version => 5, + password => $password, + cipher => 1, + 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" -# (correspondingly "not ok 13") depending on the success of chunk 13 -# of the test code): + my $acct = { + name => 'test3', + account => 'atestaccount', + password => $password, + notes => 'now that really roxorZ!', + lastchange => { + day => 2, + month => 2, + year => 99, + }, + }; -my $password = '12345'; -my $pdb; + SKIP: { + 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) }; -unless( $@ ) { - print "ok 2\n"; -} else { - print "not ok 2\n"; -} + if ($options->{version} == 4) { + skip 'Crypt::DES not installed', 21 unless + eval " require Crypt::DES "; + skip 'Digest::MD5 not installed', 21 unless + 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() }; -unless( $@ ) { - print "ok 3\n"; -} else { - print "not ok 3\n"; -} + ok( $record = $pdb->append_Record(), 'Append Record' ); -$record->{plaintext} = { - name => 'Test3', - account => 'atestaccount', - password => $password, - description => 'now that really roxorZ!', -}; + ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' ); -my $file = 'Keys-GTKR-test.pdb'; + ok( $pdb->Write($file), 'Write file' ); -if ( $pdb->Write($file) ) { - print "ok 4\n"; -} else { - print "not ok 4\n"; -} + $pdb = undef; -if ( $pdb->Load($file, $password) ) { - print "ok 5\n"; -} else { - print "not ok 5\n"; -} -if ($pdb->{'records'}->[1]->{'plaintext'}->{'password'} eq $password) { - print "ok 6\n"; -} else { - print "not ok 6\n"; -} + my $rec_num = 1; + if ($options->{version} == 4) { + ok( $pdb = new Palm::PDB(), 'New Palm::PDB' ); + } else { + ok( $pdb = new Palm::Keyring(-v4compatible => 1), 'New Palm::Keyring' ); + $rec_num = 0; + } -unlink($file); + ok( $pdb->Load($file), 'Load File' ); -1; + ok( $pdb->Password($password), 'Verify Password' ); + ok( $decrypted = $pdb->Decrypt($pdb->{records}->[$rec_num]), 'Decrypt record' ); + + is( $decrypted->{password}, $password, 'Got password' ); + + is_deeply( $decrypted, $acct, 'Account Matches' ); + + my $old_date = $decrypted->{'lastchange'}; + + 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->{'lastchange'}; + + is_deeply( $old_date, $new_date, 'Date didn\'t change' ); + + $acct->{'password'} = $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->{'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'}->[$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;