| version 1.3, 2007/02/19 02:55:35 |
version 1.7, 2007/08/10 05:13:31 |
|
|
| #!/usr/bin/perl |
#!/usr/bin/perl -T |
| # $RedRiver: keyring5.t,v 1.2 2007/02/19 01:37:10 andrew Exp $ |
# $RedRiver: keyring5.t,v 1.6 2007/02/27 17:08:05 andrew Exp $ |
| use strict; |
use strict; |
| use warnings; |
use warnings; |
| |
|
| use Test::More tests => 126; |
use Test::More tests => 122; |
| use YAML; |
|
| |
|
| BEGIN { |
BEGIN { |
| use_ok( 'Palm::PDB' ); |
use_ok( 'Palm::PDB' ); |
|
|
| my $new_password = '54321'; |
my $new_password = '54321'; |
| |
|
| foreach my $cipher (0..3) { |
foreach my $cipher (0..3) { |
| |
#next unless $cipher == 0; |
| my $pdb; |
my $pdb; |
| my @recs; |
my @recs; |
| my $record; |
my $record; |
| my $decrypted; |
my $decrypted; |
| |
|
| |
my $crypt = Palm::Keyring::crypts($cipher); |
| |
|
| my $options = { |
my $options = { |
| version => 5, |
version => 5, |
| password => $password, |
password => $password, |
| cipher => $cipher, |
cipher => $cipher, |
| }; |
}; |
| |
|
| my $rec1_name = 'test'; |
|
| |
|
| my $original_accts = [ |
my $original_accts = [ |
| [ |
|
| { |
{ |
| |
0 => { |
| |
'label_id' => 0, |
| |
'data' => '', |
| |
'label' => 'name', |
| |
'font' => 0, |
| |
}, |
| |
2 => { |
| 'label_id' => 2, |
'label_id' => 2, |
| 'data' => 'only password is set', |
'data' => 'only password is set', |
| 'label' => 'password', |
'label' => 'password', |
| 'font' => 0, |
'font' => 0, |
| }, |
}, |
| { |
3 => { |
| 'label_id' => 3, |
'label_id' => 3, |
| 'data' => { |
'data' => { |
| 'month' => 1, |
'month' => 1, |
|
|
| 'label' => 'lastchange', |
'label' => 'lastchange', |
| 'font' => 0, |
'font' => 0, |
| } |
} |
| ], |
}, |
| [ |
|
| { |
{ |
| |
0 => { |
| |
'label_id' => 0, |
| |
'data' => 'test', |
| |
'label' => 'name', |
| |
'font' => 0, |
| |
}, |
| |
2 => { |
| 'label_id' => 2, |
'label_id' => 2, |
| 'data' => 'abcd1234', |
'data' => 'abcd1234', |
| 'label' => 'password', |
'label' => 'password', |
| 'font' => 0, |
'font' => 0, |
| }, |
}, |
| { |
3 => { |
| 'label_id' => 3, |
'label_id' => 3, |
| 'data' => { |
'data' => { |
| 'month' => 1, |
'month' => 1, |
|
|
| 'label' => 'lastchange', |
'label' => 'lastchange', |
| 'font' => 0, |
'font' => 0, |
| }, |
}, |
| { |
255 => { |
| 'label_id' => 255, |
'label_id' => 255, |
| 'data' => 'This is a short note.', |
'data' => 'This is a short note.', |
| 'label' => 'notes', |
'label' => 'notes', |
| 'font' => 0, |
'font' => 0, |
| } |
} |
| ], |
}, |
| [ |
|
| { |
{ |
| |
0 => { |
| |
'label_id' => 0, |
| |
'data' => '', |
| |
'label' => 'name', |
| |
'font' => 0, |
| |
}, |
| |
2 => { |
| 'label_id' => 2, |
'label_id' => 2, |
| 'data' => 'password (date is 2/2/07)', |
'data' => 'password (date is 2/2/07)', |
| 'label' => 'password', |
'label' => 'password', |
| 'font' => 0, |
'font' => 0, |
| }, |
}, |
| { |
3 => { |
| 'label_id' => 3, |
'label_id' => 3, |
| 'data' => { |
'data' => { |
| 'month' => 1, |
'month' => 1, |
|
|
| 'label' => 'lastchange', |
'label' => 'lastchange', |
| 'font' => 0, |
'font' => 0, |
| } |
} |
| ] |
} |
| ]; |
]; |
| |
|
| ok( $pdb = new Palm::Keyring($options), 'New Palm::Keyring v' |
SKIP: { |
| . $options->{version} |
if ($cipher > 0) { |
| . ' Cipher ' |
skip 'Crypt::CBC not installed', 31 unless |
| . $options->{cipher} |
eval "require Crypt::CBC"; |
| ); |
skip 'Crypt::' . $crypt->{name} . ' not installed', 31 unless |
| |
eval "require Crypt::$crypt->{name}"; |
| |
} |
| |
skip 'Digest::HMAC_SHA1 not installed', 31 unless |
| |
eval " require Digest::HMAC_SHA1 "; |
| |
|
| my $rec_id = 0; |
ok( $pdb = new Palm::Keyring($options), 'New Palm::Keyring v' |
| foreach my $acct (@{ $original_accts} ) { |
. $options->{version} |
| ok( $record = $pdb->append_Record(), 'Append Record' ); |
. ' Cipher ' |
| if ($rec_id == 1) { |
. $options->{cipher} |
| ok( $record->{name} = $rec1_name, 'Setting record name' ); |
); |
| |
|
| |
foreach my $acct (@{ $original_accts} ) { |
| |
ok( $record = $pdb->append_Record(), 'Append Record' ); |
| |
ok( $pdb->Encrypt($record, $acct, $password), |
| |
'Encrypt account into record' ); |
| } |
} |
| ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' ); |
|
| $rec_id++; |
|
| } |
|
| |
|
| ok( $pdb->Write($file), 'Write file' ); |
ok( $pdb->Write($file), 'Write file' ); |
| |
|
| $pdb = undef; |
$pdb = undef; |
| |
|
| ok( $pdb = new Palm::PDB(), 'New Palm::PDB' ); |
ok( $pdb = new Palm::PDB(), 'New Palm::PDB' ); |
| |
|
| ok( $pdb->Load($file), 'Load File' ); |
ok( $pdb->Load($file), 'Load File' ); |
| |
|
| ok( $pdb->Password($password), 'Verify Password' ); |
ok( $pdb->Password($password), 'Verify Password' ); |
| |
|
| $rec_id = 0; |
my $rec_id = 0; |
| foreach my $rec (@{ $pdb->{records} }) { |
foreach my $rec (@{ $pdb->{records} }) { |
| ok( $decrypted = $pdb->Decrypt($rec), 'Decrypt record' ); |
ok( $decrypted = $pdb->Decrypt($rec), 'Decrypt record' ); |
| if ($rec_id == 1) { |
if ($rec_id == 1) { |
| is( $rec->{name}, $rec1_name, 'Checking record name' ); |
is( $decrypted->{0}->{data}, $original_accts->[1]->{0}->{data}, |
| |
'Checking record name' ); |
| |
} |
| |
push @recs, $decrypted; |
| |
$rec_id++; |
| } |
} |
| push @recs, $decrypted; |
|
| $rec_id++; |
|
| } |
|
| |
|
| is_deeply( \@recs, $original_accts, 'Account Matches' ); |
is_deeply( \@recs, $original_accts, 'Account Matches' ); |
| |
|
| @recs = (); |
@recs = (); |
| my $rec_num = 1; |
my $rec_num = 1; |
| |
|
| ok( $pdb->Password($password, $new_password), 'Change PDB Password' ); |
ok( $pdb->Password($password, $new_password), 'Change PDB Password' ); |
| |
|
| foreach my $rec (@{ $pdb->{records} }) { |
foreach my $rec (@{ $pdb->{records} }) { |
| ok( $decrypted = $pdb->Decrypt($rec), 'Decrypt record' ); |
ok( $decrypted = $pdb->Decrypt($rec), 'Decrypt record' ); |
| push @recs, $decrypted; |
push @recs, $decrypted; |
| } |
} |
| |
|
| is_deeply( \@recs, $original_accts, 'Account Matches' ); |
is_deeply( \@recs, $original_accts, 'Account Matches' ); |
| |
|
| my $acct; |
my $acct; |
| ok( $acct = $pdb->Decrypt( $pdb->{records}->[$rec_num]), 'decrypt record ' . $rec_num); |
ok( $acct = $pdb->Decrypt( $pdb->{records}->[$rec_num]), 'decrypt record ' . $rec_num); |
| |
|
| foreach my $field (@{ $acct }) { |
ok($acct->{2}->{data} = $new_password, 'Change password'); |
| next unless $field->{label} eq 'password'; |
|
| ok($field->{data} = $new_password, 'Change password'); |
|
| } |
|
| |
|
| ok( $pdb->Encrypt($pdb->{'records'}->[$rec_num], $acct), 'Change record' ); |
ok( $pdb->Encrypt($pdb->{'records'}->[$rec_num], $acct), |
| |
'Change record' ); |
| |
|
| ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]), 'Decrypt changed record' ); |
ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]), |
| |
'Decrypt changed record' ); |
| |
|
| is_deeply($acct, $decrypted, 'Compare changed record'); |
is_deeply($acct, $decrypted, 'Compare changed record'); |
| |
|
| $decrypted = []; |
$decrypted = {}; |
| ok( $pdb->Password(), 'Forget password' ); |
ok( $pdb->Password(), 'Forget password' ); |
| |
|
| eval{ $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]) }; |
eval{ $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]) }; |
| ok($@, 'Don\'t decrypt'); |
ok($@, 'Don\'t decrypt'); |
| |
|
| my $got_password = 'Got nothing'; |
my $got_password = 'Got nothing'; |
| if ($decrypted) { |
if ($decrypted) { |
| foreach my $field (@{ $decrypted }) { |
$got_password = $decrypted->{2}->{data}; |
| next unless $field->{label} eq 'password'; |
|
| $got_password = $field->{data}; |
|
| } |
} |
| } |
|
| |
|
| isnt( $got_password, $new_password, 'Didn\'t get new password' ); |
isnt( $got_password, $new_password, 'Didn\'t get new password' ); |
| |
|
| ok( unlink($file), 'Remove test pdb v' . $options->{version} ); |
ok( unlink($file), 'Remove test pdb v' . $options->{version} ); |
| |
} |
| } |
} |
| |
|
| 1; |
1; |