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