0526dd8c6653f40cbd82d810f7cebc3df3f9d668
[dbsrgits/DBIx-Class.git] / t / 71mysql.t
1 use strict;
2 use warnings;  
3
4 use Test::More;
5 use Test::Exception;
6 use lib qw(t/lib);
7 use DBICTest;
8 use DBI::Const::GetInfoType;
9 use DBIC::SqlMakerTest;
10
11 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/};
12
13 #warn "$dsn $user $pass";
14
15 plan skip_all => 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test'
16   unless ($dsn && $user);
17
18 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
19
20 my $dbh = $schema->storage->dbh;
21
22 $dbh->do("DROP TABLE IF EXISTS artist;");
23
24 $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));");
25
26 $dbh->do("DROP TABLE IF EXISTS cd;");
27
28 $dbh->do("CREATE TABLE cd (cdid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, artist INTEGER, title TEXT, year DATE, genreid INTEGER, single_track INTEGER);");
29
30 $dbh->do("DROP TABLE IF EXISTS producer;");
31
32 $dbh->do("CREATE TABLE producer (producerid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name TEXT);");
33
34 $dbh->do("DROP TABLE IF EXISTS cd_to_producer;");
35
36 $dbh->do("CREATE TABLE cd_to_producer (cd INTEGER,producer INTEGER);");
37
38 $dbh->do("DROP TABLE IF EXISTS owners;");
39
40 $dbh->do("CREATE TABLE owners (id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100) NOT NULL);");
41
42 $dbh->do("DROP TABLE IF EXISTS books;");
43
44 $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);");
45
46 #'dbi:mysql:host=localhost;database=dbic_test', 'dbic_test', '');
47
48 # make sure sqlt_type overrides work (::Storage::DBI::mysql does this) 
49 {
50   my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
51
52   ok (!$schema->storage->_dbh, 'definitely not connected');
53   is ($schema->storage->sqlt_type, 'MySQL', 'sqlt_type correct pre-connection');
54 }
55
56 # This is in Core now, but it's here just to test that it doesn't break
57 $schema->class('Artist')->load_components('PK::Auto');
58
59 # test primary key handling
60 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
61 ok($new->artistid, "Auto-PK worked");
62
63 # test LIMIT support
64 for (1..6) {
65     $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
66 }
67 my $it = $schema->resultset('Artist')->search( {},
68     { rows => 3,
69       offset => 2,
70       order_by => 'artistid' }
71 );
72 is( $it->count, 3, "LIMIT count ok" );  # ask for 3 rows out of 7 artists
73 is( $it->next->name, "Artist 2", "iterator->next ok" );
74 $it->next;
75 $it->next;
76 is( $it->next, undef, "next past end of resultset ok" );
77
78 my $test_type_info = {
79     'artistid' => {
80         'data_type' => 'INT',
81         'is_nullable' => 0,
82         'size' => 11,
83         'default_value' => undef,
84     },
85     'name' => {
86         'data_type' => 'VARCHAR',
87         'is_nullable' => 1,
88         'size' => 100,
89         'default_value' => undef,
90     },
91     'rank' => {
92         'data_type' => 'INT',
93         'is_nullable' => 0,
94         'size' => 11,
95         'default_value' => 13,
96     },
97     'charfield' => {
98         'data_type' => 'CHAR',
99         'is_nullable' => 1,
100         'size' => 10,
101         'default_value' => undef,
102     },
103 };
104
105 $schema->populate ('Owners', [
106   [qw/id  name  /],
107   [qw/1   wiggle/],
108   [qw/2   woggle/],
109   [qw/3   boggle/],
110 ]);
111
112 $schema->populate ('BooksInLibrary', [
113   [qw/source  owner title   /],
114   [qw/Library 1     secrets1/],
115   [qw/Eatery  1     secrets2/],
116   [qw/Library 2     secrets3/],
117 ]);
118
119 #
120 # try a distinct + prefetch on tables with identically named columns 
121 # (mysql doesn't seem to like subqueries with equally named columns)
122 #
123
124 {
125   # try a ->has_many direction (due to a 'multi' accessor the select/group_by group is collapsed)
126   my $owners = $schema->resultset ('Owners')->search (
127     { 'books.id' => { '!=', undef }},
128     { prefetch => 'books', distinct => 1 }
129   );
130   my $owners2 = $schema->resultset ('Owners')->search ({ id => { -in => $owners->get_column ('me.id')->as_query }});
131   for ($owners, $owners2) {
132     is ($_->all, 2, 'Prefetched grouped search returns correct number of rows');
133     is ($_->count, 2, 'Prefetched grouped search returns correct count');
134   }
135
136   # try a ->belongs_to direction (no select collapse)
137   my $books = $schema->resultset ('BooksInLibrary')->search (
138     { 'owner.name' => 'wiggle' },
139     { prefetch => 'owner', distinct => 1 }
140   );
141   my $books2 = $schema->resultset ('BooksInLibrary')->search ({ id => { -in => $books->get_column ('me.id')->as_query }});
142   for ($books, $books2) {
143     is ($_->all, 1, 'Prefetched grouped search returns correct number of rows');
144     is ($_->count, 1, 'Prefetched grouped search returns correct count');
145   }
146 }
147
148 SKIP: {
149     my $mysql_version = $dbh->get_info( $GetInfoType{SQL_DBMS_VER} );
150     skip "Cannot determine MySQL server version", 1 if !$mysql_version;
151
152     my ($v1, $v2, $v3) = $mysql_version =~ /^(\d+)\.(\d+)(?:\.(\d+))?/;
153     skip "Cannot determine MySQL server version", 1 if !$v1 || !defined($v2);
154
155     $v3 ||= 0;
156
157     if( ($v1 < 5) || ($v1 == 5 && $v2 == 0 && $v3 <= 3) ) {
158         $test_type_info->{charfield}->{data_type} = 'VARCHAR';
159     }
160
161     my $type_info = $schema->storage->columns_info_for('artist');
162     is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');
163 }
164
165 my $cd = $schema->resultset ('CD')->create ({});
166 my $producer = $schema->resultset ('Producer')->create ({});
167 lives_ok { $cd->set_producers ([ $producer ]) } 'set_relationship doesnt die';
168
169 {
170   my $artist = $schema->resultset('Artist')->next;
171   my $cd = $schema->resultset('CD')->next;
172   $cd->set_from_related ('artist', $artist);
173   $cd->update;
174
175   my $rs = $schema->resultset('CD')->search ({}, { prefetch => 'artist' });
176
177   lives_ok sub {
178     my $cd = $rs->next;
179     is ($cd->artist->name, $artist->name, 'Prefetched artist');
180   }, 'join does not throw (mysql 3 test)';
181
182   # induce a jointype override, make sure it works even if we don't have mysql3
183   local $schema->storage->sql_maker->{_default_jointype} = 'inner';
184   is_same_sql_bind (
185     $rs->as_query,
186     '(
187       SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track,
188              artist.artistid, artist.name, artist.rank, artist.charfield
189         FROM cd me
190         INNER JOIN artist artist ON artist.artistid = me.artist
191     )',
192     [],
193     'overriden default join type works',
194   );
195 }
196
197 {
198   # Test support for straight joins
199   my $cdsrc = $schema->source('CD');
200   my $artrel_info = $cdsrc->relationship_info ('artist');
201   $cdsrc->add_relationship(
202     'straight_artist',
203     $artrel_info->{class},
204     $artrel_info->{cond},
205     { %{$artrel_info->{attrs}}, join_type => 'straight' },
206   );
207   is_same_sql_bind (
208     $cdsrc->resultset->search({}, { prefetch => 'straight_artist' })->as_query,
209     '(
210       SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track,
211              straight_artist.artistid, straight_artist.name, straight_artist.rank, straight_artist.charfield
212         FROM cd me
213         STRAIGHT_JOIN artist straight_artist ON straight_artist.artistid = me.artist
214     )',
215     [],
216     'straight joins correctly supported for mysql'
217   );
218 }
219
220 ## Can we properly deal with the null search problem?
221 ##
222 ## Only way is to do a SET SQL_AUTO_IS_NULL = 0; on connect
223 ## But I'm not sure if we should do this or not (Ash, 2008/06/03)
224 #
225 # There is now a built-in function to do this, test that everything works
226 # with it (ribasushi, 2009/07/03)
227
228 NULLINSEARCH: {
229     my $ansi_schema = DBICTest::Schema->connect ($dsn, $user, $pass, { on_connect_call => 'set_strict_mode' });
230
231     $ansi_schema->resultset('Artist')->create ({ name => 'last created artist' });
232
233     ok my $artist1_rs = $ansi_schema->resultset('Artist')->search({artistid=>6666})
234       => 'Created an artist resultset of 6666';
235
236     is $artist1_rs->count, 0
237       => 'Got no returned rows';
238
239     ok my $artist2_rs = $ansi_schema->resultset('Artist')->search({artistid=>undef})
240       => 'Created an artist resultset of undef';
241
242     is $artist2_rs->count, 0
243       => 'got no rows';
244
245     my $artist = $artist2_rs->single;
246
247     is $artist => undef
248       => 'Nothing Found!';
249 }
250
251 # check for proper grouped counts
252 {
253   my $ansi_schema = DBICTest::Schema->connect ($dsn, $user, $pass, {
254     on_connect_call => 'set_strict_mode',
255     quote_char => '`',
256     name_sep => '.'
257   });
258   my $rs = $ansi_schema->resultset('CD');
259
260   my $years;
261   $years->{$_->year|| scalar keys %$years}++ for $rs->all;  # NULL != NULL, thus the keys eval
262
263   lives_ok ( sub {
264     is (
265       $rs->search ({}, { group_by => 'year'})->count,
266       scalar keys %$years,
267       'grouped count correct',
268     );
269   }, 'Grouped count does not throw');
270
271   lives_ok( sub {
272     $ansi_schema->resultset('Owners')->search({}, {
273       join => 'books', group_by => [ 'me.id', 'books.id' ]
274     })->count();
275   }, 'count on grouped columns with the same name does not throw');
276
277
278 }
279
280 ZEROINSEARCH: {
281   my $cds_per_year = {
282     2001 => 2,
283     2002 => 1,
284     2005 => 3,
285   };
286
287   my $rs = $schema->resultset ('CD');
288   $rs->delete;
289   for my $y (keys %$cds_per_year) {
290     for my $c (1 .. $cds_per_year->{$y} ) {
291       $rs->create ({ title => "CD $y-$c", artist => 1, year => "$y-01-01" });
292     }
293   }
294
295   is ($rs->count, 6, 'CDs created successfully');
296
297   $rs = $rs->search ({}, {
298     select => [ \ 'YEAR(year)' ], as => ['y'], distinct => 1,
299   });
300
301   is_deeply (
302     [ sort ($rs->get_column ('y')->all) ],
303     [ sort keys %$cds_per_year ],
304     'Years group successfully',
305   );
306
307   $rs->create ({ artist => 1, year => '0-1-1', title => 'Jesus Rap' });
308
309   is_deeply (
310     [ sort $rs->get_column ('y')->all ],
311     [ 0, sort keys %$cds_per_year ],
312     'Zero-year groups successfully',
313   );
314
315   # convoluted search taken verbatim from list 
316   my $restrict_rs = $rs->search({ -and => [
317     year => { '!=', 0 },
318     year => { '!=', undef }
319   ]});
320
321   is_deeply (
322     [ $restrict_rs->get_column('y')->all ],
323     [ $rs->get_column ('y')->all ],
324     'Zero year was correctly excluded from resultset',
325   );
326 }
327
328 ## If find() is the first query after connect()
329 ## DBI::Storage::sql_maker() will be called before
330 ## _determine_driver() and so the ::SQLHacks class for MySQL
331 ## will not be used
332
333 my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
334 $schema2->resultset("Artist")->find(4);
335 isa_ok($schema2->storage->sql_maker, 'DBIx::Class::SQLMaker::MySQL');
336
337 done_testing;