=================================================================== RCS file: /cvs/palm/Palm-Keyring/t/keyring.t,v retrieving revision 1.10 retrieving revision 1.17 diff -u -r1.10 -r1.17 --- palm/Palm-Keyring/t/keyring.t 2007/02/19 01:37:10 1.10 +++ palm/Palm-Keyring/t/keyring.t 2007/09/13 16:41:36 1.17 @@ -1,10 +1,10 @@ -#!/usr/bin/perl -# $RedRiver: keyring.t,v 1.9 2007/02/19 00:22:42 andrew Exp $ +#!/usr/bin/perl -T +# $RedRiver: keyring.t,v 1.16 2007/09/13 00:02:52 andrew Exp $ use strict; use warnings; -use Test::More tests => 44; -use YAML; +use Test::More tests => 52; +use Data::Dumper; BEGIN { use_ok( 'Palm::PDB' ); @@ -24,7 +24,6 @@ version => 5, password => $password, cipher => 1, - v4compatible => 1, }, ); @@ -34,80 +33,144 @@ my $decrypted; my $acct = { - name => 'test3', - account => 'atestaccount', - password => $password, - notes => 'now that really roxorZ!', - lastchange => { - day => 2, - month => 2, - year => 99, + 0 => { + label => 'name', + label_id => 0, + data => 'test3', + font => 0, }, + 1 => { + label => 'account', + label_id => 1, + data => 'atestaccount', + font => 0, + }, + 2 => { + label => 'password', + label_id => 2, + data => $password, + font => 0, + }, + 3 => { + label => 'lastchange', + label_id => 3, + data => { + day => 2, + month => 2, + year => 99, + }, + font => 0, + }, + 255 => { + label => 'notes', + label_id => 255, + data => 'now that really roxorZ!', + font => 0, + }, }; - ok( $pdb = new Palm::Keyring($options), 'New Palm::Keyring v' . $options->{version} ); + my $Num_Tests_Left = 25; + SKIP: { + if (defined $options->{cipher} && $options->{cipher} > 0) { + my $crypt = Palm::Keyring::crypts($options->{cipher}); + skip 'Crypt::CBC not installed', $Num_Tests_Left + unless eval "require Crypt::CBC"; + skip 'Crypt::' . $crypt->{name} . ' not installed', $Num_Tests_Left + unless eval "require Crypt::$crypt->{name}"; + } - ok( $record = $pdb->append_Record(), 'Append Record' ); + if ($options->{version} == 4) { + skip 'Crypt::DES not installed', $Num_Tests_Left + unless eval "require Crypt::DES "; + skip 'Digest::MD5 not installed', $Num_Tests_Left + unless eval "require Digest::MD5 "; + } elsif ($options->{version} == 5) { + skip 'Digest::HMAC_SHA1 not installed', $Num_Tests_Left + unless eval "require Digest::HMAC_SHA1 "; + } - ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' ); + ok( $pdb = new Palm::Keyring($options), + 'new Palm::Keyring v' . $options->{version}); - ok( $pdb->Write($file), 'Write file' ); + ok( $record = $pdb->append_Record(), 'Append Record' ); - $pdb = undef; + ok( $pdb->Encrypt($record, $password, $acct), + 'Encrypt account into record' ); + ok( $pdb->Write($file), 'Write file' ); - my $rec_num = 1; - if ($options->{version} == 4) { - ok( $pdb = new Palm::PDB(), 'New Palm::PDB' ); - } else { - ok( $pdb = new Palm::Keyring(-v4compatible => 1), 'New Palm::Keyring' ); - $rec_num = 0; - } + $pdb = undef; - ok( $pdb->Load($file), 'Load File' ); + ok( $pdb = new Palm::PDB(), 'new Palm::Keyring' ); - ok( $pdb->Password($password), 'Verify Password' ); + ok( $pdb->Load($file), 'Load File' ); - ok( $decrypted = $pdb->Decrypt($pdb->{records}->[$rec_num]), 'Decrypt record' ); + ok( $pdb->Password($password), 'Verify Password' ); - is( $decrypted->{password}, $password, 'Got password' ); + my $rec_num = 0; + ok( $decrypted = $pdb->Decrypt($pdb->{records}->[$rec_num]), + 'Decrypt record' ); - is_deeply( $decrypted, $acct, 'Account Matches' ); + is( $decrypted->{2}->{data}, $password, 'Got password' ); - my $old_date = $decrypted->{'lastchange'}; + is_deeply( $decrypted, $acct, 'Account Matches' ); - ok( $pdb->Password($password, $new_password), 'Change PDB Password' ); + my $old_date = $decrypted->{3}->{data}; - ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]), 'Decrypt with new password' ); + ok( $pdb->Password($password, $new_password), 'Change PDB Password' ); - my $new_date = $decrypted->{'lastchange'}; + ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]), + 'Decrypt with new password' ); - is_deeply( $old_date, $new_date, 'Date didn\'t change' ); + my $new_date = $decrypted->{3}->{data}; - $acct->{'password'} = $new_password; + is_deeply( $old_date, $new_date, 'Date didn\'t change' ); - ok( $pdb->Encrypt($pdb->{'records'}->[$rec_num], $acct), 'Change record' ); + $acct->{2}->{data} = $new_password; - ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]), 'Decrypt new record' ); + $pdb->{records}->[$rec_num]->{plaintext} = $acct; - $new_date = $decrypted->{'lastchange'}; + ok( $pdb->Encrypt($pdb->{'records'}->[$rec_num]), 'Change record' ); - my $od = join '/', map { $old_date->{$_} } sort keys %{ $old_date }; - my $nd = join '/', map { $new_date->{$_} } sort keys %{ $new_date }; + ok( $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]), + 'Decrypt new record' ); - isnt( $od, $nd, 'Date changed'); + $new_date = $decrypted->{3}->{data}; - is( $decrypted->{password}, $new_password, 'Got new password' ); + my $od = join '/', map { $old_date->{$_} } sort keys %{ $old_date }; + my $nd = join '/', map { $new_date->{$_} } sort keys %{ $new_date }; - $decrypted = {}; - ok( $pdb->Password(), 'Forget password' ); + isnt( $od, $nd, 'Date changed'); - eval{ $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]) }; - ok( $@, 'Don\'t decrypt' ); + is( $decrypted->{2}->{data}, $new_password, 'Got new password' ); - isnt( $decrypted->{password}, $new_password, 'Didn\'t get new password' ); + my $last_decrypted = $decrypted; - ok( unlink($file), 'Remove test pdb v' . $options->{version} ); + $decrypted = {}; + ok( $pdb->Password(), 'Forget password' ); + + eval{ $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]) }; + ok( $@, 'Don\'t decrypt' ); + + isnt( $decrypted->{password}, $new_password, 'Didn\'t get new password' ); + + ok( $pdb->Unlock($new_password), 'Unlock' ); + + my @plaintext = map { $_->{plaintext} } @{ $pdb->{records} }; + + is_deeply( $plaintext[0], $last_decrypted, 'Account Matches' ); + + ok( $pdb->Lock(), 'Lock' ); + + my $cleared_decrypted = {}; + $cleared_decrypted->{0}= $last_decrypted->{0}; + @plaintext = map { $_->{plaintext} } @{ $pdb->{records} }; + + is_deeply( $plaintext[0], $cleared_decrypted, 'Cleared records' ); + + ok( unlink($file), 'Remove test pdb v' . $options->{version} ); + + } } 1;