| version 1.2, 2007/01/28 16:12:47 |
version 1.7, 2007/02/18 16:19:12 |
|
|
| # Before `make install' is performed this script should be runnable with |
#!/usr/bin/perl |
| # `make test'. After `make install' it should work as `perl test.pl' |
# $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 . |
BEGIN { use_ok( 'Palm::PDB' ); } |
| # (It may become useful if the test is moved to ./t subdirectory.) |
BEGIN { use_ok( 'Palm::Keyring' ); } |
| |
|
| BEGIN { $| = 1; print "1..6\n"; } |
my $file = 'Keys-test-v4.pdb'; |
| END {print "not ok 1\n" unless $loaded;} |
my $password = '12345'; |
| use Palm::Keyring; |
my $new_password = '54321'; |
| $loaded = 1; |
my $acct = { |
| print "ok 1\n"; |
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" |
ok( $record = $pdb->append_Record(), 'Append Record' ); |
| # (correspondingly "not ok 13") depending on the success of chunk 13 |
|
| # of the test code): |
|
| |
|
| my $password = '12345'; |
ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' ); |
| my $pdb; |
|
| |
|
| eval { $pdb = new Palm::Keyring($password) }; |
ok( $pdb->Write($file), 'Write file' ); |
| unless( $@ ) { |
|
| print "ok 2\n"; |
|
| } else { |
|
| print "not ok 2\n"; |
|
| } |
|
| |
|
| my $record; |
$pdb = undef; |
| |
|
| eval { $record = $pdb->append_Record() }; |
ok( $pdb = new Palm::PDB(), 'New Palm::PDB' ); |
| unless( $@ ) { |
|
| print "ok 3\n"; |
|
| } else { |
|
| print "not ok 3\n"; |
|
| } |
|
| |
|
| $record->{plaintext} = { |
ok( $pdb->Load($file), 'Load File' ); |
| name => 'Test3', |
|
| account => 'atestaccount', |
|
| password => $password, |
|
| description => 'now that really roxorZ!', |
|
| }; |
|
| |
|
| my $file = 'Keys-GTKR-test.pdb'; |
ok( $pdb->Password($password), 'Verify Password' ); |
| |
|
| if ( $pdb->Write($file) ) { |
ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[1]), 'Decrypt record' ); |
| print "ok 4\n"; |
|
| } else { |
|
| print "not ok 4\n"; |
|
| } |
|
| |
|
| if ( $pdb->Load($file, $password) ) { |
is( $decrypted->{password}, $password, 'Got password' ); |
| print "ok 5\n"; |
|
| } else { |
|
| print "not ok 5\n"; |
|
| } |
|
| |
|
| if ($pdb->{'records'}->[1]->{'plaintext'}->{'password'} eq $password) { |
is_deeply( $decrypted, $acct, 'Account Matches' ); |
| print "ok 6\n"; |
|
| } else { |
|
| print "not ok 6\n"; |
|
| } |
|
| |
|
| |
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); |
unlink($file); |
| |
|
| 1; |
1; |
| |
|