added an old change to Changes
[dbsrgits/DBIx-Class.git] / t / run / 23cache.tl
CommitLineData
64acc2bc 1sub run_tests {
2my $schema = shift;
3
4eval "use DBD::SQLite";
5plan skip_all => 'needs DBD::SQLite for testing' if $@;
479ed423 6plan tests => 16;
64acc2bc 7
8my $rs = $schema->resultset("Artist")->search(
9 { artistid => 1 }
10);
11
12my $artist = $rs->first;
13
14is( scalar @{ $rs->get_cache }, 0, 'cache is not populated without cache attribute' );
15
f109ee4a 16my @a = $schema->resultset("Artist")->search(
17 { },
18 {
19 join => [ qw/ cds /],
20 prefetch => [qw/ cds /],
21 }
22);
23
24is(scalar @a, 3, 'artist with cds: count parent objects');
25
64acc2bc 26$rs = $schema->resultset("Artist")->search(
27 { 'artistid' => 1 },
28 {
3c3c416e 29 join => [ qw/ cds /],
64acc2bc 30 prefetch => [qw/ cds /],
64acc2bc 31 }
32);
33
f9cc31dd 34use Data::Dumper; $Data::Dumper::Deparse = 1;
64acc2bc 35
36# start test for prefetch SELECT count
37unlink 't/var/dbic.trace' if -e 't/var/dbic.trace';
38DBI->trace(1, 't/var/dbic.trace');
39
40$artist = $rs->first;
41$rs->reset();
42
43# make sure artist contains a related resultset for cds
44is( ref $artist->{related_resultsets}->{cds}, 'DBIx::Class::ResultSet', 'artist has a related_resultset for cds' );
45
46# check if $artist->cds->get_cache is populated
47is( scalar @{$artist->cds->get_cache}, 3, 'cache for artist->cds contains correct number of records');
48
49# ensure that $artist->cds returns correct number of objects
50is( scalar ($artist->cds), 3, 'artist->cds returns correct number of objects' );
51
52# ensure that $artist->cds->count returns correct value
53is( $artist->cds->count, 3, 'artist->cds->count returns correct value' );
54
55# ensure that $artist->count_related('cds') returns correct value
56is( $artist->count_related('cds'), 3, 'artist->count_related returns correct value' );
57
58# count the SELECTs
59DBI->trace(0, undef);
60my $selects = 0;
61my $trace = IO::File->new('t/var/dbic.trace', '<')
62 or die "Unable to read trace file";
63while (<$trace>) {
64 $selects++ if /SELECT/;
65}
66$trace->close;
67unlink 't/var/dbic.trace';
5a5bec6c 68is($selects, 1, 'only one SQL statement executed');
64acc2bc 69
70# make sure related_resultset is deleted after object is updated
71$artist->set_column('name', 'New Name');
72$artist->update();
73
74is( scalar keys %{$artist->{related_resultsets}}, 0, 'related resultsets deleted after update' );
75
76# todo: make sure caching works with nested prefetch e.g. $artist->cds->tracks
77$rs = $schema->resultset("Artist")->search(
78 { artistid => 1 },
79 {
3c3c416e 80 join => { cds => 'tags' },
64acc2bc 81 prefetch => {
82 cds => 'tags'
83 },
64acc2bc 84 }
85);
62e87ea8 86{
87$schema->resultset("Artist")->create({artistid=>4,name=>qq{Humoungous Hamsters}});
88my $artist = $schema->resultset("Artist")->search(
89 { artistid => 4 },{prefetch=>[qw/cds/]}
90)->first;
91
92is($artist->cds, 0, 'No cds for this artist');
93}
64acc2bc 94
f9cc31dd 95# SELECT count for nested has_many prefetch
96unlink 't/var/dbic.trace' if -e 't/var/dbic.trace';
97DBI->trace(1, 't/var/dbic.trace');
98
5a5bec6c 99$artist = ($rs->all)[0];
f9cc31dd 100
101# count the SELECTs
102DBI->trace(0, undef);
6e3b590d 103$selects = 0;
104$trace = IO::File->new('t/var/dbic.trace', '<')
f9cc31dd 105 or die "Unable to read trace file";
106while (<$trace>) {
107 $selects++ if /SELECT/;
108}
109$trace->close;
110unlink 't/var/dbic.trace';
5a5bec6c 111is($selects, 1, 'only one SQL statement executed');
f9cc31dd 112
113my @objs;
5a5bec6c 114#$artist = $rs->find(1);
f9cc31dd 115
116unlink 't/var/dbic.trace' if -e 't/var/dbic.trace';
117DBI->trace(1, 't/var/dbic.trace');
118
119my $cds = $artist->cds;
120my $tags = $cds->next->tags;
121while( my $tag = $tags->next ) {
5a5bec6c 122 push @objs, $tag->tagid; #warn "tag:", $tag->ID, " => ", $tag->tag;
f9cc31dd 123}
124
5a5bec6c 125is_deeply( \@objs, [ 3 ], 'first cd has correct tags' );
f9cc31dd 126
127$tags = $cds->next->tags;
128@objs = ();
129while( my $tag = $tags->next ) {
130 push @objs, $tag->id; #warn "tag: ", $tag->ID;
131}
132
133is_deeply( \@objs, [ 2, 5, 8 ], 'second cd has correct tags' );
134
135# count the SELECTs
136DBI->trace(0, undef);
6e3b590d 137$selects = 0;
138$trace = IO::File->new('t/var/dbic.trace', '<')
f9cc31dd 139 or die "Unable to read trace file";
140while (<$trace>) {
141 $selects++ if /SELECT/;
142}
143$trace->close;
144unlink 't/var/dbic.trace';
145
146is( $selects, 0, 'no additional SQL statements while checking nested data' );
147
d2b3ea14 148# start test for prefetch SELECT count
149unlink 't/var/dbic.trace' if -e 't/var/dbic.trace';
150DBI->trace(1, 't/var/dbic.trace');
151
152$artist = $schema->resultset('Artist')->find(1, { prefetch => [qw/cds/] });
153
154# count the SELECTs
155DBI->trace(0, undef);
156$selects = 0;
157$trace = IO::File->new('t/var/dbic.trace', '<')
158 or die "Unable to read trace file";
159while (<$trace>) {
160 $selects++ if /SELECT/;
161}
162$trace->close;
163unlink 't/var/dbic.trace';
164
165is( $selects, 1, 'only one select statement on find with inline has_many prefetch' );
166
167# start test for prefetch SELECT count
168unlink 't/var/dbic.trace' if -e 't/var/dbic.trace';
169DBI->trace(1, 't/var/dbic.trace');
170
171$rs = $schema->resultset('Artist')->search(undef, { prefetch => [qw/cds/] });
172$artist = $rs->find(1);
173
174# count the SELECTs
175DBI->trace(0, undef);
176$selects = 0;
177$trace = IO::File->new('t/var/dbic.trace', '<')
178 or die "Unable to read trace file";
179while (<$trace>) {
180 $selects++ if /SELECT/;
181}
182$trace->close;
183unlink 't/var/dbic.trace';
184
185is( $selects, 1, 'only one select statement on find with has_many prefetch on resultset' );
186
64acc2bc 187}
188
1891;