Merge 'trunk' into 'DBIx-Class-current'
[dbsrgits/DBIx-Class.git] / t / 71mysql.t
CommitLineData
70350518 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
5db49b9a 7use DBI::Const::GetInfoType;
0567538f 8
9my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/};
10
11#warn "$dsn $user $pass";
12
70350518 13plan skip_all => 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test'
0567538f 14 unless ($dsn && $user);
15
5db49b9a 16plan tests => 5;
0567538f 17
3ff5b740 18my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
0567538f 19
3ff5b740 20my $dbh = $schema->storage->dbh;
0567538f 21
22$dbh->do("DROP TABLE IF EXISTS artist;");
23
103e3e03 24$dbh->do("CREATE TABLE artist (artistid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255), charfield CHAR(10));");
0567538f 25
26#'dbi:mysql:host=localhost;database=dbic_test', 'dbic_test', '');
27
3ff5b740 28# This is in Core now, but it's here just to test that it doesn't break
29$schema->class('Artist')->load_components('PK::Auto');
0567538f 30
31# test primary key handling
3ff5b740 32my $new = $schema->resultset('Artist')->create({ name => 'foo' });
0567538f 33ok($new->artistid, "Auto-PK worked");
34
35# test LIMIT support
36for (1..6) {
3ff5b740 37 $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
0567538f 38}
3ff5b740 39my $it = $schema->resultset('Artist')->search( {},
0567538f 40 { rows => 3,
41 offset => 2,
42 order_by => 'artistid' }
43);
44is( $it->count, 3, "LIMIT count ok" );
45is( $it->next->name, "Artist 2", "iterator->next ok" );
46$it->next;
47$it->next;
48is( $it->next, undef, "next past end of resultset ok" );
49
a953d8d9 50my $test_type_info = {
51 'artistid' => {
103e3e03 52 'data_type' => 'INT',
53 'is_nullable' => 0,
fc22fbac 54 'size' => 11,
55 'default_value' => undef,
a953d8d9 56 },
57 'name' => {
103e3e03 58 'data_type' => 'VARCHAR',
a953d8d9 59 'is_nullable' => 1,
fc22fbac 60 'size' => 255,
61 'default_value' => undef,
103e3e03 62 },
63 'charfield' => {
637219ab 64 'data_type' => 'CHAR',
103e3e03 65 'is_nullable' => 1,
fc22fbac 66 'size' => 10,
67 'default_value' => undef,
103e3e03 68 },
a953d8d9 69};
70
5db49b9a 71SKIP: {
72 my $mysql_version = $dbh->get_info( $GetInfoType{SQL_DBMS_VER} );
5db49b9a 73 skip "Cannot determine MySQL server version", 1 if !$mysql_version;
a953d8d9 74
f750163c 75 my ($v1, $v2, $v3) = $mysql_version =~ /^(\d+)\.(\d+)(?:\.(\d+))?/;
76 skip "Cannot determine MySQL server version", 1 if !$v1 || !defined($v2);
77
78 $v3 ||= 0;
79
5db49b9a 80 if( ($v1 < 5) || ($v1 == 5 && $v2 == 0 && $v3 <= 3) ) {
81 $test_type_info->{charfield}->{data_type} = 'VARCHAR';
82 }
a953d8d9 83
3ff5b740 84 my $type_info = $schema->storage->columns_info_for('artist');
5db49b9a 85 is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');
86}
a953d8d9 87
0567538f 88# clean up our mess
3ff5b740 89END {
90 $dbh->do("DROP TABLE artist") if $dbh;
91}