Flip quoting in all of t/71mysql.t (no test changes)
[dbsrgits/DBIx-Class.git] / t / 71mysql.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use Test::Exception;
6
7 use DBI::Const::GetInfoType;
8 use Scalar::Util qw/weaken/;
9 use DBIx::Class::Optional::Dependencies ();
10
11 use lib qw(t/lib);
12 use DBICTest;
13 use DBIC::SqlMakerTest;
14
15 plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_rdbms_mysql')
16   unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_rdbms_mysql');
17
18 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/};
19
20 #warn "$dsn $user $pass";
21
22 plan skip_all => 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test'
23   unless ($dsn && $user);
24
25 my $schema = DBICTest::Schema->connect($dsn, $user, $pass, { quote_names => 1 });
26
27 my $dbh = $schema->storage->dbh;
28
29 $dbh->do("DROP TABLE IF EXISTS artist;");
30
31 $dbh->do("CREATE TABLE artist (artistid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100), rank INTEGER NOT NULL DEFAULT '13', charfield CHAR(10));");
32
33 $dbh->do("DROP TABLE IF EXISTS cd;");
34
35 $dbh->do("CREATE TABLE cd (cdid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, artist INTEGER, title TEXT, year DATE, genreid INTEGER, single_track INTEGER);");
36
37 $dbh->do("DROP TABLE IF EXISTS producer;");
38
39 $dbh->do("CREATE TABLE producer (producerid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name TEXT);");
40
41 $dbh->do("DROP TABLE IF EXISTS cd_to_producer;");
42
43 $dbh->do("CREATE TABLE cd_to_producer (cd INTEGER,producer INTEGER);");
44
45 $dbh->do("DROP TABLE IF EXISTS owners;");
46
47 $dbh->do("CREATE TABLE owners (id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100) NOT NULL);");
48
49 $dbh->do("DROP TABLE IF EXISTS books;");
50
51 $dbh->do("CREATE TABLE books (id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, source VARCHAR(100) NOT NULL, owner integer NOT NULL, title varchar(100) NOT NULL,  price integer);");
52
53 #'dbi:mysql:host=localhost;database=dbic_test', 'dbic_test', '');
54
55 # make sure sqlt_type overrides work (::Storage::DBI::mysql does this)
56 {
57   my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
58
59   ok (!$schema->storage->_dbh, 'definitely not connected');
60   is ($schema->storage->sqlt_type, 'MySQL', 'sqlt_type correct pre-connection');
61 }
62
63 # This is in Core now, but it's here just to test that it doesn't break
64 $schema->class('Artist')->load_components('PK::Auto');
65
66 # test primary key handling
67 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
68 ok($new->artistid, "Auto-PK worked");
69
70 # test LIMIT support
71 for (1..6) {
72     $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
73 }
74 my $it = $schema->resultset('Artist')->search( {},
75     { rows => 3,
76       offset => 2,
77       order_by => 'artistid' }
78 );
79 is( $it->count, 3, "LIMIT count ok" );  # ask for 3 rows out of 7 artists
80 is( $it->next->name, "Artist 2", "iterator->next ok" );
81 $it->next;
82 $it->next;
83 is( $it->next, undef, "next past end of resultset ok" );
84
85 # Limit with select-lock
86 lives_ok {
87   $schema->txn_do (sub {
88     isa_ok (
89       $schema->resultset('Artist')->find({artistid => 1}, {for => 'update', rows => 1}),
90       'DBICTest::Schema::Artist',
91     );
92   });
93 } 'Limited FOR UPDATE select works';
94
95 # shared-lock
96 lives_ok {
97   $schema->txn_do (sub {
98     isa_ok (
99       $schema->resultset('Artist')->find({artistid => 1}, {for => 'shared'}),
100       'DBICTest::Schema::Artist',
101     );
102   });
103 } 'LOCK IN SHARE MODE select works';
104
105 my $test_type_info = {
106     'artistid' => {
107         'data_type' => 'INT',
108         'is_nullable' => 0,
109         'size' => 11,
110         'default_value' => undef,
111     },
112     'name' => {
113         'data_type' => 'VARCHAR',
114         'is_nullable' => 1,
115         'size' => 100,
116         'default_value' => undef,
117     },
118     'rank' => {
119         'data_type' => 'INT',
120         'is_nullable' => 0,
121         'size' => 11,
122         'default_value' => 13,
123     },
124     'charfield' => {
125         'data_type' => 'CHAR',
126         'is_nullable' => 1,
127         'size' => 10,
128         'default_value' => undef,
129     },
130 };
131
132 $schema->populate ('Owners', [
133   [qw/id  name  /],
134   [qw/1   wiggle/],
135   [qw/2   woggle/],
136   [qw/3   boggle/],
137 ]);
138
139 $schema->populate ('BooksInLibrary', [
140   [qw/source  owner title   /],
141   [qw/Library 1     secrets1/],
142   [qw/Eatery  1     secrets2/],
143   [qw/Library 2     secrets3/],
144 ]);
145
146 #
147 # try a distinct + prefetch on tables with identically named columns
148 # (mysql doesn't seem to like subqueries with equally named columns)
149 #
150
151 {
152   # try a ->has_many direction (due to a 'multi' accessor the select/group_by group is collapsed)
153   my $owners = $schema->resultset ('Owners')->search (
154     { 'books.id' => { '!=', undef }},
155     { prefetch => 'books', distinct => 1 }
156   );
157   my $owners2 = $schema->resultset ('Owners')->search ({ id => { -in => $owners->get_column ('me.id')->as_query }});
158   for ($owners, $owners2) {
159     is ($_->all, 2, 'Prefetched grouped search returns correct number of rows');
160     is ($_->count, 2, 'Prefetched grouped search returns correct count');
161   }
162
163   # try a ->belongs_to direction (no select collapse)
164   my $books = $schema->resultset ('BooksInLibrary')->search (
165     { 'owner.name' => 'wiggle' },
166     { prefetch => 'owner', distinct => 1 }
167   );
168   my $books2 = $schema->resultset ('BooksInLibrary')->search ({ id => { -in => $books->get_column ('me.id')->as_query }});
169   for ($books, $books2) {
170     is ($_->all, 1, 'Prefetched grouped search returns correct number of rows');
171     is ($_->count, 1, 'Prefetched grouped search returns correct count');
172   }
173 }
174
175 SKIP: {
176     my $norm_version = $schema->storage->_server_info->{normalized_dbms_version}
177       or skip "Cannot determine MySQL server version", 1;
178
179     if ($norm_version < 5.000003_01) {
180         $test_type_info->{charfield}->{data_type} = 'VARCHAR';
181     }
182
183     my $type_info = $schema->storage->columns_info_for('artist');
184     is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');
185 }
186
187 my $cd = $schema->resultset ('CD')->create ({});
188 my $producer = $schema->resultset ('Producer')->create ({});
189 lives_ok { $cd->set_producers ([ $producer ]) } 'set_relationship doesnt die';
190
191 {
192   my $artist = $schema->resultset('Artist')->next;
193   my $cd = $schema->resultset('CD')->next;
194   $cd->set_from_related ('artist', $artist);
195   $cd->update;
196
197   my $rs = $schema->resultset('CD')->search ({}, { prefetch => 'artist' });
198
199   lives_ok sub {
200     my $cd = $rs->next;
201     is ($cd->artist->name, $artist->name, 'Prefetched artist');
202   }, 'join does not throw (mysql 3 test)';
203
204   # induce a jointype override, make sure it works even if we don't have mysql3
205   local $schema->storage->sql_maker->{_default_jointype} = 'inner';
206   is_same_sql_bind (
207     $rs->as_query,
208     '(
209       SELECT `me`.`cdid`, `me`.`artist`, `me`.`title`, `me`.`year`, `me`.`genreid`, `me`.`single_track`,
210              `artist`.`artistid`, `artist`.`name`, `artist`.`rank`, `artist`.`charfield`
211         FROM cd `me`
212         INNER JOIN `artist` `artist` ON `artist`.`artistid` = `me`.`artist`
213     )',
214     [],
215     'overriden default join type works',
216   );
217 }
218
219 {
220   # Test support for straight joins
221   my $cdsrc = $schema->source('CD');
222   my $artrel_info = $cdsrc->relationship_info ('artist');
223   $cdsrc->add_relationship(
224     'straight_artist',
225     $artrel_info->{class},
226     $artrel_info->{cond},
227     { %{$artrel_info->{attrs}}, join_type => 'straight' },
228   );
229   is_same_sql_bind (
230     $cdsrc->resultset->search({}, { prefetch => 'straight_artist' })->as_query,
231     '(
232       SELECT `me`.`cdid`, `me`.`artist`, `me`.`title`, `me`.`year`, `me`.`genreid`, `me`.`single_track`,
233              `straight_artist`.`artistid`, `straight_artist`.`name`, `straight_artist`.`rank`, `straight_artist`.`charfield`
234         FROM cd `me`
235         STRAIGHT_JOIN `artist` `straight_artist` ON `straight_artist`.`artistid` = `me`.`artist`
236     )',
237     [],
238     'straight joins correctly supported for mysql'
239   );
240 }
241
242 ## Can we properly deal with the null search problem?
243 ##
244 ## Only way is to do a SET SQL_AUTO_IS_NULL = 0; on connect
245 ## But I'm not sure if we should do this or not (Ash, 2008/06/03)
246 #
247 # There is now a built-in function to do this, test that everything works
248 # with it (ribasushi, 2009/07/03)
249
250 NULLINSEARCH: {
251     my $ansi_schema = DBICTest::Schema->connect ($dsn, $user, $pass, { on_connect_call => 'set_strict_mode' });
252
253     $ansi_schema->resultset('Artist')->create ({ name => 'last created artist' });
254
255     ok my $artist1_rs = $ansi_schema->resultset('Artist')->search({artistid=>6666})
256       => 'Created an artist resultset of 6666';
257
258     is $artist1_rs->count, 0
259       => 'Got no returned rows';
260
261     ok my $artist2_rs = $ansi_schema->resultset('Artist')->search({artistid=>undef})
262       => 'Created an artist resultset of undef';
263
264     is $artist2_rs->count, 0
265       => 'got no rows';
266
267     my $artist = $artist2_rs->single;
268
269     is $artist => undef
270       => 'Nothing Found!';
271 }
272
273 # check for proper grouped counts
274 {
275   my $ansi_schema = DBICTest::Schema->connect ($dsn, $user, $pass, {
276     on_connect_call => 'set_strict_mode',
277     quote_char => '`',
278   });
279   my $rs = $ansi_schema->resultset('CD');
280
281   my $years;
282   $years->{$_->year|| scalar keys %$years}++ for $rs->all;  # NULL != NULL, thus the keys eval
283
284   lives_ok ( sub {
285     is (
286       $rs->search ({}, { group_by => 'year'})->count,
287       scalar keys %$years,
288       'grouped count correct',
289     );
290   }, 'Grouped count does not throw');
291
292   lives_ok( sub {
293     $ansi_schema->resultset('Owners')->search({}, {
294       join => 'books', group_by => [ 'me.id', 'books.id' ]
295     })->count();
296   }, 'count on grouped columns with the same name does not throw');
297 }
298
299 ZEROINSEARCH: {
300   my $cds_per_year = {
301     2001 => 2,
302     2002 => 1,
303     2005 => 3,
304   };
305
306   my $rs = $schema->resultset ('CD');
307   $rs->delete;
308   for my $y (keys %$cds_per_year) {
309     for my $c (1 .. $cds_per_year->{$y} ) {
310       $rs->create ({ title => "CD $y-$c", artist => 1, year => "$y-01-01" });
311     }
312   }
313
314   is ($rs->count, 6, 'CDs created successfully');
315
316   $rs = $rs->search ({}, {
317     select => [ \ 'YEAR(year)' ], as => ['y'], distinct => 1,
318   });
319
320   is_deeply (
321     [ sort ($rs->get_column ('y')->all) ],
322     [ sort keys %$cds_per_year ],
323     'Years group successfully',
324   );
325
326   $rs->create ({ artist => 1, year => '0-1-1', title => 'Jesus Rap' });
327
328   is_deeply (
329     [ sort $rs->get_column ('y')->all ],
330     [ 0, sort keys %$cds_per_year ],
331     'Zero-year groups successfully',
332   );
333
334   # convoluted search taken verbatim from list
335   my $restrict_rs = $rs->search({ -and => [
336     year => { '!=', 0 },
337     year => { '!=', undef }
338   ]});
339
340   is_deeply (
341     [ $restrict_rs->get_column('y')->all ],
342     [ $rs->get_column ('y')->all ],
343     'Zero year was correctly excluded from resultset',
344   );
345 }
346
347 # make sure find hooks determine driver
348 {
349   my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
350   $schema->resultset("Artist")->find(4);
351   isa_ok($schema->storage->sql_maker, 'DBIx::Class::SQLMaker::MySQL');
352 }
353
354 # make sure the mysql_auto_reconnect buggery is avoided
355 {
356   local $ENV{MOD_PERL} = 'boogiewoogie';
357   my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
358   ok (! $schema->storage->_get_dbh->{mysql_auto_reconnect}, 'mysql_auto_reconnect unset regardless of ENV' );
359
360   # Make sure hardcore forking action still works even if mysql_auto_reconnect
361   # is true (test inspired by ether)
362
363   my $schema_autorecon = DBICTest::Schema->connect($dsn, $user, $pass, { mysql_auto_reconnect => 1 });
364   my $orig_dbh = $schema_autorecon->storage->_get_dbh;
365   weaken $orig_dbh;
366
367   ok ($orig_dbh, 'Got weak $dbh ref');
368   ok ($orig_dbh->{mysql_auto_reconnect}, 'mysql_auto_reconnect is properly set if explicitly requested' );
369
370   my $rs = $schema_autorecon->resultset('Artist');
371
372   my ($parent_in, $child_out);
373   pipe( $parent_in, $child_out ) or die "Pipe open failed: $!";
374   my $pid = fork();
375   if (! defined $pid ) {
376     die "fork() failed: $!"
377   }
378   elsif ($pid) {
379     close $child_out;
380
381     # sanity check
382     $schema_autorecon->storage->dbh_do(sub {
383       is ($_[1], $orig_dbh, 'Storage holds correct $dbh in parent');
384     });
385
386     # kill our $dbh
387     $schema_autorecon->storage->_dbh(undef);
388
389     TODO: {
390       local $TODO = "Perl $] is known to leak like a sieve"
391         if DBIx::Class::_ENV_::PEEPEENESS;
392
393       ok (! defined $orig_dbh, 'Parent $dbh handle is gone');
394     }
395   }
396   else {
397     close $parent_in;
398
399     #simulate a  subtest to not confuse the parent TAP emission
400     my $tb = Test::More->builder;
401     $tb->reset;
402     for (qw/output failure_output todo_output/) {
403       close $tb->$_;
404       open ($tb->$_, '>&', $child_out);
405     }
406
407     # wait for parent to kill its $dbh
408     sleep 1;
409
410     # try to do something dbic-esque
411     $rs->create({ name => "Hardcore Forker $$" });
412
413     TODO: {
414       local $TODO = "Perl $] is known to leak like a sieve"
415         if DBIx::Class::_ENV_::PEEPEENESS;
416
417       ok (! defined $orig_dbh, 'DBIC operation triggered reconnect - old $dbh is gone');
418     }
419
420     done_testing;
421     exit 0;
422   }
423
424   while (my $ln = <$parent_in>) {
425     print "   $ln";
426   }
427   wait;
428   ok(!$?, 'Child subtests passed');
429
430   ok ($rs->find({ name => "Hardcore Forker $pid" }), 'Expected row created');
431 }
432
433 done_testing;