=================================================================== RCS file: /cvs/palm/Palm-Keyring/t/keyring.t,v retrieving revision 1.3 retrieving revision 1.8 diff -u -r1.3 -r1.8 --- palm/Palm-Keyring/t/keyring.t 2007/01/30 04:59:55 1.3 +++ palm/Palm-Keyring/t/keyring.t 2007/02/18 16:24:53 1.8 @@ -1,27 +1,14 @@ -# 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.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 . -# (It may become useful if the test is moved to ./t subdirectory.) +BEGIN { use_ok( 'Palm::PDB' ); } +BEGIN { use_ok( 'Palm::Keyring' ); } -my $test = 1; -BEGIN { $| = 1; print "1..12\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 $file = 'Keys-test.pdb'; my $password = '12345'; my $new_password = '54321'; my $acct = { @@ -29,101 +16,86 @@ account => 'atestaccount', password => $password, notes => 'now that really roxorZ!', + lastchange => { + day => 2, + month => 2, + year => 99, + }, }; -my $pdb; -my $record; +my @o = ( + { + version => 4, + password => $password, + }, + { + version => 5, + password => $password, + v4compatible => 1, + }, +); -eval { $pdb = new Palm::Keyring($password) }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +foreach my $options (@o) { + my $pdb; + my $record; + my $decrypted; -eval { $record = $pdb->append_Record() }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; + ok( $pdb = new Palm::Keyring($options), 'New Palm::Keyring'); -eval { $pdb->Encrypt($record, $acct, $password) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; + ok( $record = $pdb->append_Record(), 'Append Record' ); -eval { $pdb->Write($file) }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; + ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' ); -$pdb = new Palm::PDB; -$acct = {}; + ok( $pdb->Write($file), 'Write file' ); -eval { $pdb->Load($file) }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; + $pdb = undef; -eval { $pdb->Password($password) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; + ok( $pdb = new Palm::PDB(), 'New Palm::PDB' ); -eval { $acct = $pdb->Decrypt($pdb->{'records'}->[1]) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; + ok( $pdb->Load($file), 'Load File' ); -if ($acct->{'password'} eq $password) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; + ok( $pdb->Password($password), 'Verify Password' ); -eval { $pdb->Password($password, $new_password) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; + ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]), 'Decrypt record' ); -$acct = {}; -eval { $acct = $pdb->Decrypt($pdb->{'records'}->[1]) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; + is( $decrypted->{password}, $password, 'Got password' ); -if ($acct->{'password'} eq $password) { - print "ok $test\n"; -} else { - print "not ok $test\n"; + 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'}->[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); } -$test++; -unlink($file); 1; -