Attempt to reproduce reported mysql error (failed) - fixed another bug in ResultSetCo...
[dbsrgits/DBIx-Class.git] / t / 71mysql.t
CommitLineData
70350518 1use strict;
34a9e8a0 2use warnings;
70350518 3
4use Test::More;
74de7c2c 5use Test::Exception;
70350518 6use lib qw(t/lib);
7use DBICTest;
5db49b9a 8use DBI::Const::GetInfoType;
0567538f 9
10my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/};
11
12#warn "$dsn $user $pass";
13
70350518 14plan skip_all => 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test'
0567538f 15 unless ($dsn && $user);
16
bed3a173 17plan tests => 15;
0567538f 18
3ff5b740 19my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
0567538f 20
3ff5b740 21my $dbh = $schema->storage->dbh;
0567538f 22
23$dbh->do("DROP TABLE IF EXISTS artist;");
24
a0dd8679 25$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));");
0567538f 26
74de7c2c 27$dbh->do("DROP TABLE IF EXISTS cd;");
28
29$dbh->do("CREATE TABLE cd (cdid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, artist INTEGER, title TEXT, year INTEGER, genreid INTEGER, single_track INTEGER);");
30
31$dbh->do("DROP TABLE IF EXISTS producer;");
32
33$dbh->do("CREATE TABLE producer (producerid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name TEXT);");
34
35$dbh->do("DROP TABLE IF EXISTS cd_to_producer;");
36
37$dbh->do("CREATE TABLE cd_to_producer (cd INTEGER,producer INTEGER);");
38
bed3a173 39$dbh->do("DROP TABLE IF EXISTS owners;");
40
41$dbh->do("CREATE TABLE owners (id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100) NOT NULL);");
42
43$dbh->do("DROP TABLE IF EXISTS books;");
44
45$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
0567538f 47#'dbi:mysql:host=localhost;database=dbic_test', 'dbic_test', '');
48
3ff5b740 49# This is in Core now, but it's here just to test that it doesn't break
50$schema->class('Artist')->load_components('PK::Auto');
0567538f 51
52# test primary key handling
3ff5b740 53my $new = $schema->resultset('Artist')->create({ name => 'foo' });
0567538f 54ok($new->artistid, "Auto-PK worked");
55
56# test LIMIT support
57for (1..6) {
3ff5b740 58 $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
0567538f 59}
3ff5b740 60my $it = $schema->resultset('Artist')->search( {},
0567538f 61 { rows => 3,
62 offset => 2,
63 order_by => 'artistid' }
64);
fb4b58e8 65is( $it->count, 3, "LIMIT count ok" ); # ask for 3 rows out of 7 artists
0567538f 66is( $it->next->name, "Artist 2", "iterator->next ok" );
67$it->next;
68$it->next;
69is( $it->next, undef, "next past end of resultset ok" );
70
a953d8d9 71my $test_type_info = {
72 'artistid' => {
103e3e03 73 'data_type' => 'INT',
74 'is_nullable' => 0,
fc22fbac 75 'size' => 11,
76 'default_value' => undef,
a953d8d9 77 },
78 'name' => {
103e3e03 79 'data_type' => 'VARCHAR',
a953d8d9 80 'is_nullable' => 1,
a0dd8679 81 'size' => 100,
fc22fbac 82 'default_value' => undef,
103e3e03 83 },
39da2a2b 84 'rank' => {
85 'data_type' => 'INT',
86 'is_nullable' => 0,
87 'size' => 11,
88 'default_value' => 13,
89 },
103e3e03 90 'charfield' => {
637219ab 91 'data_type' => 'CHAR',
103e3e03 92 'is_nullable' => 1,
fc22fbac 93 'size' => 10,
94 'default_value' => undef,
103e3e03 95 },
a953d8d9 96};
97
bed3a173 98$schema->populate ('Owners', [
99 [qw/id name /],
100 [qw/1 wiggle/],
101 [qw/2 woggle/],
102 [qw/3 boggle/],
103]);
104
105$schema->populate ('BooksInLibrary', [
106 [qw/source owner title /],
107 [qw/nsa 1 secrets1/],
108 [qw/fbi 1 secrets2/],
109 [qw/cia 2 secrets3/],
110]);
111
112# try a distinct + prefetch with tables with identical columns (mysql allegedly doesn't like this)
113my $owners = $schema->resultset ('Owners')->search (
114 { 'books.id' => { '!=', undef }},
115 { prefetch => 'books', distinct => 1 }
116);
117my $owners2 = $schema->resultset ('Owners')->search ({ id => { -in => $owners->get_column ('me.id')->as_query }});
118for ($owners, $owners2) {
119 is ($_->all, 2, 'Prefetched grouped search returns correct number of rows');
120 is ($_->count, 2, 'Prefetched grouped search returns correct count');
121}
122
123
5db49b9a 124SKIP: {
125 my $mysql_version = $dbh->get_info( $GetInfoType{SQL_DBMS_VER} );
5db49b9a 126 skip "Cannot determine MySQL server version", 1 if !$mysql_version;
a953d8d9 127
f750163c 128 my ($v1, $v2, $v3) = $mysql_version =~ /^(\d+)\.(\d+)(?:\.(\d+))?/;
129 skip "Cannot determine MySQL server version", 1 if !$v1 || !defined($v2);
130
131 $v3 ||= 0;
132
5db49b9a 133 if( ($v1 < 5) || ($v1 == 5 && $v2 == 0 && $v3 <= 3) ) {
134 $test_type_info->{charfield}->{data_type} = 'VARCHAR';
135 }
a953d8d9 136
3ff5b740 137 my $type_info = $schema->storage->columns_info_for('artist');
5db49b9a 138 is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');
139}
a953d8d9 140
55cfbb70 141## Can we properly deal with the null search problem?
a7e65bb5 142##
143## Only way is to do a SET SQL_AUTO_IS_NULL = 0; on connect
144## But I'm not sure if we should do this or not (Ash, 2008/06/03)
55cfbb70 145
146NULLINSEARCH: {
147
148 ok my $artist1_rs = $schema->resultset('Artist')->search({artistid=>6666})
149 => 'Created an artist resultset of 6666';
150
151 is $artist1_rs->count, 0
152 => 'Got no returned rows';
153
154 ok my $artist2_rs = $schema->resultset('Artist')->search({artistid=>undef})
155 => 'Created an artist resultset of undef';
156
374dd926 157 TODO: {
4cf8bfe6 158 local $TODO = "need to fix the row count =1 when select * from table where pk IS NULL problem";
374dd926 159 is $artist2_rs->count, 0
160 => 'got no rows';
161 }
162
55cfbb70 163 my $artist = $artist2_rs->single;
164
165 is $artist => undef
166 => 'Nothing Found!';
55cfbb70 167}
168
74de7c2c 169my $cd = $schema->resultset ('CD')->create ({});
170
171my $producer = $schema->resultset ('Producer')->create ({});
172
c856f505 173lives_ok { $cd->set_producers ([ $producer ]) } 'set_relationship doesnt die';
55cfbb70 174
0567538f 175# clean up our mess
3ff5b740 176END {
55cfbb70 177 #$dbh->do("DROP TABLE artist") if $dbh;
74de7c2c 178}