X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fp5-DBIx-Class-ResultSet-RecursiveUpdate;a=blobdiff_plain;f=t%2Flib%2FRunTests.pm;h=f391fc6e390de1d493615383dca94f4320994305;hp=e38d1f1d7d4c485a8d02300d491724d59bcd245c;hb=527858c3403a2591ac2782137ec0ff99ff563107;hpb=424363ed169eae916480670bea2363322285855a diff --git a/t/lib/RunTests.pm b/t/lib/RunTests.pm index e38d1f1..f391fc6 100644 --- a/t/lib/RunTests.pm +++ b/t/lib/RunTests.pm @@ -4,101 +4,204 @@ 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 => 36; my $dvd_rs = $schema->resultset( 'Dvd' ); - my $owner = $schema->resultset( 'User' )->first; - my $initial_user_count = $schema->resultset( 'User' )->count; - - # creating new records + my $user_rs = $schema->resultset( 'User' ); + + my $owner = $user_rs->next; + my $another_owner = $user_rs->next; + my $initial_user_count = $user_rs->count; + my $initial_dvd_count = $dvd_rs->count; + my $updates; + + # creating new record linked to some old record + $updates = { + name => 'Test name 2', + viewings => [ { user_id => $owner->id } ], + owner => { id => $another_owner->id }, + }; - my $updates = { - id => undef, + my $new_dvd = $dvd_rs->recursive_update( $updates ); +# my $new_dvd = $dvd_rs->create( $updates ); + + is ( $dvd_rs->count, $initial_dvd_count + 1, 'Dvd created' ); + is ( $schema->resultset( 'User' )->count, $initial_user_count, "No new user created" ); + is ( $new_dvd->name, 'Test name 2', 'Dvd name set' ); + is ( $new_dvd->owner->id, $another_owner->id, 'Owner set' ); + is ( $new_dvd->viewings->count, 1, 'Viewing created' ); + + # creating new records + $updates = { aaaa => undef, - tags => [ '2', '3' ], + tags => [ '2', { id => '3' } ], name => 'Test name', - # 'creation_date.year' => 2002, - # 'creation_date.month' => 1, - # 'creation_date.day' => 3, - # 'creation_date.hour' => 4, - # 'creation_date.minute' => 33, - # 'creation_date.pm' => 1, - owner => $owner->id, + owner => $owner, current_borrower => { name => 'temp name', username => 'temp name', password => 'temp name', }, liner_notes => { - notes => 'test note', - } + }, + like_has_many => [ + { key2 => 1 } + ], + like_has_many2 => [ + { + onekey => { name => 'aaaaa' }, + key2 => 1 + } + ], }; my $dvd = $dvd_rs->recursive_update( $updates ); - +; + is ( $dvd_rs->count, $initial_dvd_count + 2, 'Dvd created' ); is ( $schema->resultset( 'User' )->count, $initial_user_count + 1, "One new user created" ); is ( $dvd->name, 'Test name', 'Dvd name set' ); is_deeply ( [ map {$_->id} $dvd->tags ], [ '2', '3' ], 'Tags set' ); - #my $value = $dvd->creation_date; - #is( "$value", '2002-01-03T16:33:00', 'Date set'); is ( $dvd->owner->id, $owner->id, 'Owner set' ); is ( $dvd->current_borrower->name, 'temp name', 'Related record created' ); is ( $dvd->liner_notes->notes, 'test note', 'might_have record created' ); - - # changing existing records - + ok ( $schema->resultset( 'Twokeys' )->find( { dvd_name => 'Test name', key2 => 1 } ), 'Twokeys created' ); + 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' ); + + is ( $dvd->name, 'Test name', 'Dvd name set' ); +# changing existing records + + my $num_of_users = $user_rs->count; $updates = { - id => $dvd->id, + id => $dvd->dvd_id, # id instead of dvd_id aaaa => undef, - name => 'Test name', + name => undef, tags => [ ], - 'owner' => $owner->id, + 'owner' => $another_owner->id, current_borrower => { username => 'new name a', name => 'new name a', password => 'new password a', - } + }, + liner_notes => { + notes => 'test note changed', + }, + }; - $dvd = $dvd_rs->recursive_update( $updates ); - + my $dvd_updated = $dvd_rs->recursive_update( $updates ); + + is ( $dvd_updated->dvd_id, $dvd->dvd_id, 'Pk from "id"' ); is ( $schema->resultset( 'User' )->count, $initial_user_count + 1, "No new user created" ); - is ( $dvd->name, 'Test name', 'Dvd name set' ); - is ( $dvd->owner->id, $owner->id, 'Owner set' ); - is ( $dvd->current_borrower->name, 'new name a', 'Related record modified' ); - is ( $dvd->tags->count, 0, 'Tags deleted' ); + is ( $dvd_updated->name, undef, 'Dvd name deleted' ); + is ( $dvd_updated->owner->id, $another_owner->id, 'Owner updated' ); + is ( $dvd_updated->current_borrower->name, 'new name a', 'Related record modified' ); + is ( $dvd_updated->tags->count, 0, 'Tags deleted' ); + is ( $dvd_updated->liner_notes->notes, 'test note changed', 'might_have record changed' ); + $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 = { - 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 ], } ] }; - my $user_rs = $schema->resultset( 'User' ); my $user = $user_rs->recursive_update( $updates ); + is ( $schema->resultset( 'User' )->count, $initial_user_count + 2, "New user created" ); + is ( $dvd_rs->count, $initial_dvd_count + 4, 'Dvds created' ); my %owned_dvds = map { $_->name => $_ } $user->owned_dvds; is( scalar keys %owned_dvds, 2, 'Has many relations created' ); ok( $owned_dvds{'temp name 1'}, 'Name in a has_many related record saved' ); my @tags = $owned_dvds{'temp name 1'}->tags; 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' ); + + $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' ); + + $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' ); + + +# $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' ); }