More fail (fix is known but needs work)
[dbsrgits/DBIx-Class.git] / t / relationship / core.t
CommitLineData
70350518 1use strict;
2f926160 2use warnings;
70350518 3
4b8dcc58 4use Test::More;
2f926160 5use Test::Exception;
4b8dcc58 6use lib qw(t/lib);
7use DBICTest;
8
a47e1233 9my $schema = DBICTest->init_schema();
a2287768 10my $sdebug = $schema->storage->debug;
5efe4c79 11
ac36a402 12plan tests => 78;
0567538f 13
14# has_a test
f9db5527 15my $cd = $schema->resultset("CD")->find(4);
07037f89 16my ($artist) = ($INC{'DBICTest/HelperRels'}
17 ? $cd->artist
18 : $cd->search_related('artist'));
0567538f 19is($artist->name, 'Random Boy Band', 'has_a search_related ok');
20
21# has_many test with an order_by clause defined
f9db5527 22$artist = $schema->resultset("Artist")->find(1);
07037f89 23my @cds = ($INC{'DBICTest/HelperRels'}
24 ? $artist->cds
25 : $artist->search_related('cds'));
26is( $cds[1]->title, 'Spoonful of bees', 'has_many search_related with order_by ok' );
0567538f 27
28# search_related with additional abstract query
07037f89 29@cds = ($INC{'DBICTest/HelperRels'}
30 ? $artist->cds({ title => { like => '%of%' } })
31 : $artist->search_related('cds', { title => { like => '%of%' } } )
32 );
0567538f 33is( $cds[1]->title, 'Forkful of bees', 'search_related with abstract query ok' );
34
35# creating a related object
07037f89 36if ($INC{'DBICTest/HelperRels.pm'}) {
37 $artist->add_to_cds({ title => 'Big Flop', year => 2005 });
38} else {
c49fcf72 39 my $big_flop = $artist->create_related( 'cds', {
07037f89 40 title => 'Big Flop',
41 year => 2005,
42 } );
a4fcda00 43
9abe73ef 44 TODO: {
45 local $TODO = "Can't fix right now" if $DBIx::Class::VERSION < 0.09;
a4fcda00 46 lives_ok { $big_flop->genre} "Don't throw exception when col is not loaded after insert";
47 };
07037f89 48}
49
c89815db 50my $big_flop_cd = ($artist->search_related('cds'))[3];
51is( $big_flop_cd->title, 'Big Flop', 'create_related ok' );
52
53{ # make sure we are not making pointless select queries when a FK IS NULL
54 my $queries = 0;
55 $schema->storage->debugcb(sub { $queries++; });
56 $schema->storage->debug(1);
57 $big_flop_cd->genre; #should not trigger a select query
cef1bdda 58 is($queries, 0, 'No SELECT made for belongs_to if key IS NULL');
59 $big_flop_cd->genre_inefficient; #should trigger a select query
60 is($queries, 1, 'SELECT made for belongs_to if key IS NULL when undef_on_null_fk disabled');
a2287768 61 $schema->storage->debug($sdebug);
c89815db 62 $schema->storage->debugcb(undef);
63}
0567538f 64
5b89a768 65my( $rs_from_list ) = $artist->search_related_rs('cds');
660cf1be 66isa_ok( $rs_from_list, 'DBIx::Class::ResultSet', 'search_related_rs in list context returns rs' );
5b89a768 67
68( $rs_from_list ) = $artist->cds_rs();
660cf1be 69isa_ok( $rs_from_list, 'DBIx::Class::ResultSet', 'relation_rs in list context returns rs' );
5b89a768 70
0567538f 71# count_related
72is( $artist->count_related('cds'), 4, 'count_related ok' );
73
74# set_from_related
f9db5527 75my $track = $schema->resultset("Track")->create( {
0567538f 76 trackid => 1,
77 cd => 3,
78 position => 98,
79 title => 'Hidden Track'
80} );
81$track->set_from_related( cd => $cd );
82
70350518 83is($track->disc->cdid, 4, 'set_from_related ok, including alternative accessor' );
0567538f 84
2c037e6b 85$track->set_from_related( cd => undef );
86
87ok( !defined($track->cd), 'set_from_related with undef ok');
88
f77bad73 89TODO: {
90 local $TODO = 'accessing $object->rel and set_from_related';
91 my $track = $schema->resultset("Track")->new( {} );
92 $track->cd;
93 $track->set_from_related( cd => $cd );
94 ok ($track->cd, 'set_from_related ok after using the accessor' );
95};
2c037e6b 96
0567538f 97# update_from_related, the same as set_from_related, but it calls update afterwards
f9db5527 98$track = $schema->resultset("Track")->create( {
0567538f 99 trackid => 2,
100 cd => 3,
365d06b7 101 title => 'Hidden Track 2'
0567538f 102} );
103$track->update_from_related( cd => $cd );
104
d6df786a 105my $t_cd = ($schema->resultset("Track")->search( cd => 4, title => 'Hidden Track 2' ))[0]->cd;
0567538f 106
70350518 107is( $t_cd->cdid, 4, 'update_from_related ok' );
0567538f 108
109# find_or_create_related with an existing record
110$cd = $artist->find_or_create_related( 'cds', { title => 'Big Flop' } );
111is( $cd->year, 2005, 'find_or_create_related on existing record ok' );
112
113# find_or_create_related creating a new record
114$cd = $artist->find_or_create_related( 'cds', {
115 title => 'Greatest Hits',
116 year => 2006,
117} );
118is( $cd->title, 'Greatest Hits', 'find_or_create_related new record ok' );
e02b9964 119
0567538f 120@cds = $artist->search_related('cds');
121is( ($artist->search_related('cds'))[4]->title, 'Greatest Hits', 'find_or_create_related new record search ok' );
122
87772e46 123$artist->delete_related( cds => { title => 'Greatest Hits' });
f9db5527 124cmp_ok( $schema->resultset("CD")->search( title => 'Greatest Hits' ), '==', 0, 'delete_related ok' );
0567538f 125
b3e1f1f5 126# find_or_new_related with an existing record
127$cd = $artist->find_or_new_related( 'cds', { title => 'Big Flop' } );
128is( $cd->year, 2005, 'find_or_new_related on existing record ok' );
129ok( $cd->in_storage, 'find_or_new_related on existing record: is in_storage' );
130
131# find_or_new_related instantiating a new record
132$cd = $artist->find_or_new_related( 'cds', {
133 title => 'Greatest Hits 2: Louder Than Ever',
134 year => 2007,
135} );
136is( $cd->title, 'Greatest Hits 2: Louder Than Ever', 'find_or_new_related new record ok' );
137ok( ! $cd->in_storage, 'find_or_new_related on a new record: not in_storage' );
138
e02b9964 139$cd->artist(undef);
140my $newartist = $cd->find_or_new_related( 'artist', {
141 name => 'Random Boy Band Two',
142 artistid => 200,
143} );
e02b9964 144is($newartist->name, 'Random Boy Band Two', 'find_or_new_related new artist record with id');
145is($newartist->id, 200, 'find_or_new_related new artist id set');
146
f623c6ee 147lives_ok(
148 sub {
149 my $new_bookmark = $schema->resultset("Bookmark")->new_result( {} );
150 my $new_related_link = $new_bookmark->new_related( 'link', {} );
151 },
152 'No back rel'
153);
154
155
a0dd8679 156TODO: {
157 local $TODO = "relationship checking needs fixing";
87772e46 158 # try to add a bogus relationship using the wrong cols
159 eval {
160 DBICTest::Schema::Artist->add_relationship(
161 tracks => 'DBICTest::Schema::Track',
162 { 'foreign.cd' => 'self.cdid' }
163 );
164 };
165 like($@, qr/Unknown column/, 'failed when creating a rel with invalid key, ok');
166}
167
0567538f 168# another bogus relationship using no join condition
169eval {
3712e4f4 170 DBICTest::Schema::Artist->add_relationship( tracks => 'DBICTest::Track' );
0567538f 171};
172like($@, qr/join condition/, 'failed when creating a rel without join condition, ok');
173
b3f358b5 174# many_to_many helper tests
f9db5527 175$cd = $schema->resultset("CD")->find(1);
7411204b 176my @producers = $cd->producers();
177is( $producers[0]->name, 'Matt S Trout', 'many_to_many ok' );
b3f358b5 178is( $cd->producers_sorted->next->name, 'Bob The Builder',
179 'sorted many_to_many ok' );
180is( $cd->producers_sorted(producerid => 3)->next->name, 'Fred The Phenotype',
181 'sorted many_to_many with search condition ok' );
7411204b 182
3a868fb2 183$cd = $schema->resultset('CD')->find(2);
b3f358b5 184my $prod_rs = $cd->producers();
185my $prod_before_count = $schema->resultset('Producer')->count;
186is( $prod_rs->count, 0, "CD doesn't yet have any producers" );
3a868fb2 187my $prod = $schema->resultset('Producer')->find(1);
188$cd->add_to_producers($prod);
3a868fb2 189is( $prod_rs->count(), 1, 'many_to_many add_to_$rel($obj) count ok' );
b3f358b5 190is( $prod_rs->first->name, 'Matt S Trout',
191 'many_to_many add_to_$rel($obj) ok' );
3a868fb2 192$cd->remove_from_producers($prod);
ac36a402 193$cd->add_to_producers($prod, {attribute => 1});
194is( $prod_rs->count(), 1, 'many_to_many add_to_$rel($obj, $link_vals) count ok' );
195is( $cd->cd_to_producer->first->attribute, 1, 'many_to_many $link_vals ok');
196$cd->remove_from_producers($prod);
197$cd->set_producers([$prod], {attribute => 2});
198is( $prod_rs->count(), 1, 'many_to_many set_$rel($obj, $link_vals) count ok' );
199is( $cd->cd_to_producer->first->attribute, 2, 'many_to_many $link_vals ok');
200$cd->remove_from_producers($prod);
b3f358b5 201is( $schema->resultset('Producer')->find(1)->name, 'Matt S Trout',
202 "producer object exists after remove of link" );
203is( $prod_rs->count, 0, 'many_to_many remove_from_$rel($obj) ok' );
303cf522 204$cd->add_to_producers({ name => 'Testy McProducer' });
b3f358b5 205is( $schema->resultset('Producer')->count, $prod_before_count+1,
206 'add_to_$rel($hash) inserted a new producer' );
303cf522 207is( $prod_rs->count(), 1, 'many_to_many add_to_$rel($hash) count ok' );
b3f358b5 208is( $prod_rs->first->name, 'Testy McProducer',
209 'many_to_many add_to_$rel($hash) ok' );
210$cd->add_to_producers({ name => 'Jack Black' });
211is( $prod_rs->count(), 2, 'many_to_many add_to_$rel($hash) count ok' );
212$cd->set_producers($schema->resultset('Producer')->all);
213is( $cd->producers->count(), $prod_before_count+2,
214 'many_to_many set_$rel(@objs) count ok' );
215$cd->set_producers($schema->resultset('Producer')->find(1));
216is( $cd->producers->count(), 1, 'many_to_many set_$rel($obj) count ok' );
21c45f7b 217$cd->set_producers([$schema->resultset('Producer')->all]);
218is( $cd->producers->count(), $prod_before_count+2,
219 'many_to_many set_$rel(\@objs) count ok' );
220$cd->set_producers([$schema->resultset('Producer')->find(1)]);
221is( $cd->producers->count(), 1, 'many_to_many set_$rel([$obj]) count ok' );
303cf522 222
223eval { $cd->remove_from_producers({ fake => 'hash' }); };
224like( $@, qr/needs an object/, 'remove_from_$rel($hash) dies correctly' );
225
226eval { $cd->add_to_producers(); };
b3f358b5 227like( $@, qr/needs an object or hashref/,
228 'add_to_$rel(undef) dies correctly' );
303cf522 229
3bd6e3e0 230# many_to_many stresstest
231my $twokey = $schema->resultset('TwoKeys')->find(1,1);
232my $fourkey = $schema->resultset('FourKeys')->find(1,2,3,4);
233
234is( $twokey->fourkeys->count, 0, 'twokey has no fourkeys' );
235$twokey->add_to_fourkeys($fourkey, { autopilot => 'engaged' });
236my $got_fourkey = $twokey->fourkeys({ sensors => 'online' })->first;
237is( $twokey->fourkeys->count, 1, 'twokey has one fourkey' );
238is( $got_fourkey->$_, $fourkey->$_,
239 'fourkeys row has the correct value for column '.$_ )
240 for (qw(foo bar hello goodbye sensors));
241$twokey->remove_from_fourkeys($fourkey);
242is( $twokey->fourkeys->count, 0, 'twokey has no fourkeys' );
b3f358b5 243is( $twokey->fourkeys_to_twokeys->count, 0,
244 'twokey has no links to fourkey' );
245
ac36a402 246
ac8a5ba4 247my $undef_artist_cd = $schema->resultset("CD")->new_result({ 'title' => 'badgers', 'year' => 2007 });
248is($undef_artist_cd->has_column_loaded('artist'), '', 'FK not loaded');
370f2ba2 249is($undef_artist_cd->search_related('artist')->count, 0, '0=1 search when FK does not exist and object not yet in db');
2c5c07ec 250eval{
251 $undef_artist_cd->related_resultset('artist')->new({name => 'foo'});
252};
253is( $@, '', "Object created on a resultset related to not yet inserted object");
981299aa 254lives_ok{
255 $schema->resultset('Artwork')->new_result({})->cd;
256} 'undef_on_null_fk does not choke on empty conds';
257
ac8a5ba4 258my $def_artist_cd = $schema->resultset("CD")->new_result({ 'title' => 'badgers', 'year' => 2007, artist => undef });
259is($def_artist_cd->has_column_loaded('artist'), 1, 'FK loaded');
260is($def_artist_cd->search_related('artist')->count, 0, 'closed search on null FK');
3a868fb2 261
5efe4c79 262# test undirected many-to-many relationship (e.g. "related artists")
f9db5527 263my $undir_maps = $schema->resultset("Artist")->find(1)->artist_undirected_maps;
5efe4c79 264is($undir_maps->count, 1, 'found 1 undirected map for artist 1');
265
f9db5527 266$undir_maps = $schema->resultset("Artist")->find(2)->artist_undirected_maps;
5efe4c79 267is($undir_maps->count, 1, 'found 1 undirected map for artist 2');
268
ad3d2d7c 269my $mapped_rs = $undir_maps->search_related('mapped_artists');
270
271my @art = $mapped_rs->all;
5efe4c79 272
273cmp_ok(@art, '==', 2, "Both artist returned from map");
274
ad3d2d7c 275my $searched = $mapped_rs->search({'mapped_artists.artistid' => {'!=', undef}});
276
277cmp_ok($searched->count, '==', 2, "Both artist returned from map after adding another condition");
278
b8d4bd90 279# check join through cascaded has_many relationships
280$artist = $schema->resultset("Artist")->find(1);
281my $trackset = $artist->cds->search_related('tracks');
c98169a7 282cmp_ok($trackset->count, '==', 10, "Correct number of tracks for artist");
ad3d2d7c 283
0f57d214 284# now see about updating eveything that belongs to artist 2 to artist 3
285$artist = $schema->resultset("Artist")->find(2);
286my $nartist = $schema->resultset("Artist")->find(3);
287cmp_ok($artist->cds->count, '==', 1, "Correct orig #cds for artist");
288cmp_ok($nartist->cds->count, '==', 1, "Correct orig #cds for artist");
289$artist->cds->update({artist => $nartist->id});
290cmp_ok($artist->cds->count, '==', 0, "Correct new #cds for artist");
291cmp_ok($nartist->cds->count, '==', 2, "Correct new #cds for artist");
292
6bf6ba2f 293# check if is_foreign_key_constraint attr is set
294my $rs_normal = $schema->source('Track');
295my $relinfo = $rs_normal->relationship_info ('cd');
296cmp_ok($relinfo->{attrs}{is_foreign_key_constraint}, '==', 1, "is_foreign_key_constraint defined for belongs_to relationships.");
297
298my $rs_overridden = $schema->source('ForceForeign');
299my $relinfo_with_attr = $rs_overridden->relationship_info ('cd_3');
300cmp_ok($relinfo_with_attr->{attrs}{is_foreign_key_constraint}, '==', 0, "is_foreign_key_constraint defined for belongs_to relationships with attr.");
caac1708 301
56b73f83 302# check that relationships below left join relationships are forced to left joins
303# when traversing multiple belongs_to
304my $cds = $schema->resultset("CD")->search({ 'me.cdid' => 5 }, { join => { single_track => 'cd' } });
caac1708 305is($cds->count, 1, "subjoins under left joins force_left (string)");
306
56b73f83 307$cds = $schema->resultset("CD")->search({ 'me.cdid' => 5 }, { join => { single_track => ['cd'] } });
caac1708 308is($cds->count, 1, "subjoins under left joins force_left (arrayref)");
309
56b73f83 310$cds = $schema->resultset("CD")->search({ 'me.cdid' => 5 }, { join => { single_track => { cd => {} } } });
caac1708 311is($cds->count, 1, "subjoins under left joins force_left (hashref)");