X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F10_02mysql_common.t;h=76e2a75645f2028d81f48fcda7ab5c93ba824316;hb=208bdf790f56fad2b950be62c4336b0b6f9be6ca;hp=65292e6950a34e258a677a42c5ac32c0e4f26713;hpb=2fa86d8bd9376b6978fc964dabffbb8bff14d697;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/t/10_02mysql_common.t b/t/10_02mysql_common.t index 65292e6..76e2a75 100644 --- a/t/10_02mysql_common.t +++ b/t/10_02mysql_common.t @@ -4,6 +4,7 @@ use Test::More; use Test::Exception; use Try::Tiny; use File::Path 'rmtree'; +use DBIx::Class::Optional::Dependencies; use DBIx::Class::Schema::Loader::Utils 'slurp_file'; use DBIx::Class::Schema::Loader 'make_schema_at'; @@ -26,18 +27,19 @@ my $innodb = $test_innodb ? q{Engine=InnoDB} : ''; my ($schema, $databases_created); # for cleanup in END for extra tests my $tester = dbixcsl_common_tests->new( - vendor => 'Mysql', - auto_inc_pk => 'INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT', - innodb => $innodb, - 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, - quote_char => '`', - no_inline_rels => 1, - no_implicit_rels => 1, + vendor => 'Mysql', + auto_inc_pk => 'INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT', + innodb => $innodb, + 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, + quote_char => '`', + no_inline_rels => 1, + no_implicit_rels => 1, + default_on_clause => 'RESTRICT', data_types => { # http://dev.mysql.com/doc/refman/5.5/en/data-type-overview.html # Numeric Types @@ -135,14 +137,17 @@ my $tester = dbixcsl_common_tests->new( 'longblob' => { data_type => 'longblob' }, 'longtext' => { data_type => 'longtext' }, - "enum('foo','bar','baz')" - => { data_type => 'enum', extra => { list => [qw/foo bar baz/] } }, - "enum('foo \\'bar\\' baz', 'foo ''bar'' quux')" - => { data_type => 'enum', extra => { list => [q{foo 'bar' baz}, q{foo 'bar' quux}] } }, - "set('foo \\'bar\\' baz', 'foo ''bar'' quux')" - => { data_type => 'set', extra => { list => [q{foo 'bar' baz}, q{foo 'bar' quux}] } }, - "set('foo','bar','baz')" - => { data_type => 'set', extra => { list => [qw/foo bar baz/] } }, + ( map { + "$_('','foo','bar','baz')" + => { data_type => $_, extra => { list => ['', qw/foo bar baz/] } }, + "$_('foo \\'bar\\' baz', 'foo ''bar'' quux')" + => { data_type => $_, extra => { list => [q{foo 'bar' baz}, q{foo 'bar' quux}] } }, + "$_('''', '''foo', 'bar''')" + => { data_type => $_, extra => { list => [qw(' 'foo bar')] } }, + "$_('\\'', '\\'foo', 'bar\\'')", + => { data_type => $_, extra => { list => [qw(' 'foo bar')] } }, + } qw(set enum) + ), # RT#68717 "enum('11,10 (<500)/0 DUN','4,90 (<120)/0 EUR') NOT NULL default '11,10 (<500)/0 DUN'" @@ -180,10 +185,24 @@ my $tester = dbixcsl_common_tests->new( PRIMARY KEY (`ISO3_code`) ) $innodb }, + # 4 through 10 are used for the multi-schema tests + qq{ + create table mysql_loader_test11 ( + id int auto_increment primary key + ) $innodb + }, + qq{ + create table mysql_loader_test12 ( + id int auto_increment primary key, + eleven_id int, + foreign key (eleven_id) references mysql_loader_test11(id) + on delete restrict on update set null + ) $innodb + }, ], pre_drop_ddl => [ 'DROP VIEW mysql_loader_test2', ], - drop => [ 'mysql_loader-test1', 'mysql_loader_test3' ], - count => 5 + 28 * 2, + drop => [ 'mysql_loader-test1', 'mysql_loader_test3', 'mysql_loader_test11', 'mysql_loader_test12' ], + count => 9 + 30 * 2, run => sub { my ($monikers, $classes); ($schema, $monikers, $classes) = @_; @@ -196,6 +215,10 @@ my $tester = dbixcsl_common_tests->new( is $rsrc->column_info('value')->{data_type}, 'varchar', 'view introspected successfully'; + # test that views are marked as such + isa_ok $schema->resultset($monikers->{mysql_loader_test2})->result_source, 'DBIx::Class::ResultSource::View', + 'views have table_class set correctly'; + $rsrc = $schema->source('MysqlLoaderTest3'); is_deeply $rsrc->column_info('del_group')->{extra}{list}, ['19,90 (<500)/0 EUR','4,90 (<120)/0 EUR','7,90 (<200)/0 CHF','300 (<6000)/0 CZK','4,90 (<100)/0 EUR','39 (<900)/0 DKK','299 (<5000)/0 EEK','9,90 (<250)/0 EUR','3,90 (<100)/0 GBP','3000 (<70000)/0 HUF','4000 (<70000)/0 JPY','13,90 (<200)/0 LVL','99 (<2500)/0 NOK','39 (<1000)/0 PLN','1000 (<20000)/0 RUB','49 (<2500)/0 SEK','29 (<600)/0 USD','19,90 (<600)/0 EUR','0 EUR','0 CHF'], @@ -212,6 +235,17 @@ my $tester = dbixcsl_common_tests->new( like $code, qr/^=head2 id\n\n(.+:.+\n)+\nThe\nColumn\n\n/m, 'column comment and attrs'; + # test on delete/update fk clause introspection + ok ((my $rel_info = $schema->source('MysqlLoaderTest12')->relationship_info('eleven')), + 'got rel info'); + + is $rel_info->{attrs}{on_delete}, 'RESTRICT', + 'ON DELETE clause introspected correctly'; + + is $rel_info->{attrs}{on_update}, 'SET NULL', + 'ON UPDATE clause introspected correctly'; + + # multischema tests follow SKIP: { my $dbh = $schema->storage->dbh; @@ -219,7 +253,8 @@ my $tester = dbixcsl_common_tests->new( $dbh->do('CREATE DATABASE `dbicsl-test`'); } catch { - skip "no CREATE DATABASE privileges", 28 * 2; + note "CREATE DATABASE returned error: '$_'"; + skip "no CREATE DATABASE privileges", 30 * 2; }; $dbh->do(<<"EOF"); @@ -232,11 +267,27 @@ EOF CREATE TABLE `dbicsl-test`.mysql_loader_test5 ( id INT AUTO_INCREMENT PRIMARY KEY, value VARCHAR(100), - four_id INTEGER UNIQUE, + four_id INTEGER, + CONSTRAINT loader_test5_uniq UNIQUE (four_id), FOREIGN KEY (four_id) REFERENCES `dbicsl-test`.mysql_loader_test4 (id) ) $innodb EOF + $dbh->do('CREATE DATABASE `dbicsl.test`'); + + # Test that keys are correctly cached by naming the primary and + # unique keys in this table with the same name as a table in + # the `dbicsl-test` schema differently. + $dbh->do(<<"EOF"); + CREATE TABLE `dbicsl.test`.mysql_loader_test5 ( + pk INT AUTO_INCREMENT PRIMARY KEY, + value VARCHAR(100), + four_id INTEGER, + CONSTRAINT loader_test5_uniq UNIQUE (four_id), + FOREIGN KEY (four_id) REFERENCES `dbicsl-test`.mysql_loader_test4 (id) + ) $innodb +EOF + $dbh->do(<<"EOF"); CREATE TABLE `dbicsl.test`.mysql_loader_test6 ( id INT AUTO_INCREMENT PRIMARY KEY, @@ -286,7 +337,7 @@ EOF $dbh->selectall_arrayref('SHOW DATABASES'); } catch { - skip 'no SHOW DATABASES privileges', 28; + skip 'no SHOW DATABASES privileges', 30; } } @@ -344,7 +395,7 @@ EOF SKIP: { skip 'set the environment variable DBICTEST_MYSQL_INNODB=1 to test relationships', 3 unless $test_innodb; - $rel_info = try { $rsrc->relationship_info('mysql_loader_test5') }; + $rel_info = try { $rsrc->relationship_info('dbicsl_dash_test_mysql_loader_test5') }; is_deeply $rel_info->{cond}, { 'foreign.four_id' => 'self.id' @@ -358,7 +409,7 @@ EOF } lives_and { - ok $rsrc = $test_schema->source('MysqlLoaderTest5'); + ok $rsrc = $test_schema->source('DbicslDashTestMysqlLoaderTest5'); } 'got source for table in database name with dash'; %uniqs = try { $rsrc->unique_constraints }; @@ -366,6 +417,11 @@ EOF is keys %uniqs, 2, 'got unique and primary constraint in database name with dash'; + delete $uniqs{primary}; + + is_deeply ((values %uniqs)[0], ['four_id'], + 'unique constraint is correct in database name with dash'); + lives_and { ok $rsrc = $test_schema->source('MysqlLoaderTest6'); } 'got source for table in database name with dot'; @@ -412,6 +468,11 @@ EOF is keys %uniqs, 2, 'got unique and primary constraint in database name with dot'; + delete $uniqs{primary}; + + is_deeply ((values %uniqs)[0], ['six_id'], + 'unique constraint is correct in database name with dot'); + SKIP: { skip 'set the environment variable DBICTEST_MYSQL_INNODB=1 to test relationships', 4 unless $test_innodb; @@ -444,6 +505,9 @@ EOF if( !$dsn || !$user ) { $tester->skip_tests('You need to set the DBICTEST_MYSQL_DSN, DBICTEST_MYSQL_USER, and DBICTEST_MYSQL_PASS environment variables'); } +elsif (!DBIx::Class::Optional::Dependencies->req_ok_for ('rdbms_mysql')) { + $tester->skip_tests('You need to install ' . DBIx::Class::Optional::Dependencies->req_missing_for ('rdbms_mysql')); +} else { diag $skip_rels_msg if not $test_innodb; $tester->run_tests(); @@ -457,6 +521,7 @@ END { '`dbicsl-test`.mysql_loader_test8', '`dbicsl.test`.mysql_loader_test7', '`dbicsl.test`.mysql_loader_test6', + '`dbicsl.test`.mysql_loader_test5', '`dbicsl-test`.mysql_loader_test5', '`dbicsl-test`.mysql_loader_test4') { try {