extra TODO test for Sybase timestamp columns
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 11mysql_common.t
index 26575b8..0da0e39 100644 (file)
@@ -17,6 +17,7 @@ my $tester = dbixcsl_common_tests->new(
     dsn              => $dsn,
     user             => $user,
     password         => $password,
+    connect_info_opts=> { on_connect_call => 'set_strict_mode' },
     skip_rels        => $test_innodb ? 0 : $skip_rels_msg,
     no_inline_rels   => 1,
     no_implicit_rels => 1,
@@ -24,19 +25,40 @@ my $tester = dbixcsl_common_tests->new(
         create => [
             qq{
                 CREATE TABLE mysql_loader_test1 (
-                    id INTEGER UNSIGNED NOT NULL PRIMARY KEY
+                    id INTEGER UNSIGNED NOT NULL PRIMARY KEY,
+                    value ENUM('foo', 'bar', 'baz')
+                )
+            },
+            qq{
+                CREATE TABLE mysql_loader_test2 (
+                  id INTEGER UNSIGNED NOT NULL PRIMARY KEY,
+                  somets TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
                 )
             },
         ],
-        drop   => [ qw/ mysql_loader_test1 / ],
-        count  => 1,
+        drop   => [ qw/ mysql_loader_test1 mysql_loader_test2 / ],
+        count  => 5,
         run    => sub {
             my ($schema, $monikers, $classes) = @_;
         
             my $rs = $schema->resultset($monikers->{mysql_loader_test1});
             my $column_info = $rs->result_source->column_info('id');
-        
+            
             is($column_info->{extra}->{unsigned}, 1, 'Unsigned MySQL columns');
+
+            $column_info = $rs->result_source->column_info('value');
+
+            like($column_info->{data_type}, qr/^enum$/i, 'MySQL ENUM type');
+            is_deeply($column_info->{extra}->{list}, [qw/foo bar baz/],
+                      'MySQL ENUM values');
+
+            $rs = $schema->resultset($monikers->{mysql_loader_test2});
+            $column_info = $rs->result_source->column_info('somets');
+            my $default  = $column_info->{default_value};
+            ok ((ref($default) eq 'SCALAR'),
+                'CURRENT_TIMESTAMP default_value is a scalar ref');
+            like $$default, qr/^CURRENT_TIMESTAMP\z/i,
+                'CURRENT_TIMESTAMP default eq "CURRENT_TIMESTAMP"';
         },
     }
 );