=================================================================== RCS file: /cvs/palm/Palm-Keyring/t/keyring.t,v retrieving revision 1.1 retrieving revision 1.8 diff -u -r1.1 -r1.8 --- palm/Palm-Keyring/t/keyring.t 2007/01/27 23:59:29 1.1 +++ palm/Palm-Keyring/t/keyring.t 2007/02/18 16:24:53 1.8 @@ -1,72 +1,101 @@ -# 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' ); } -BEGIN { $| = 1; print "1..6\n"; } -END {print "not ok 1\n" unless $loaded;} -use lib '../lib'; -use Palm::Keyring; -$loaded = 1; -print "ok 1\n"; +my $file = 'Keys-test.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 @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" -# (correspondingly "not ok 13") depending on the success of chunk 13 -# of the test code): + ok( $pdb = new Palm::Keyring($options), 'New Palm::Keyring'); -my $password = '12345'; -my $pdb; + ok( $record = $pdb->append_Record(), 'Append Record' ); -eval { $pdb = new Palm::Keyring($password) }; -unless( $@ ) { - print "ok 2\n"; -} else { - print "not ok 2\n"; -} + ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' ); -my $record; + ok( $pdb->Write($file), 'Write file' ); -eval { $record = $pdb->append_Record() }; -unless( $@ ) { - print "ok 3\n"; -} else { - print "not ok 3\n"; -} + $pdb = undef; -$record->{plaintext} = { - name => 'Test3', - account => 'atestaccount', - password => $password, - description => 'now that really roxorZ!', -}; + ok( $pdb = new Palm::PDB(), 'New Palm::PDB' ); -my $file = 'Keys-GTKR-test.pdb'; + ok( $pdb->Load($file), 'Load File' ); -if ( $pdb->Write($file) ) { - print "ok 4\n"; -} else { - print "not ok 4\n"; -} + ok( $pdb->Password($password), 'Verify Password' ); -if ( $pdb->Load($file, $password) ) { - print "ok 5\n"; -} else { - print "not ok 5\n"; -} + ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]), 'Decrypt record' ); -if ($pdb->{'records'}->[1]->{'plaintext'}->{'password'} eq $password) { - print "ok 6\n"; -} else { - print "not ok 6\n"; -} + is( $decrypted->{password}, $password, 'Got password' ); -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;