8 use DBI::Const::GetInfoType;
9 use DBIC::SqlMakerTest;
11 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/};
13 #warn "$dsn $user $pass";
15 plan skip_all => 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test'
16 unless ($dsn && $user);
18 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
20 my $dbh = $schema->storage->dbh;
22 $dbh->do("DROP TABLE IF EXISTS artist;");
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));");
26 $dbh->do("DROP TABLE IF EXISTS cd;");
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);");
30 $dbh->do("DROP TABLE IF EXISTS producer;");
32 $dbh->do("CREATE TABLE producer (producerid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name TEXT);");
34 $dbh->do("DROP TABLE IF EXISTS cd_to_producer;");
36 $dbh->do("CREATE TABLE cd_to_producer (cd INTEGER,producer INTEGER);");
38 $dbh->do("DROP TABLE IF EXISTS owners;");
40 $dbh->do("CREATE TABLE owners (id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100) NOT NULL);");
42 $dbh->do("DROP TABLE IF EXISTS books;");
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);");
46 #'dbi:mysql:host=localhost;database=dbic_test', 'dbic_test', '');
48 # make sure sqlt_type overrides work (::Storage::DBI::mysql does this)
50 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
52 ok (!$schema->storage->_dbh, 'definitely not connected');
53 is ($schema->storage->sqlt_type, 'MySQL', 'sqlt_type correct pre-connection');
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');
59 # test primary key handling
60 my $new = $schema->resultset('Artist')->create({ name => 'foo' });
61 ok($new->artistid, "Auto-PK worked");
65 $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
67 my $it = $schema->resultset('Artist')->search( {},
70 order_by => 'artistid' }
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" );
76 is( $it->next, undef, "next past end of resultset ok" );
78 # Limit with select-lock
80 $schema->txn_do (sub {
82 $schema->resultset('Artist')->find({artistid => 1}, {for => 'update', rows => 1}),
83 'DBICTest::Schema::Artist',
86 } 'Limited FOR UPDATE select works';
90 $schema->txn_do (sub {
92 $schema->resultset('Artist')->find({artistid => 1}, {for => 'shared'}),
93 'DBICTest::Schema::Artist',
96 } 'LOCK IN SHARE MODE select works';
98 my $test_type_info = {
100 'data_type' => 'INT',
103 'default_value' => undef,
106 'data_type' => 'VARCHAR',
109 'default_value' => undef,
112 'data_type' => 'INT',
115 'default_value' => 13,
118 'data_type' => 'CHAR',
121 'default_value' => undef,
125 $schema->populate ('Owners', [
132 $schema->populate ('BooksInLibrary', [
133 [qw/source owner title /],
134 [qw/Library 1 secrets1/],
135 [qw/Eatery 1 secrets2/],
136 [qw/Library 2 secrets3/],
140 # try a distinct + prefetch on tables with identically named columns
141 # (mysql doesn't seem to like subqueries with equally named columns)
145 # try a ->has_many direction (due to a 'multi' accessor the select/group_by group is collapsed)
146 my $owners = $schema->resultset ('Owners')->search (
147 { 'books.id' => { '!=', undef }},
148 { prefetch => 'books', distinct => 1 }
150 my $owners2 = $schema->resultset ('Owners')->search ({ id => { -in => $owners->get_column ('me.id')->as_query }});
151 for ($owners, $owners2) {
152 is ($_->all, 2, 'Prefetched grouped search returns correct number of rows');
153 is ($_->count, 2, 'Prefetched grouped search returns correct count');
156 # try a ->belongs_to direction (no select collapse)
157 my $books = $schema->resultset ('BooksInLibrary')->search (
158 { 'owner.name' => 'wiggle' },
159 { prefetch => 'owner', distinct => 1 }
161 my $books2 = $schema->resultset ('BooksInLibrary')->search ({ id => { -in => $books->get_column ('me.id')->as_query }});
162 for ($books, $books2) {
163 is ($_->all, 1, 'Prefetched grouped search returns correct number of rows');
164 is ($_->count, 1, 'Prefetched grouped search returns correct count');
169 my $mysql_version = $dbh->get_info( $GetInfoType{SQL_DBMS_VER} );
170 skip "Cannot determine MySQL server version", 1 if !$mysql_version;
172 my ($v1, $v2, $v3) = $mysql_version =~ /^(\d+)\.(\d+)(?:\.(\d+))?/;
173 skip "Cannot determine MySQL server version", 1 if !$v1 || !defined($v2);
177 if( ($v1 < 5) || ($v1 == 5 && $v2 == 0 && $v3 <= 3) ) {
178 $test_type_info->{charfield}->{data_type} = 'VARCHAR';
181 my $type_info = $schema->storage->columns_info_for('artist');
182 is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');
185 my $cd = $schema->resultset ('CD')->create ({});
186 my $producer = $schema->resultset ('Producer')->create ({});
187 lives_ok { $cd->set_producers ([ $producer ]) } 'set_relationship doesnt die';
190 my $artist = $schema->resultset('Artist')->next;
191 my $cd = $schema->resultset('CD')->next;
192 $cd->set_from_related ('artist', $artist);
195 my $rs = $schema->resultset('CD')->search ({}, { prefetch => 'artist' });
199 is ($cd->artist->name, $artist->name, 'Prefetched artist');
200 }, 'join does not throw (mysql 3 test)';
202 # induce a jointype override, make sure it works even if we don't have mysql3
203 local $schema->storage->sql_maker->{_default_jointype} = 'inner';
207 SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track,
208 artist.artistid, artist.name, artist.rank, artist.charfield
210 INNER JOIN artist artist ON artist.artistid = me.artist
213 'overriden default join type works',
218 # Test support for straight joins
219 my $cdsrc = $schema->source('CD');
220 my $artrel_info = $cdsrc->relationship_info ('artist');
221 $cdsrc->add_relationship(
223 $artrel_info->{class},
224 $artrel_info->{cond},
225 { %{$artrel_info->{attrs}}, join_type => 'straight' },
228 $cdsrc->resultset->search({}, { prefetch => 'straight_artist' })->as_query,
230 SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track,
231 straight_artist.artistid, straight_artist.name, straight_artist.rank, straight_artist.charfield
233 STRAIGHT_JOIN artist straight_artist ON straight_artist.artistid = me.artist
236 'straight joins correctly supported for mysql'
240 ## Can we properly deal with the null search problem?
242 ## Only way is to do a SET SQL_AUTO_IS_NULL = 0; on connect
243 ## But I'm not sure if we should do this or not (Ash, 2008/06/03)
245 # There is now a built-in function to do this, test that everything works
246 # with it (ribasushi, 2009/07/03)
249 my $ansi_schema = DBICTest::Schema->connect ($dsn, $user, $pass, { on_connect_call => 'set_strict_mode' });
251 $ansi_schema->resultset('Artist')->create ({ name => 'last created artist' });
253 ok my $artist1_rs = $ansi_schema->resultset('Artist')->search({artistid=>6666})
254 => 'Created an artist resultset of 6666';
256 is $artist1_rs->count, 0
257 => 'Got no returned rows';
259 ok my $artist2_rs = $ansi_schema->resultset('Artist')->search({artistid=>undef})
260 => 'Created an artist resultset of undef';
262 is $artist2_rs->count, 0
265 my $artist = $artist2_rs->single;
271 # check for proper grouped counts
273 my $ansi_schema = DBICTest::Schema->connect ($dsn, $user, $pass, {
274 on_connect_call => 'set_strict_mode',
277 my $rs = $ansi_schema->resultset('CD');
280 $years->{$_->year|| scalar keys %$years}++ for $rs->all; # NULL != NULL, thus the keys eval
284 $rs->search ({}, { group_by => 'year'})->count,
286 'grouped count correct',
288 }, 'Grouped count does not throw');
291 $ansi_schema->resultset('Owners')->search({}, {
292 join => 'books', group_by => [ 'me.id', 'books.id' ]
294 }, 'count on grouped columns with the same name does not throw');
306 my $rs = $schema->resultset ('CD');
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" });
314 is ($rs->count, 6, 'CDs created successfully');
316 $rs = $rs->search ({}, {
317 select => [ \ 'YEAR(year)' ], as => ['y'], distinct => 1,
321 [ sort ($rs->get_column ('y')->all) ],
322 [ sort keys %$cds_per_year ],
323 'Years group successfully',
326 $rs->create ({ artist => 1, year => '0-1-1', title => 'Jesus Rap' });
329 [ sort $rs->get_column ('y')->all ],
330 [ 0, sort keys %$cds_per_year ],
331 'Zero-year groups successfully',
334 # convoluted search taken verbatim from list
335 my $restrict_rs = $rs->search({ -and => [
337 year => { '!=', undef }
341 [ $restrict_rs->get_column('y')->all ],
342 [ $rs->get_column ('y')->all ],
343 'Zero year was correctly excluded from resultset',
347 ## If find() is the first query after connect()
348 ## DBI::Storage::sql_maker() will be called before
349 ## _determine_driver() and so the ::SQLHacks class for MySQL
352 my $schema2 = DBICTest::Schema->connect($dsn, $user, $pass);
353 $schema2->resultset("Artist")->find(4);
354 isa_ok($schema2->storage->sql_maker, 'DBIx::Class::SQLMaker::MySQL');