X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate;a=blobdiff_plain;f=t%2Flib%2FRunTests.pm;h=1f31adacc9a5357728e399b8b4476ebe31230c40;hp=0c877f896d45dfa9ad1a93aee90a55c11aa06148;hb=073ab86177b3de3f95b1d2a0dc97f3e8e582c7a6;hpb=863ebdd6ecb92e434d8f18f91c79ebdf0e937fe3 diff --git a/t/lib/RunTests.pm b/t/lib/RunTests.pm index 0c877f8..1f31ada 100644 --- a/t/lib/RunTests.pm +++ b/t/lib/RunTests.pm @@ -9,7 +9,7 @@ use Test::More; sub run_tests{ my $schema = shift; - plan tests => 25; + plan tests => 28; my $dvd_rs = $schema->resultset( 'Dvd' ); my $user_rs = $schema->resultset( 'User' ); @@ -23,7 +23,6 @@ sub run_tests{ my $updates; $updates = { - id => undef, name => 'Test name 2', viewings => [ { user_id => $owner->id } ], owner => { id => $another_owner->id }, @@ -40,7 +39,6 @@ sub run_tests{ # creating new records my $updates = { - id => undef, aaaa => undef, tags => [ '2', { id => '3' } ], name => 'Test name', @@ -56,6 +54,12 @@ sub run_tests{ like_has_many => [ { key2 => 1 } ], + like_has_many2 => [ + { + onekey => { name => 'aaaaa' }, + key2 => 1 + } + ], }; my $dvd = $dvd_rs->recursive_update( $updates ); @@ -69,8 +73,13 @@ sub run_tests{ is ( $dvd->current_borrower->name, 'temp name', 'Related record created' ); is ( $dvd->liner_notes->notes, 'test note', 'might_have record created' ); ok ( $schema->resultset( 'Twokeys' )->find( { dvd_name => 'Test name', key2 => 1 } ), 'Twokeys created' ); - # changing existing records - + my $onekey = $schema->resultset( 'Onekey' )->search( name => 'aaaaa' )->first; + ok ( $onekey, 'Onekey created' ); + ok ( $schema->resultset( 'Twokeys_belongsto' )->find( { key1 => $onekey->id, key2 => 1 } ), 'Twokeys created' ); + + +# changing existing records + my $num_of_users = $user_rs->count; $updates = { id => $dvd->id, @@ -86,6 +95,7 @@ sub run_tests{ liner_notes => { notes => 'test note changed', }, + }; $dvd = $dvd_rs->recursive_update( $updates ); @@ -96,22 +106,24 @@ sub run_tests{ is ( $dvd->tags->count, 0, 'Tags deleted' ); is ( $dvd->liner_notes->notes, 'test note changed', 'might_have record changed' ); - + $updates = { + name => 'Test name 1', + }; + $dvd = $dvd_rs->search( { id => $dvd->id } )->recursive_update( $updates, [ 'id' ] ); + is ( $dvd->name, 'Test name 1', 'Dvd name set in a resultset with restricted id' ); + # repeatable $updates = { - id => undef, name => 'temp name', username => 'temp username', password => 'temp username', owned_dvds =>[ { - 'id' => undef, 'name' => 'temp name 1', 'tags' => [ 1, 2 ], }, { - 'id' => undef, 'name' => 'temp name 2', 'tags' => [ 2, 3 ], }