X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate;a=blobdiff_plain;f=t%2Flib%2FRunTests.pm;h=336b7ffd0bef1defe4bc150a0d92d364c61bcd81;hp=b5f447d20d4b172b8c085cf1cb2288f7d7fb6c2e;hb=ac35ef944e4615837f455945207fd9070a5d707c;hpb=34a44681170dc8a76ec09b1d655ed2c6d1d28e49 diff --git a/t/lib/RunTests.pm b/t/lib/RunTests.pm index b5f447d..336b7ff 100644 --- a/t/lib/RunTests.pm +++ b/t/lib/RunTests.pm @@ -4,12 +4,12 @@ use Exporter 'import'; # gives you Exporter's import() method directly @EXPORT = qw(run_tests); use strict; use Test::More; - +use DBIx::Class::ResultSet::RecursiveUpdate; sub run_tests{ my $schema = shift; - plan tests => 30; + plan tests => 42; my $dvd_rs = $schema->resultset( 'Dvd' ); my $user_rs = $schema->resultset( 'User' ); @@ -20,6 +20,16 @@ sub run_tests{ my $initial_dvd_count = $dvd_rs->count; my $updates; + # try to create with a not existing rel + $updates = { + name => 'Test name for nonexisting rel', + username => 'nonexisting_rel', + password => 'whatever', + nonexisting => { foo => 'bar' }, + }; + eval { my $nonexisting_user = $user_rs->recursive_update( $updates ); }; + like ($@, qr/No such column, relationship, many-to-many helper accessor or generic accessor 'nonexisting'/, 'nonexisting column, accessor, relationship fails'); + # creating new record linked to some old record $updates = { name => 'Test name 2', @@ -38,7 +48,7 @@ sub run_tests{ # creating new records $updates = { - aaaa => undef, + #aaaa => undef, tags => [ '2', { id => '3' } ], name => 'Test name', owner => $owner, @@ -82,7 +92,7 @@ sub run_tests{ my $num_of_users = $user_rs->count; $updates = { id => $dvd->dvd_id, # id instead of dvd_id - aaaa => undef, + ####aaaa => undef, name => undef, tags => [ ], 'owner' => $another_owner->id, @@ -106,7 +116,18 @@ sub run_tests{ is ( $dvd_updated->tags->count, 0, 'Tags deleted' ); is ( $dvd_updated->liner_notes->notes, 'test note changed', 'might_have record changed' ); - # repeatable + $new_dvd->update( { name => 'New Test Name' } ); + $updates = { + id => $new_dvd->dvd_id, # id instead of dvd_id + like_has_many => [ + { dvd_name => $dvd->name, key2 => 1 } + ], + }; + $dvd_updated = $dvd_rs->recursive_update( $updates ); + ok ( $schema->resultset( 'Twokeys' )->find( { dvd_name => 'New Test Name', key2 => 1 } ), 'Twokeys updated' ); + ok ( !$schema->resultset( 'Twokeys' )->find( { dvd_name => $dvd->name, key2 => 1 } ), 'Twokeys updated' ); + +# repeatable $updates = { name => 'temp name', @@ -134,19 +155,83 @@ sub run_tests{ is( scalar @tags, 2, 'Tags in has_many related record saved' ); ok( $owned_dvds{'temp name 2'}, 'Second name in a has_many related record saved' ); + # update has_many where foreign cols aren't nullable $updates = { id => $user->id, address => { street => "101 Main Street", city => "Podunk", state => "New York" - } + }, + owned_dvds => [ + { + id => 1, + }, + ] }; $user = $user_rs->recursive_update( $updates ); - $user = $user_rs->recursive_update( $updates ); is( $schema->resultset( 'Address' )->search({ user_id => $user->id })->count, 1, 'the right number of addresses' ); + $dvd = $dvd_rs->find( 1 ); + is( $dvd->get_column( 'owner' ), $user->id, 'foreign key set' ); + $dvd_rs->update( { current_borrower => $user->id } ); + ok( $user->borrowed_dvds->count > 1, 'Precond' ); + $updates = { + id => $user->id, + borrowed_dvds =>[ + { + id => $dvd->id + }, + ] + }; + $user = DBIx::Class::ResultSet::RecursiveUpdate::Functions::recursive_update( + resultset => $user_rs, + updates => $updates, + if_not_submitted => 'set_to_null', + ); + is( $user->borrowed_dvds->count, 1, 'set_to_null' ); + + # has_many where foreign cols are nullable + $dvd_rs->update( { current_borrower => $user->id } ); + $updates = { + id => $user->id, + borrowed_dvds => [ + { + id => $dvd->id + }, + ] + }; + $user = DBIx::Class::ResultSet::RecursiveUpdate::Functions::recursive_update( + resultset => $user_rs, + updates => $updates, + if_not_submitted => 'delete', + ); + is( $user->borrowed_dvds->count, 1, 'if_not_submitted delete' ); + + @tags = $schema->resultset( 'Tag' )->search(); + $dvd_updated = DBIx::Class::ResultSet::RecursiveUpdate::Functions::recursive_update( + resultset => $schema->resultset( 'Dvd' ), + updates => { + id => $dvd->dvd_id, # id instead of dvd_id + tags => [ { id => $tags[0]->id, file => 'file0'}, { id => $tags[1]->id, file => 'file1' } ], + } + ); + $tags[$_]->discard_changes for 0 .. 1; + is( $tags[0]->file, 'file0', 'file set in tag' ); + is( $tags[1]->file, 'file1', 'file set in tag' ); + my @rel_tags = $dvd_updated->tags; + is( scalar @rel_tags, 2, 'tags related' ); + ok( $rel_tags[0]->file eq 'file0' || $rel_tags[0]->file eq 'file1', 'tags related' ); + + my $new_person = { + name => 'Amiri Barksdale', + username => 'amiri', + password => 'amiri', + }; + ok(my $new_user = $user_rs->recursive_update( $new_person )); + + #print STDERR Dumper $new_user; # $updates = { # name => 'Test name 1',