X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F11mysql_common.t;h=045675d4456a89b31831a295a065181543ffa6ee;hb=33aa346253f9628fea4a9ac427048b544cd91463;hp=df7b08ef5e46f9f8ba847d1e0f70216cc1ac97a0;hpb=4ce226568294f7e05815527cbf9089f9cab8a458;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/t/11mysql_common.t b/t/11mysql_common.t index df7b08e..045675d 100644 --- a/t/11mysql_common.t +++ b/t/11mysql_common.t @@ -1,28 +1,161 @@ use strict; -use lib qw( . ./t ); +use Test::More; +use lib qw(t/lib); use dbixcsl_common_tests; -my $database = $ENV{MYSQL_NAME} || ''; -my $user = $ENV{MYSQL_USER} || ''; -my $password = $ENV{MYSQL_PASS} || ''; -my $test_innodb = $ENV{MYSQL_TEST_INNODB} || 0; +my $dsn = $ENV{DBICTEST_MYSQL_DSN} || ''; +my $user = $ENV{DBICTEST_MYSQL_USER} || ''; +my $password = $ENV{DBICTEST_MYSQL_PASS} || ''; +my $test_innodb = $ENV{DBICTEST_MYSQL_INNODB} || 0; -my $skip_rels_msg = 'You need to set the MYSQL_TEST_INNODB environment variable to test relationships'; +my $skip_rels_msg = 'You need to set the DBICTEST_MYSQL_INNODB environment variable to test relationships.'; my $tester = dbixcsl_common_tests->new( - vendor => 'Mysql', - auto_inc_pk => 'INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT', - innodb => q{Engine='InnoDB'}, - dsn => "dbi:mysql:$database", - user => $user, - password => $password, - skip_rels => $test_innodb ? 0 : $skip_rels_msg, - no_inline_rels => 1, + vendor => 'Mysql', + auto_inc_pk => 'INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT', + innodb => $test_innodb ? q{Engine=InnoDB} : 0, + dsn => $dsn, + user => $user, + password => $password, + connect_info_opts=> { on_connect_call => 'set_strict_mode' }, + loader_options => { preserve_case => 1 }, + skip_rels => $test_innodb ? 0 : $skip_rels_msg, + no_inline_rels => 1, + no_implicit_rels => 1, + data_types => { + # http://dev.mysql.com/doc/refman/5.5/en/data-type-overview.html + # Numeric Types + 'bit' => { data_type => 'bit', size => 1 }, + 'bit(11)' => { data_type => 'bit', size => 11 }, + + 'bool' => { data_type => 'tinyint' }, + 'boolean' => { data_type => 'tinyint' }, + 'tinyint' => { data_type => 'tinyint' }, + 'tinyint unsigned' + => { data_type => 'tinyint', extra => { unsigned => 1 } }, + 'smallint' => { data_type => 'smallint' }, + 'smallint unsigned' + => { data_type => 'smallint', extra => { unsigned => 1 } }, + 'mediumint' => { data_type => 'mediumint' }, + 'mediumint unsigned' + => { data_type => 'mediumint', extra => { unsigned => 1 } }, + 'int' => { data_type => 'integer' }, + 'int unsigned' + => { data_type => 'integer', extra => { unsigned => 1 } }, + 'integer' => { data_type => 'integer' }, + 'integer unsigned' + => { data_type => 'integer', extra => { unsigned => 1 } }, + 'integer not null' + => { data_type => 'integer' }, + 'bigint' => { data_type => 'bigint' }, + 'bigint unsigned' + => { data_type => 'bigint', extra => { unsigned => 1 } }, + + 'serial' => { data_type => 'bigint', is_auto_increment => 1, extra => { unsigned => 1 } }, + + 'float' => { data_type => 'float' }, + 'float unsigned' + => { data_type => 'float', extra => { unsigned => 1 } }, + 'double' => { data_type => 'double precision' }, + 'double unsigned' + => { data_type => 'double precision', extra => { unsigned => 1 } }, + 'double precision' => + { data_type => 'double precision' }, + 'double precision unsigned' + => { data_type => 'double precision', extra => { unsigned => 1 } }, + + # we skip 'real' because its alias depends on the 'REAL AS FLOAT' setting + + 'float(2)' => { data_type => 'float' }, + 'float(24)' => { data_type => 'float' }, + 'float(25)' => { data_type => 'double precision' }, + + 'float(3,3)' => { data_type => 'float', size => [3,3] }, + 'double(3,3)' => { data_type => 'double precision', size => [3,3] }, + 'double precision(3,3)' + => { data_type => 'double precision', size => [3,3] }, + + 'decimal' => { data_type => 'decimal' }, + 'decimal unsigned' + => { data_type => 'decimal', extra => { unsigned => 1 } }, + 'dec' => { data_type => 'decimal' }, + 'numeric' => { data_type => 'decimal' }, + 'fixed' => { data_type => 'decimal' }, + + 'decimal(3)' => { data_type => 'decimal', size => [3,0] }, + + 'decimal(3,3)' => { data_type => 'decimal', size => [3,3] }, + 'dec(3,3)' => { data_type => 'decimal', size => [3,3] }, + 'numeric(3,3)' => { data_type => 'decimal', size => [3,3] }, + 'fixed(3,3)' => { data_type => 'decimal', size => [3,3] }, + + # Date and Time Types + 'date' => { data_type => 'date' }, + 'datetime' => { data_type => 'datetime' }, + 'timestamp default current_timestamp' + => { data_type => 'timestamp', default_value => \'current_timestamp' }, + 'time' => { data_type => 'time' }, + 'year' => { data_type => 'year' }, + 'year(4)' => { data_type => 'year' }, + 'year(2)' => { data_type => 'year', size => 2 }, + + # String Types + 'char' => { data_type => 'char', size => 1 }, + 'char(11)' => { data_type => 'char', size => 11 }, + 'varchar(20)' => { data_type => 'varchar', size => 20 }, + 'binary' => { data_type => 'binary', size => 1 }, + 'binary(11)' => { data_type => 'binary', size => 11 }, + 'varbinary(20)'=> { data_type => 'varbinary', size => 20 }, + + 'tinyblob' => { data_type => 'tinyblob' }, + 'tinytext' => { data_type => 'tinytext' }, + 'blob' => { data_type => 'blob' }, + + # text(M) types will map to the appropriate type, length is not stored + 'text' => { data_type => 'text' }, + + 'mediumblob' => { data_type => 'mediumblob' }, + 'mediumtext' => { data_type => 'mediumtext' }, + 'longblob' => { data_type => 'longblob' }, + 'longtext' => { data_type => 'longtext' }, + + "enum('foo','bar','baz')" + => { data_type => 'enum', extra => { list => [qw/foo bar baz/] } }, + "set('foo','bar','baz')" + => { data_type => 'set', extra => { list => [qw/foo bar baz/] } }, + }, + extra => { + create => [ + q{ + CREATE TABLE mysql_loader_test1 ( + id INT AUTO_INCREMENT PRIMARY KEY, + value varchar(100) + ) + }, + q{ + CREATE VIEW mysql_loader_test2 AS SELECT * FROM mysql_loader_test1 + }, + ], + pre_drop_ddl => [ 'DROP VIEW mysql_loader_test2', ], + drop => [ 'mysql_loader_test1', ], + count => 1, + run => sub { + my ($schema, $monikers, $classes) = @_; + + my $rsrc = $schema->resultset($monikers->{mysql_loader_test2})->result_source; + + is $rsrc->column_info('value')->{data_type}, 'varchar', + 'view introspected successfully'; + }, + }, ); -if( !$database || !$user ) { - $tester->skip_tests('You need to set the MYSQL_NAME, MYSQL_USER and MYSQL_PASS environment variables'); +if( !$dsn || !$user ) { + $tester->skip_tests('You need to set the DBICTEST_MYSQL_DSN, _USER, and _PASS environment variables'); } else { + diag $skip_rels_msg if not $test_innodb; $tester->run_tests(); } + +# vim:et sts=4 sw=4 tw=0: