=================================================================== RCS file: /cvs/palm/Palm-Keyring/t/keyring5.t,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- palm/Palm-Keyring/t/keyring5.t 2007/02/27 17:08:05 1.6 +++ palm/Palm-Keyring/t/keyring5.t 2007/08/10 05:13:31 1.7 @@ -1,9 +1,9 @@ #!/usr/bin/perl -T -# $RedRiver: keyring5.t,v 1.5 2007/02/23 22:05:17 andrew Exp $ +# $RedRiver: keyring5.t,v 1.6 2007/02/27 17:08:05 andrew Exp $ use strict; use warnings; -use Test::More tests => 126; +use Test::More tests => 122; BEGIN { use_ok( 'Palm::PDB' ); @@ -15,6 +15,7 @@ my $new_password = '54321'; foreach my $cipher (0..3) { +#next unless $cipher == 0; my $pdb; my @recs; my $record; @@ -28,17 +29,21 @@ cipher => $cipher, }; - my $rec1_name = 'test'; - my $original_accts = [ - [ { + 0 => { + 'label_id' => 0, + 'data' => '', + 'label' => 'name', + 'font' => 0, + }, + 2 => { 'label_id' => 2, 'data' => 'only password is set', 'label' => 'password', 'font' => 0, }, - { + 3 => { 'label_id' => 3, 'data' => { 'month' => 1, @@ -48,15 +53,21 @@ 'label' => 'lastchange', 'font' => 0, } - ], - [ + }, { + 0 => { + 'label_id' => 0, + 'data' => 'test', + 'label' => 'name', + 'font' => 0, + }, + 2 => { 'label_id' => 2, 'data' => 'abcd1234', 'label' => 'password', 'font' => 0, }, - { + 3 => { 'label_id' => 3, 'data' => { 'month' => 1, @@ -66,21 +77,27 @@ 'label' => 'lastchange', 'font' => 0, }, - { + 255 => { 'label_id' => 255, 'data' => 'This is a short note.', 'label' => 'notes', 'font' => 0, } - ], - [ + }, { + 0 => { + 'label_id' => 0, + 'data' => '', + 'label' => 'name', + 'font' => 0, + }, + 2 => { 'label_id' => 2, 'data' => 'password (date is 2/2/07)', 'label' => 'password', 'font' => 0, }, - { + 3 => { 'label_id' => 3, 'data' => { 'month' => 1, @@ -90,7 +107,7 @@ 'label' => 'lastchange', 'font' => 0, } - ] + } ]; SKIP: { @@ -109,14 +126,10 @@ . $options->{cipher} ); - my $rec_id = 0; foreach my $acct (@{ $original_accts} ) { ok( $record = $pdb->append_Record(), 'Append Record' ); - if ($rec_id == 1) { - ok( $record->{name} = $rec1_name, 'Setting record name' ); - } - ok( $pdb->Encrypt($record, $acct, $password), 'Encrypt account into record' ); - $rec_id++; + ok( $pdb->Encrypt($record, $acct, $password), + 'Encrypt account into record' ); } ok( $pdb->Write($file), 'Write file' ); @@ -129,15 +142,16 @@ ok( $pdb->Password($password), 'Verify Password' ); - $rec_id = 0; + my $rec_id = 0; foreach my $rec (@{ $pdb->{records} }) { - ok( $decrypted = $pdb->Decrypt($rec), 'Decrypt record' ); - if ($rec_id == 1) { - is( $rec->{name}, $rec1_name, 'Checking record name' ); + ok( $decrypted = $pdb->Decrypt($rec), 'Decrypt record' ); + if ($rec_id == 1) { + 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' ); @@ -156,18 +170,17 @@ my $acct; ok( $acct = $pdb->Decrypt( $pdb->{records}->[$rec_num]), 'decrypt record ' . $rec_num); - foreach my $field (@{ $acct }) { - next unless $field->{label} eq 'password'; - ok($field->{data} = $new_password, 'Change password'); - } + ok($acct->{2}->{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'); - $decrypted = []; + $decrypted = {}; ok( $pdb->Password(), 'Forget password' ); eval{ $decrypted = $pdb->Decrypt($pdb->{'records'}->[$rec_num]) }; @@ -175,10 +188,7 @@ my $got_password = 'Got nothing'; if ($decrypted) { - foreach my $field (@{ $decrypted }) { - next unless $field->{label} eq 'password'; - $got_password = $field->{data}; - } + $got_password = $decrypted->{2}->{data}; } isnt( $got_password, $new_password, 'Didn\'t get new password' );