=================================================================== RCS file: /cvs/palm/Palm-Keyring/t/keyring.t,v retrieving revision 1.2 retrieving revision 1.7 diff -u -r1.2 -r1.7 --- palm/Palm-Keyring/t/keyring.t 2007/01/28 16:12:47 1.2 +++ palm/Palm-Keyring/t/keyring.t 2007/02/18 16:19:12 1.7 @@ -1,71 +1,87 @@ -# 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: keyring4.t,v 1.2 2007/02/18 05:39:32 andrew Exp $ +use strict; +use warnings; -######################### We start with some black magic to print on failure. +use Test::More 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' ); } -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-v4.pdb'; +my $password = '12345'; +my $new_password = '54321'; +my $acct = { + name => 'test3', + account => 'atestaccount', + password => $password, + notes => 'now that really roxorZ!', + lastchange => { + day => 2, + month => 2, + year => 99, + }, +}; +my $pdb; +my $record; +my $decrypted; -######################### End of black magic. +ok( $pdb = new Palm::Keyring($password), 'New Palm::Keyring'); -# 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): +ok( $record = $pdb->append_Record(), 'Append Record' ); -my $password = '12345'; -my $pdb; +ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' ); -eval { $pdb = new Palm::Keyring($password) }; -unless( $@ ) { - print "ok 2\n"; -} else { - print "not ok 2\n"; -} +ok( $pdb->Write($file), 'Write file' ); -my $record; +$pdb = undef; -eval { $record = $pdb->append_Record() }; -unless( $@ ) { - print "ok 3\n"; -} else { - print "not ok 3\n"; -} +ok( $pdb = new Palm::PDB(), 'New Palm::PDB' ); -$record->{plaintext} = { - name => 'Test3', - account => 'atestaccount', - password => $password, - description => 'now that really roxorZ!', -}; +ok( $pdb->Load($file), 'Load File' ); -my $file = 'Keys-GTKR-test.pdb'; +ok( $pdb->Password($password), 'Verify Password' ); -if ( $pdb->Write($file) ) { - print "ok 4\n"; -} else { - print "not ok 4\n"; -} +ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]), 'Decrypt record' ); -if ( $pdb->Load($file, $password) ) { - print "ok 5\n"; -} else { - print "not ok 5\n"; -} +is( $decrypted->{password}, $password, 'Got password' ); -if ($pdb->{'records'}->[1]->{'plaintext'}->{'password'} eq $password) { - print "ok 6\n"; -} else { - print "not ok 6\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); 1; -