Merge 0.09's savepoint branch
[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;
adb3554a 8use DBICTest::Stats;
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
adb3554a 17plan tests => 9;
0567538f 18
3ff5b740 19my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
0567538f 20
3ff5b740 21my $dbh = $schema->storage->dbh;
adb3554a 22my $stats = new DBICTest::Stats();
23$schema->storage->debugobj($stats);
24$schema->storage->debug(1);
0567538f 25
26$dbh->do("DROP TABLE IF EXISTS artist;");
27
adb3554a 28$dbh->do("CREATE TABLE artist (artistid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255), charfield CHAR(10)) ENGINE=InnoDB;");
0567538f 29
30#'dbi:mysql:host=localhost;database=dbic_test', 'dbic_test', '');
31
3ff5b740 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');
0567538f 34
35# test primary key handling
3ff5b740 36my $new = $schema->resultset('Artist')->create({ name => 'foo' });
0567538f 37ok($new->artistid, "Auto-PK worked");
38
39# test LIMIT support
40for (1..6) {
3ff5b740 41 $schema->resultset('Artist')->create({ name => 'Artist ' . $_ });
0567538f 42}
3ff5b740 43my $it = $schema->resultset('Artist')->search( {},
0567538f 44 { rows => 3,
45 offset => 2,
46 order_by => 'artistid' }
47);
48is( $it->count, 3, "LIMIT count ok" );
49is( $it->next->name, "Artist 2", "iterator->next ok" );
50$it->next;
51$it->next;
52is( $it->next, undef, "next past end of resultset ok" );
53
a953d8d9 54my $test_type_info = {
55 'artistid' => {
103e3e03 56 'data_type' => 'INT',
57 'is_nullable' => 0,
fc22fbac 58 'size' => 11,
59 'default_value' => undef,
a953d8d9 60 },
61 'name' => {
103e3e03 62 'data_type' => 'VARCHAR',
a953d8d9 63 'is_nullable' => 1,
fc22fbac 64 'size' => 255,
65 'default_value' => undef,
103e3e03 66 },
67 'charfield' => {
637219ab 68 'data_type' => 'CHAR',
103e3e03 69 'is_nullable' => 1,
fc22fbac 70 'size' => 10,
71 'default_value' => undef,
103e3e03 72 },
a953d8d9 73};
74
adb3554a 75$schema->txn_begin();
76
77my $arty = $schema->resultset('Artist')->find(1);
78
79my $name = $arty->name();
80
81$schema->svp_begin('savepoint1');
82
83cmp_ok($stats->{'SVP_BEGIN'}, '==', 1, 'Statistics svp_begin tickled');
84
85$arty->update({ name => 'Jheephizzy' });
86
87$arty->discard_changes();
88
89cmp_ok($arty->name(), 'eq', 'Jheephizzy', 'Name changed');
90
91$schema->svp_rollback('savepoint1');
92
93cmp_ok($stats->{'SVP_ROLLBACK'}, '==', 1, 'Statistics svp_rollback tickled');
94
95$arty->discard_changes();
96
97cmp_ok($arty->name(), 'eq', $name, 'Name rolled back');
98
99$schema->txn_commit();
100
5db49b9a 101SKIP: {
102 my $mysql_version = $dbh->get_info( $GetInfoType{SQL_DBMS_VER} );
5db49b9a 103 skip "Cannot determine MySQL server version", 1 if !$mysql_version;
a953d8d9 104
f750163c 105 my ($v1, $v2, $v3) = $mysql_version =~ /^(\d+)\.(\d+)(?:\.(\d+))?/;
106 skip "Cannot determine MySQL server version", 1 if !$v1 || !defined($v2);
107
108 $v3 ||= 0;
109
5db49b9a 110 if( ($v1 < 5) || ($v1 == 5 && $v2 == 0 && $v3 <= 3) ) {
111 $test_type_info->{charfield}->{data_type} = 'VARCHAR';
112 }
a953d8d9 113
3ff5b740 114 my $type_info = $schema->storage->columns_info_for('artist');
5db49b9a 115 is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');
116}
a953d8d9 117
0567538f 118# clean up our mess
3ff5b740 119END {
120 $dbh->do("DROP TABLE artist") if $dbh;
121}