X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F80unique.t;h=2245511d1d90815b96d32e68c7fc72861e3ce2c3;hb=98d4e1b45228b4052deb1672b47d1df19e7def28;hp=eebb66eb05bd7271ee68440f930b4d9a2d939cf3;hpb=8070a15198fd37ee7ddcffbc1857a687b3d773b6;p=dbsrgits%2FDBIx-Class.git diff --git a/t/80unique.t b/t/80unique.t index eebb66e..2245511 100644 --- a/t/80unique.t +++ b/t/80unique.t @@ -1,14 +1,14 @@ use strict; -use warnings; +use warnings; use Test::More; use lib qw(t/lib); use DBICTest; +use DBIC::SqlMakerTest; +use DBIC::DebugObj; my $schema = DBICTest->init_schema(); -plan tests => 43; - # Check the defined unique constraints is_deeply( [ sort $schema->source('CD')->unique_constraint_names ], @@ -126,8 +126,9 @@ is($cd8->get_column('artist'), $cd1->get_column('artist'), 'artist is correct'); is($cd8->title, $cd1->title, 'title is correct'); is($cd8->year, $cd1->year, 'year is correct'); -my $cd9 = $artist->update_or_create_related('cds', +my $cd9 = $artist->cds->update_or_create( { + cdid => $cd1->cdid, title => $title, year => 2021, }, @@ -161,7 +162,74 @@ my $row = $schema->resultset('NoPrimaryKey')->update_or_create( }, { key => 'foo_bar' } ); + ok(! $row->is_changed, 'update_or_create on table without primary key: row is clean'); is($row->foo, 1, 'foo is correct'); is($row->bar, 2, 'bar is correct'); is($row->baz, 3, 'baz is correct'); + +# Test a unique condition with extra information in the where attr +{ + my $artist = $schema->resultset('Artist')->find({ artistid => 1 }); + my $cd = $artist->cds->find_or_new( + { + cdid => 1, + title => 'Not The Real Title', + year => 3000, + }, + { key => 'primary' } + ); + + ok($cd->in_storage, 'find correctly grepped the key across a relationship'); + is($cd->cdid, 1, 'cdid is correct'); +} + +# Test update_or_new +{ + my $cd1 = $schema->resultset('CD')->update_or_new( + { + artist => $artistid, + title => "SuperHits $$", + year => 2007, + }, + { key => 'cd_artist_title' } + ); + + ok(!$cd1->in_storage, 'CD is not in storage yet after update_or_new'); + $cd1->insert; + ok($cd1->in_storage, 'CD got added to strage after update_or_new && insert'); + + my $cd2 = $schema->resultset('CD')->update_or_new( + { + artist => $artistid, + title => "SuperHits $$", + year => 2008, + }, + { key => 'cd_artist_title' } + ); + ok($cd2->in_storage, 'Updating year using update_or_new was successful'); + is($cd2->id, $cd1->id, 'Got the same CD using update_or_new'); +} + +# make sure the ident condition is assembled sanely +{ + my $artist = $schema->resultset('Artist')->next; + + my ($sql, @bind); + $schema->storage->debugobj(DBIC::DebugObj->new(\$sql, \@bind)), + $schema->storage->debug(1); + + $artist->discard_changes; + + is_same_sql_bind ( + $sql, + \@bind, + 'SELECT me.artistid, me.name, me.rank, me.charfield FROM artist me WHERE me.artistid = ?', + [qw/'1'/], + ); + + $schema->storage->debug(0); + $schema->storage->debugobj(undef); +} + +done_testing;