Initial full test pass - all fetches are eager for now
[dbsrgits/DBIx-Class.git] / t / 83cache.t
CommitLineData
70350518 1use strict;
8273e845 2use warnings;
70350518 3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
a47e1233 8my $schema = DBICTest->init_schema();
64acc2bc 9
d52170d4 10my $queries;
81549fa6 11my $debugcb = sub{ $queries++ };
a2287768 12my $sdebug = $schema->storage->debug;
d52170d4 13
b25e9fa0 14plan tests => 23;
64acc2bc 15
16my $rs = $schema->resultset("Artist")->search(
17 { artistid => 1 }
18);
19
20my $artist = $rs->first;
21
0823196c 22ok( !defined($rs->get_cache), 'cache is not populated without cache attribute' );
64acc2bc 23
534ca143 24$rs = $schema->resultset('Artist')->search( undef, { cache => 1 } );
25my $artists = [ $rs->all ];
26
27is( scalar @{$rs->get_cache}, 3, 'all() populates cache for search with cache attribute' );
28
29$rs->clear_cache;
30
0823196c 31ok( !defined($rs->get_cache), 'clear_cache is functional' );
534ca143 32
33$rs->next;
34
35is( scalar @{$rs->get_cache}, 3, 'next() populates cache for search with cache attribute' );
36
37pop( @$artists );
38$rs->set_cache( $artists );
39
40is( scalar @{$rs->get_cache}, 2, 'set_cache() is functional' );
41
58d387fe 42my $cd = $schema->resultset('CD')->find(1);
534ca143 43
44$rs->clear_cache;
45
d52170d4 46$queries = 0;
47$schema->storage->debug(1);
81549fa6 48$schema->storage->debugcb ($debugcb);
534ca143 49
50$rs = $schema->resultset('Artist')->search( undef, { cache => 1 } );
51while( $artist = $rs->next ) {}
52$artist = $rs->first();
53
d52170d4 54is( $queries, 1, 'revisiting a row does not issue a query when cache => 1' );
534ca143 55
a2287768 56$schema->storage->debug($sdebug);
81549fa6 57$schema->storage->debugcb (undef);
534ca143 58
f109ee4a 59my @a = $schema->resultset("Artist")->search(
60 { },
61 {
62 join => [ qw/ cds /],
63 prefetch => [qw/ cds /],
64 }
65);
66
67is(scalar @a, 3, 'artist with cds: count parent objects');
68
64acc2bc 69$rs = $schema->resultset("Artist")->search(
70 { 'artistid' => 1 },
71 {
3c3c416e 72 join => [ qw/ cds /],
64acc2bc 73 prefetch => [qw/ cds /],
64acc2bc 74 }
75);
76
64acc2bc 77# start test for prefetch SELECT count
d52170d4 78$queries = 0;
79$schema->storage->debug(1);
81549fa6 80$schema->storage->debugcb ($debugcb);
64acc2bc 81
82$artist = $rs->first;
83$rs->reset();
84
85# make sure artist contains a related resultset for cds
660cf1be 86isa_ok( $artist->{related_resultsets}{cds}, 'DBIx::Class::ResultSet', 'artist has a related_resultset for cds' );
64acc2bc 87
88# check if $artist->cds->get_cache is populated
89is( scalar @{$artist->cds->get_cache}, 3, 'cache for artist->cds contains correct number of records');
90
91# ensure that $artist->cds returns correct number of objects
92is( scalar ($artist->cds), 3, 'artist->cds returns correct number of objects' );
93
94# ensure that $artist->cds->count returns correct value
95is( $artist->cds->count, 3, 'artist->cds->count returns correct value' );
96
97# ensure that $artist->count_related('cds') returns correct value
98is( $artist->count_related('cds'), 3, 'artist->count_related returns correct value' );
99
d52170d4 100is($queries, 1, 'only one SQL statement executed');
101
a2287768 102$schema->storage->debug($sdebug);
81549fa6 103$schema->storage->debugcb (undef);
64acc2bc 104
105# make sure related_resultset is deleted after object is updated
106$artist->set_column('name', 'New Name');
107$artist->update();
108
109is( scalar keys %{$artist->{related_resultsets}}, 0, 'related resultsets deleted after update' );
110
111# todo: make sure caching works with nested prefetch e.g. $artist->cds->tracks
112$rs = $schema->resultset("Artist")->search(
113 { artistid => 1 },
114 {
3c3c416e 115 join => { cds => 'tags' },
64acc2bc 116 prefetch => {
117 cds => 'tags'
118 },
64acc2bc 119 }
120);
62e87ea8 121{
717f3498 122my $artist_count_before = $schema->resultset('Artist')->count;
62e87ea8 123$schema->resultset("Artist")->create({artistid=>4,name=>qq{Humoungous Hamsters}});
717f3498 124is($schema->resultset('Artist')->count, $artist_count_before + 1, 'count() reflects new artist');
62e87ea8 125my $artist = $schema->resultset("Artist")->search(
126 { artistid => 4 },{prefetch=>[qw/cds/]}
127)->first;
128
129is($artist->cds, 0, 'No cds for this artist');
130}
64acc2bc 131
f9cc31dd 132# SELECT count for nested has_many prefetch
d52170d4 133$queries = 0;
134$schema->storage->debug(1);
81549fa6 135$schema->storage->debugcb ($debugcb);
f9cc31dd 136
5a5bec6c 137$artist = ($rs->all)[0];
f9cc31dd 138
d52170d4 139is($queries, 1, 'only one SQL statement executed');
140
a2287768 141$schema->storage->debug($sdebug);
81549fa6 142$schema->storage->debugcb (undef);
f9cc31dd 143
144my @objs;
5a5bec6c 145#$artist = $rs->find(1);
f9cc31dd 146
d52170d4 147$queries = 0;
148$schema->storage->debug(1);
81549fa6 149$schema->storage->debugcb ($debugcb);
f9cc31dd 150
151my $cds = $artist->cds;
152my $tags = $cds->next->tags;
153while( my $tag = $tags->next ) {
5a5bec6c 154 push @objs, $tag->tagid; #warn "tag:", $tag->ID, " => ", $tag->tag;
f9cc31dd 155}
156
5a5bec6c 157is_deeply( \@objs, [ 3 ], 'first cd has correct tags' );
f9cc31dd 158
159$tags = $cds->next->tags;
160@objs = ();
161while( my $tag = $tags->next ) {
162 push @objs, $tag->id; #warn "tag: ", $tag->ID;
163}
164
908aa1bb 165is_deeply( \@objs, [ 2, 5, 8 ], 'third cd has correct tags' );
b25e9fa0 166
167$tags = $cds->next->tags;
168@objs = ();
169while( my $tag = $tags->next ) {
170 push @objs, $tag->id; #warn "tag: ", $tag->ID;
171}
172
908aa1bb 173is_deeply( \@objs, [ 1 ], 'second cd has correct tags' );
f9cc31dd 174
d52170d4 175is( $queries, 0, 'no additional SQL statements while checking nested data' );
f9cc31dd 176
d2b3ea14 177# start test for prefetch SELECT count
d52170d4 178$queries = 0;
d2b3ea14 179
180$artist = $schema->resultset('Artist')->find(1, { prefetch => [qw/cds/] });
181
d52170d4 182is( $queries, 1, 'only one select statement on find with inline has_many prefetch' );
d2b3ea14 183
184# start test for prefetch SELECT count
d52170d4 185$queries = 0;
d2b3ea14 186
187$rs = $schema->resultset('Artist')->search(undef, { prefetch => [qw/cds/] });
188$artist = $rs->find(1);
189
d52170d4 190is( $queries, 1, 'only one select statement on find with has_many prefetch on resultset' );
d2b3ea14 191
a2287768 192$schema->storage->debug($sdebug);
81549fa6 193$schema->storage->debugcb (undef);