1use strict;
2use lib qw(t/lib);
3use dbixcsl_common_tests;
4use Test::More;
5
6my $dsn         = $ENV{DBICTEST_MYSQL_DSN} || '';
7my $user        = $ENV{DBICTEST_MYSQL_USER} || '';
8my $password    = $ENV{DBICTEST_MYSQL_PASS} || '';
9my $test_innodb = $ENV{DBICTEST_MYSQL_INNODB} || 0;
10
11my $skip_rels_msg = 'You need to set the DBICTEST_MYSQL_INNODB environment variable to test relationships';
12
13my $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    connect_info_opts=> { on_connect_call => 'set_strict_mode' },
21    skip_rels        => $test_innodb ? 0 : $skip_rels_msg,
22    no_inline_rels   => 1,
23    no_implicit_rels => 1,
24    extra            => {
25        create => [
26            qq{
27                CREATE TABLE mysql_loader_test1 (
28                    id INTEGER UNSIGNED NOT NULL PRIMARY KEY,
29                    value ENUM('foo', 'bar', 'baz')
30                )
31            },
32            qq{
33                CREATE TABLE mysql_loader_test2 (
34                  id INTEGER UNSIGNED NOT NULL PRIMARY KEY,
35                  somets TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
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('somets');
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
66if( !$dsn || !$user ) {
67    $tester->skip_tests('You need to set the DBICTEST_MYSQL_DSN, _USER, and _PASS environment variables');
68}
69else {
70    $tester->run_tests();
71}
72