suppress 'bad table' warnings for filtered tables, preserve case of MSSQL table names
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 16mssql_common.t
index 9cafbe5..7c2d37f 100644 (file)
@@ -1,5 +1,7 @@
 use strict;
 use warnings;
+use Test::More;
+use Test::Exception;
 
 # use this if you keep a copy of DBD::Sybase linked to FreeTDS somewhere else
 BEGIN {
@@ -11,20 +13,140 @@ BEGIN {
 use lib qw(t/lib);
 use dbixcsl_common_tests;
 
-my $dsn      = $ENV{DBICTEST_MSSQL_DSN} || '';
-my $user     = $ENV{DBICTEST_MSSQL_USER} || '';
-my $password = $ENV{DBICTEST_MSSQL_PASS} || '';
+my $dbd_sybase_dsn      = $ENV{DBICTEST_MSSQL_DSN} || '';
+my $dbd_sybase_user     = $ENV{DBICTEST_MSSQL_USER} || '';
+my $dbd_sybase_password = $ENV{DBICTEST_MSSQL_PASS} || '';
+
+my $odbc_dsn      = $ENV{DBICTEST_MSSQL_ODBC_DSN} || '';
+my $odbc_user     = $ENV{DBICTEST_MSSQL_ODBC_USER} || '';
+my $odbc_password = $ENV{DBICTEST_MSSQL_ODBC_PASS} || '';
 
 my $tester = dbixcsl_common_tests->new(
-    vendor      => 'Microsoft',
+    vendor      => 'mssql',
     auto_inc_pk => 'INTEGER IDENTITY NOT NULL PRIMARY KEY',
-    dsn         => $dsn,
-    user        => $user,
-    password    => $password,
+    default_function     => 'getdate()',
+    default_function_def => 'DATETIME DEFAULT getdate()',
+    connect_info => [ ($dbd_sybase_dsn ? {
+            dsn         => $dbd_sybase_dsn,
+            user        => $dbd_sybase_user,
+            password    => $dbd_sybase_password,
+        } : ()),
+        ($odbc_dsn ? {
+            dsn         => $odbc_dsn,
+            user        => $odbc_user,
+            password    => $odbc_password,
+        } : ()),
+    ],
+    data_types => {
+        'int identity' => { data_type => 'int', is_auto_increment => 1 },
+    },
+    extra => {
+        create => [
+            q{
+                CREATE TABLE [mssql_loader_test1.dot] (
+                    id INT IDENTITY NOT NULL PRIMARY KEY,
+                    dat VARCHAR(8)
+                )
+            },
+            q{
+                CREATE TABLE mssql_loader_test3 (
+                    id INT IDENTITY NOT NULL PRIMARY KEY
+                )
+            },
+            q{
+                CREATE VIEW mssql_loader_test4 AS
+                SELECT * FROM mssql_loader_test3
+            },
+            # test capitalization of cols in unique constraints and rels
+            q{ SET QUOTED_IDENTIFIER ON },
+            q{ SET ANSI_NULLS ON },
+            q{
+                CREATE TABLE [MSSQL_Loader_Test5] (
+                    [Id] INT IDENTITY NOT NULL PRIMARY KEY,
+                    [FooCol] INT NOT NULL,
+                    [BarCol] INT NOT NULL,
+                    UNIQUE ([FooCol], [BarCol])
+                )
+            },
+            q{
+                CREATE TABLE [MSSQL_Loader_Test6] (
+                    [Five_Id] INT REFERENCES [MSSQL_Loader_Test5] ([Id])
+                )
+            },
+        ],
+        pre_drop_ddl => [
+            'CREATE TABLE mssql_loader_test3 (id INT IDENTITY NOT NULL PRIMARY KEY)',
+            'DROP VIEW mssql_loader_test4',
+        ],
+        drop   => [
+            '[mssql_loader_test1.dot]',
+            'mssql_loader_test3',
+            'mssql_loader_test5',
+            'mssql_loader_test6',
+        ],
+        count  => 10,
+        run    => sub {
+            my ($schema, $monikers, $classes) = @_;
+
+# Test that the table above (with '.' in name) gets loaded correctly.
+            ok((my $rs = eval {
+                $schema->resultset($monikers->{'[mssql_loader_test1.dot]'}) }),
+                'got a resultset for table with dot in name');
+
+            ok((my $from = eval { $rs->result_source->from }),
+                'got an $rsrc->from for table with dot in name');
+
+            is ref($from), 'SCALAR', '->table with dot in name is a scalar ref';
+
+            is eval { $$from }, "[mssql_loader_test1.dot]",
+                '->table with dot in name has correct name';
+
+# Test capitalization of columns and unique constraints
+            ok ((my $rsrc = $schema->resultset($monikers->{mssql_loader_test5})->result_source),
+                'got result_source');
+
+## not anymore
+#            is $rsrc->name, 'mssql_loader_test5',
+#                'table name is lowercased';
+
+            is_deeply [ $rsrc->columns ], [qw/id foocol barcol/],
+                'column names are lowercased';
+
+            my %uniqs = $rsrc->unique_constraints;
+            delete $uniqs{primary};
+
+            is_deeply ((values %uniqs)[0], [qw/foocol barcol/],
+                'columns in unique constraint lowercased');
+
+            lives_and {
+                my $five_row = $schema->resultset($monikers->{mssql_loader_test5})->create({ foocol => 1, barcol => 2 });
+                my $six_row  = $five_row->create_related('mssql_loader_test6s', {});
+
+                is $six_row->five->id, 1;
+            } 'relationships for mixed-case tables/columns detected';
+
+# Test that a bad view (where underlying table is gone) is ignored.
+            my $dbh = $schema->storage->dbh;
+            $dbh->do("DROP TABLE mssql_loader_test3");
+
+            my @warnings;
+            {
+                local $SIG{__WARN__} = sub { push @warnings, $_[0] };
+                $schema->rescan;
+            }
+            ok ((grep /^Bad table or view 'mssql_loader_test4'/, @warnings),
+                'bad view ignored');
+
+            throws_ok {
+                $schema->resultset($monikers->{mssql_loader_test4})
+            } qr/Can't find source/,
+                'no source registered for bad view';
+        },
+    },
 );
 
-if( !$dsn || !$user ) {
-    $tester->skip_tests('You need to set the DBICTEST_MSSQL_DSN, _USER, and _PASS environment variables');
+if(not ($dbd_sybase_dsn || $odbc_dsn)) {
+    $tester->skip_tests('You need to set the DBICTEST_MSSQL_DSN, _USER and _PASS and/or the DBICTEST_MSSQL_ODBC_DSN, _USER and _PASS environment variables');
 }
 else {
     $tester->run_tests();