4 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MYSQL_${_}" } qw/DSN USER PASS/};
6 #warn "$dsn $user $pass";
8 plan skip_all, 'Set $ENV{DBICTEST_MYSQL_DSN}, _USER and _PASS to run this test'
9 unless ($dsn && $user);
13 DBICTest::Schema->compose_connection('MySQLTest' => $dsn, $user, $pass);
15 my $dbh = MySQLTest->schema->storage->dbh;
17 $dbh->do("DROP TABLE IF EXISTS artist;");
19 $dbh->do("CREATE TABLE artist (artistid INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255), charfield CHAR(10));");
21 #'dbi:mysql:host=localhost;database=dbic_test', 'dbic_test', '');
23 MySQLTest::Artist->load_components('PK::Auto');
25 # test primary key handling
26 my $new = MySQLTest::Artist->create({ name => 'foo' });
27 ok($new->artistid, "Auto-PK worked");
31 MySQLTest::Artist->create({ name => 'Artist ' . $_ });
33 my $it = MySQLTest::Artist->search( {},
36 order_by => 'artistid' }
38 is( $it->count, 3, "LIMIT count ok" );
39 is( $it->next->name, "Artist 2", "iterator->next ok" );
42 is( $it->next, undef, "next past end of resultset ok" );
44 my $test_type_info = {
49 'default_value' => undef,
52 'data_type' => 'VARCHAR',
55 'default_value' => undef,
58 'data_type' => 'VARCHAR',
61 'default_value' => undef,
66 my $type_info = MySQLTest->schema->storage->columns_info_for('artist');
67 is_deeply($type_info, $test_type_info, 'columns_info_for - column data types');
72 $dbh->do("DROP TABLE artist");