fix warning in MySQL tests
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 11mysql_common.t
1 use strict;
2 use lib qw(t/lib);
3 use dbixcsl_common_tests;
4 use Test::More;
5
6 my $dsn         = $ENV{DBICTEST_MYSQL_DSN} || '';
7 my $user        = $ENV{DBICTEST_MYSQL_USER} || '';
8 my $password    = $ENV{DBICTEST_MYSQL_PASS} || '';
9 my $test_innodb = $ENV{DBICTEST_MYSQL_INNODB} || 0;
10
11 my $skip_rels_msg = 'You need to set the DBICTEST_MYSQL_INNODB environment variable to test relationships';
12
13 my $tester = dbixcsl_common_tests->new(
14     vendor           => 'Mysql',
15     auto_inc_pk      => 'INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT',
16     innodb           => $test_innodb ? q{Engine=InnoDB} : 0,
17     dsn              => $dsn,
18     user             => $user,
19     password         => $password,
20     skip_rels        => $test_innodb ? 0 : $skip_rels_msg,
21     no_inline_rels   => 1,
22     no_implicit_rels => 1,
23     extra            => {
24         create => [
25             qq{
26                 CREATE TABLE mysql_loader_test1 (
27                     id INTEGER UNSIGNED NOT NULL PRIMARY KEY,
28                     value ENUM('foo', 'bar', 'baz')
29                 )
30             },
31             qq{
32                 CREATE TABLE mysql_loader_test2 (
33                   id INTEGER UNSIGNED NOT NULL PRIMARY KEY,
34                   somedate TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
35                   somestr VARCHAR(100) NOT NULL DEFAULT 'foo'
36                 )
37             },
38         ],
39         drop   => [ qw/ mysql_loader_test1 mysql_loader_test2 / ],
40         count  => 5,
41         run    => sub {
42             my ($schema, $monikers, $classes) = @_;
43         
44             my $rs = $schema->resultset($monikers->{mysql_loader_test1});
45             my $column_info = $rs->result_source->column_info('id');
46             
47             is($column_info->{extra}->{unsigned}, 1, 'Unsigned MySQL columns');
48
49             $column_info = $rs->result_source->column_info('value');
50
51             like($column_info->{data_type}, qr/^enum$/i, 'MySQL ENUM type');
52             is_deeply($column_info->{extra}->{list}, [qw/foo bar baz/],
53                       'MySQL ENUM values');
54
55             $rs = $schema->resultset($monikers->{mysql_loader_test2});
56             $column_info = $rs->result_source->column_info('somedate');
57             my $default  = $column_info->{default_value};
58             ok ((ref($default) eq 'SCALAR'),
59                 'CURRENT_TIMESTAMP default_value is a scalar ref');
60             like $$default, qr/^CURRENT_TIMESTAMP\z/i,
61                 'CURRENT_TIMESTAMP default eq "CURRENT_TIMESTAMP"';
62         },
63     }
64 );
65
66 if( !$dsn || !$user ) {
67     $tester->skip_tests('You need to set the DBICTEST_MYSQL_DSN, _USER, and _PASS environment variables');
68 }
69 else {
70     $tester->run_tests();
71 }