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