Untodoify tests - these are not 'nice to have', they must work
[dbsrgits/DBIx-Class.git] / t / relationship / custom.t
CommitLineData
b5c8410c 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Exception;
6use lib qw(t/lib);
7use DBICTest;
7689b9e5 8use DBIC::SqlMakerTest;
b5c8410c 9
10my $schema = DBICTest->init_schema();
11
abf8d91e 12$schema->resultset('Artist')->delete;
13$schema->resultset('CD')->delete;
14
15my $artist = $schema->resultset("Artist")->create({ artistid => 21, name => 'Michael Jackson', rank => 20 });
16my $artist2 = $schema->resultset("Artist")->create({ artistid => 22, name => 'Chico Buarque', rank => 1 }) ;
17my $artist3 = $schema->resultset("Artist")->create({ artistid => 23, name => 'Ziraldo', rank => 1 });
18my $artist4 = $schema->resultset("Artist")->create({ artistid => 24, name => 'Paulo Caruso', rank => 20 });
e98e6478 19
20my @artworks;
b5c8410c 21
b5c8410c 22foreach my $year (1975..1985) {
e98e6478 23 my $cd = $artist->create_related('cds', { year => $year, title => 'Compilation from ' . $year });
24 push @artworks, $cd->create_related('artwork', {});
b5c8410c 25}
26
9aae3566 27foreach my $year (1975..1995) {
e98e6478 28 my $cd = $artist2->create_related('cds', { year => $year, title => 'Compilation from ' . $year });
29 push @artworks, $cd->create_related('artwork', {});
30}
31
32foreach my $artwork (@artworks) {
33 $artwork->create_related('artwork_to_artist', { artist => $_ }) for ($artist3, $artist4);
9aae3566 34}
b5c8410c 35
abf8d91e 36
7689b9e5 37my $cds_80s_rs = $artist->cds_80s;
eb3bb737 38is_same_sql_bind(
39 $cds_80s_rs->as_query,
40 '(
41 SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track
42 FROM cd me
43 WHERE ( ( me.artist = ? AND ( me.year < ? AND me.year > ? ) ) )
44 )',
45 [
46 [ 'me.artist' => 21 ],
47 [ 'me.year' => 1990 ],
48 [ 'me.year' => 1979 ],
49 ]
50);
7689b9e5 51my @cds_80s = $cds_80s_rs->all;
d5a14c53 52is(@cds_80s, 6, '6 80s cds found (1980 - 1985)');
53map { ok($_->year < 1990 && $_->year > 1979) } @cds_80s;
b5c8410c 54
7689b9e5 55
eb3bb737 56my $cds_90s_rs = $artist2->cds_90s;
57is_same_sql_bind(
58 $cds_90s_rs->as_query,
59 '(
60 SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track
61 FROM artist artist__row
62 JOIN cd me
63 ON ( me.artist = artist__row.artistid AND ( me.year < ? AND me.year > ? ) )
64 WHERE ( artist__row.artistid = ? )
65 )',
66 [
67 [ 'me.year' => 2000 ],
68 [ 'me.year' => 1989 ],
69 [ 'artist__row.artistid' => 22 ],
70 ]
71);
7689b9e5 72my @cds_90s = $cds_90s_rs->all;
d5a14c53 73is(@cds_90s, 6, '6 90s cds found (1990 - 1995) even with non-optimized search');
74map { ok($_->year < 2000 && $_->year > 1989) } @cds_90s;
b5c8410c 75
eb3bb737 76lives_ok {
77 my @cds_90s_95 = $artist2->cds_90s->search({ 'me.year' => 1995 });
78 is(@cds_90s_95, 1, '1 90s (95) cds found even with non-optimized search');
79 map { ok($_->year == 1995) } @cds_90s_95;
80} 'should preserve chain-head "me" alias (API-consistency)';
7689b9e5 81
d5a14c53 82# search for all artists prefetching published cds in the 80s...
d5a14c53 83my @all_artists_with_80_cds = $schema->resultset("Artist")->search
84 ({ 'cds_80s.cdid' => { '!=' => undef } }, { join => 'cds_80s', distinct => 1 });
85
86is_deeply(
87 [ sort ( map { $_->year } map { $_->cds_80s->all } @all_artists_with_80_cds ) ],
88 [ sort (1980..1989, 1980..1985) ],
89 '16 correct cds found'
90);
91
abf8d91e 92TODO: {
93local $TODO = 'Prefetch on custom rels can not work until the collapse rewrite is finished '
94 . '(currently collapser requires a right-side (which is indeterministic) order-by)';
95lives_ok {
96
97my @all_artists_with_80_cds_pref = $schema->resultset("Artist")->search
98 ({ 'cds_80s.cdid' => { '!=' => undef } }, { prefetch => 'cds_80s' });
99
100is_deeply(
101 [ sort ( map { $_->year } map { $_->cds_80s->all } @all_artists_with_80_cds_pref ) ],
102 [ sort (1980..1989, 1980..1985) ],
103 '16 correct cds found'
104);
105
106} 'prefetchy-fetchy-fetch';
107} # end of TODO
108
109
d5a14c53 110# try to create_related a 80s cd
111throws_ok {
112 $artist->create_related('cds_80s', { title => 'related creation 1' });
113} qr/\Qunable to set_from_related via complex 'cds_80s' condition on column(s): 'year'/, 'Create failed - complex cond';
114
115# now supply an explicit arg overwriting the ambiguous cond
116my $id_2020 = $artist->create_related('cds_80s', { title => 'related creation 2', year => '2020' })->id;
117is(
118 $schema->resultset('CD')->find($id_2020)->title,
119 'related creation 2',
120 '2020 CD created correctly'
121);
122
123# try a default year from a specific rel
124my $id_1984 = $artist->create_related('cds_84', { title => 'related creation 3' })->id;
125is(
126 $schema->resultset('CD')->find($id_1984)->title,
127 'related creation 3',
128 '1984 CD created correctly'
129);
130
131# try a specific everything via a non-simplified rel
132throws_ok {
133 $artist->create_related('cds_90s', { title => 'related_creation 4', year => '2038' });
134} qr/\Qunable to set_from_related - no simplified condition available for 'cds_90s'/, 'Create failed - non-simplified rel';
b5c8410c 135
d5a14c53 136# Do a self-join last-entry search
b5c8410c 137my @last_track_ids;
138for my $cd ($schema->resultset('CD')->search ({}, { order_by => 'cdid'})->all) {
139 push @last_track_ids, $cd->tracks
140 ->search ({}, { order_by => { -desc => 'position'} })
141 ->get_column ('trackid')
142 ->next;
143}
144
145my $last_tracks = $schema->resultset('Track')->search (
146 {'next_track.trackid' => undef},
147 { join => 'next_track', order_by => 'me.cd' },
148);
149
150is_deeply (
151 [$last_tracks->get_column ('trackid')->all],
cf320fd7 152 [ grep { $_ } @last_track_ids ],
b5c8410c 153 'last group-entry via self-join works',
154);
155
e98e6478 156my $artwork = $schema->resultset('Artwork')->search({},{ order_by => 'cd_id' })->first;
157my @artists = $artwork->artists->all;
158is(scalar @artists, 2, 'the two artists are associated');
159
160my @artwork_artists = $artwork->artwork_to_artist->all;
161foreach (@artwork_artists) {
162 lives_ok {
163 my $artista = $_->artist;
164 my $artistb = $_->artist_test_m2m;
165 ok($artista->rank < 10 ? $artistb : 1, 'belongs_to with custom rel works.');
166 my $artistc = $_->artist_test_m2m_noopt;
167 ok($artista->rank < 10 ? $artistc : 1, 'belongs_to with custom rel works even in non-simplified.');
168 } 'belongs_to works with custom rels';
169}
170
171@artists = ();
172lives_ok {
173 @artists = $artwork->artists_test_m2m2->all;
174} 'manytomany with extended rels in the has many works';
175is(scalar @artists, 2, 'two artists');
176
177@artists = ();
178lives_ok {
179 @artists = $artwork->artists_test_m2m->all;
180} 'can fetch many to many with optimized version';
181is(scalar @artists, 1, 'only one artist is associated');
182
183@artists = ();
184lives_ok {
185 @artists = $artwork->artists_test_m2m_noopt->all;
186} 'can fetch many to many with non-optimized version';
187is(scalar @artists, 1, 'only one artist is associated');
188
189
b5c8410c 190done_testing;