=================================================================== RCS file: /cvs/palm/Palm-Keyring/t/keyring.t,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- palm/Palm-Keyring/t/keyring.t 2007/02/17 23:36:05 1.6 +++ palm/Palm-Keyring/t/keyring.t 2007/02/18 16:19:12 1.7 @@ -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: 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' ); } -my $test = 1; -BEGIN { $| = 1; print "1..20\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-v4.pdb'; my $password = '12345'; my $new_password = '54321'; my $acct = { @@ -38,176 +25,63 @@ my $pdb; my $record; +my $decrypted; -eval { $pdb = new Palm::Keyring($password) }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +ok( $pdb = new Palm::Keyring($password), 'New Palm::Keyring'); -eval { $record = $pdb->append_Record() }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +ok( $record = $pdb->append_Record(), 'Append Record' ); -eval { $pdb->Encrypt($record, $acct, $password) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' ); -eval { $pdb->Write($file) }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +ok( $pdb->Write($file), 'Write file' ); -$pdb = new Palm::PDB; -$acct = {}; +$pdb = undef; -eval { $pdb->Load($file) }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +ok( $pdb = new Palm::PDB(), 'New Palm::PDB' ); -eval { $pdb->Password($password) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +ok( $pdb->Load($file), 'Load File' ); -eval { $acct = $pdb->Decrypt($pdb->{'records'}->[1]) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +ok( $pdb->Password($password), 'Verify Password' ); -if ($acct->{'password'} eq $password) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]), 'Decrypt record' ); -my $old_date = $acct->{'lastchange'}; +is( $decrypted->{password}, $password, 'Got password' ); -eval { $pdb->Password($password, $new_password) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +is_deeply( $decrypted, $acct, 'Account Matches' ); -$acct = {}; -eval { $acct = $pdb->Decrypt($pdb->{'records'}->[1]) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +my $old_date = $decrypted->{'lastchange'}; -if ($acct->{'password'} eq $password) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +ok( $pdb->Password($password, $new_password), 'Change PDB Password' ); -my $new_date = $acct->{'lastchange'}; +ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]), 'Decrypt with new password' ); -if ( - $old_date->{'day'} == $new_date->{'day'} && - $old_date->{'month'} == $new_date->{'month'} && - $old_date->{'year'} == $new_date->{'year'} -) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +my $new_date = $decrypted->{'lastchange'}; +is_deeply( $old_date, $new_date, 'Date didn\'t change' ); + $acct->{'password'} = $new_password; -eval { $acct = $pdb->Encrypt($pdb->{'records'}->[1], $acct) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +ok( $pdb->Encrypt($pdb->{'records'}->[1], $acct), 'Change record' ); -$old_date = $new_date; -$new_date = $acct->{'lastchange'}; +ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]), 'Decrypt new record' ); -eval { $acct = $pdb->Decrypt($pdb->{'records'}->[1]) || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +$new_date = $decrypted->{'lastchange'}; -if ( - $old_date->{'day'} != $new_date->{'day'} || - $old_date->{'month'} != $new_date->{'month'} || - $old_date->{'year'} != $new_date->{'year'} -) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +my $od = join '/', map { $old_date->{$_} } sort keys %{ $old_date }; +my $nd = join '/', map { $new_date->{$_} } sort keys %{ $new_date }; -if ($acct->{'password'} eq $new_password) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +isnt( $od, $nd, 'Date changed'); -eval { $pdb->Password() || die }; -unless( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +is( $decrypted->{password}, $new_password, 'Got new password' ); -eval { $acct = $pdb->Decrypt($pdb->{'records'}->[1]) || die }; -if ( $@ ) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +$decrypted = {}; +ok( $pdb->Password(), 'Forget password' ); -unless ($acct->{'password'} eq $password) { - print "ok $test\n"; -} else { - print "not ok $test\n"; -} -$test++; +eval{ $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]) }; +ok( $@, 'Don\'t decrypt' ); +isnt( $decrypted->{password}, $new_password, 'Didn\'t get new password' ); unlink($file); 1; -