fix MSSQL extra tests
[dbsrgits/DBIx-Class-Schema-Loader.git] / t / 16mssql_common.t
CommitLineData
046e344c 1use strict;
05d322c8 2use warnings;
3a89a69f 3use Test::More;
4use Test::Exception;
05d322c8 5
6# use this if you keep a copy of DBD::Sybase linked to FreeTDS somewhere else
7BEGIN {
8 if (my $lib_dirs = $ENV{DBICTEST_MSSQL_PERL5LIB}) {
9 unshift @INC, $_ for split /:/, $lib_dirs;
10 }
11}
12
046e344c 13use lib qw(t/lib);
14use dbixcsl_common_tests;
15
3a89a69f 16my $dbd_sybase_dsn = $ENV{DBICTEST_MSSQL_DSN} || '';
17my $dbd_sybase_user = $ENV{DBICTEST_MSSQL_USER} || '';
18my $dbd_sybase_password = $ENV{DBICTEST_MSSQL_PASS} || '';
19
20my $odbc_dsn = $ENV{DBICTEST_MSSQL_ODBC_DSN} || '';
21my $odbc_user = $ENV{DBICTEST_MSSQL_ODBC_USER} || '';
22my $odbc_password = $ENV{DBICTEST_MSSQL_ODBC_PASS} || '';
046e344c 23
24my $tester = dbixcsl_common_tests->new(
b1e43108 25 vendor => 'mssql',
046e344c 26 auto_inc_pk => 'INTEGER IDENTITY NOT NULL PRIMARY KEY',
41968729 27 default_function_def => 'DATETIME DEFAULT getdate()',
3a89a69f 28 connect_info => [ ($dbd_sybase_dsn ? {
29 dsn => $dbd_sybase_dsn,
30 user => $dbd_sybase_user,
31 password => $dbd_sybase_password,
32 } : ()),
33 ($odbc_dsn ? {
34 dsn => $odbc_dsn,
35 user => $odbc_user,
36 password => $odbc_password,
37 } : ()),
38 ],
deedd576 39 data_types => {
81ade4d9 40 # http://msdn.microsoft.com/en-us/library/ms187752.aspx
41
42 # numeric types
43 'int identity' => { data_type => 'integer', is_auto_increment => 1 },
44 bigint => { data_type => 'bigint' },
45 int => { data_type => 'integer' },
46 integer => { data_type => 'integer' },
47 smallint => { data_type => 'smallint' },
48 tinyint => { data_type => 'tinyint' },
49 money => { data_type => 'money' },
50 smallmoney => { data_type => 'smallmoney' },
51 bit => { data_type => 'bit' },
52 real => { data_type => 'float', size => 24 },
53 'float(14)' => { data_type => 'float', size => 24 },
54 'float(24)' => { data_type => 'float', size => 24 },
55 'float(25)' => { data_type => 'double precision' },
56 'float(53)' => { data_type => 'double precision' },
57 float => { data_type => 'double precision' },
58 'double precision'
59 => { data_type => 'double precision' },
60 'numeric(6,3)' => { data_type => 'numeric', size => [6,3] },
61 'decimal(6,3)' => { data_type => 'decimal', size => [6,3] },
62 'dec(6,3)' => { data_type => 'decimal', size => [6,3] },
63 numeric => { data_type => 'numeric' },
64 decimal => { data_type => 'decimal' },
65 dec => { data_type => 'decimal' },
66
67 # datetime types
68 date => { data_type => 'date' },
69 datetime => { data_type => 'datetime' },
6e566cc4 70 # test rewriting getdate() to current_timestamp
71 'datetime default getdate()'
72 => { data_type => 'datetime', default_value => \'current_timestamp' },
81ade4d9 73 smalldatetime => { data_type => 'smalldatetime' },
74 time => { data_type => 'time' },
75 'time(0)'=> { data_type => 'time', size => 0 },
76 'time(1)'=> { data_type => 'time', size => 1 },
77 'time(2)'=> { data_type => 'time', size => 2 },
78 'time(3)'=> { data_type => 'time', size => 3 },
79 'time(4)'=> { data_type => 'time', size => 4 },
80 'time(5)'=> { data_type => 'time', size => 5 },
81 'time(6)'=> { data_type => 'time', size => 6 },
82 'time(7)'=> { data_type => 'time' },
83 datetimeoffset => { data_type => 'datetimeoffset' },
84 'datetimeoffset(0)' => { data_type => 'datetimeoffset', size => 0 },
85 'datetimeoffset(1)' => { data_type => 'datetimeoffset', size => 1 },
86 'datetimeoffset(2)' => { data_type => 'datetimeoffset', size => 2 },
87 'datetimeoffset(3)' => { data_type => 'datetimeoffset', size => 3 },
88 'datetimeoffset(4)' => { data_type => 'datetimeoffset', size => 4 },
89 'datetimeoffset(5)' => { data_type => 'datetimeoffset', size => 5 },
90 'datetimeoffset(6)' => { data_type => 'datetimeoffset', size => 6 },
91 'datetimeoffset(7)' => { data_type => 'datetimeoffset' },
92 datetime2 => { data_type => 'datetime2' },
93 'datetime2(0)' => { data_type => 'datetime2', size => 0 },
94 'datetime2(1)' => { data_type => 'datetime2', size => 1 },
95 'datetime2(2)' => { data_type => 'datetime2', size => 2 },
96 'datetime2(3)' => { data_type => 'datetime2', size => 3 },
97 'datetime2(4)' => { data_type => 'datetime2', size => 4 },
98 'datetime2(5)' => { data_type => 'datetime2', size => 5 },
99 'datetime2(6)' => { data_type => 'datetime2', size => 6 },
100 'datetime2(7)' => { data_type => 'datetime2' },
101
102 # string types
103 char => { data_type => 'char', size => 1 },
104 'char(2)' => { data_type => 'char', size => 2 },
105 'varchar(2)' => { data_type => 'varchar', size => 2 },
106 nchar => { data_type => 'nchar', size => 1 },
107 'nchar(2)' => { data_type => 'nchar', size => 2 },
108 'nvarchar(2)' => { data_type => 'nvarchar', size => 2 },
109
110 # binary types
111 'binary(2)' => { data_type => 'binary', size => 2 },
112 'varbinary(2)' => { data_type => 'varbinary', size => 2 },
113
114 # blob types
115 'varchar(max)' => { data_type => 'text' },
116 text => { data_type => 'text' },
117 'nvarchar(max)' => { data_type => 'ntext' },
118 ntext => { data_type => 'ntext' },
119 'varbinary(max)' => { data_type => 'image' },
120 image => { data_type => 'image' },
121
122 # other types
123 timestamp => { data_type => 'timestamp', inflate_datetime => 0 },
16773d6d 124 rowversion => { data_type => 'rowversion' },
81ade4d9 125 uniqueidentifier => { data_type => 'uniqueidentifier' },
126 hierarchyid => { data_type => 'hierarchyid' },
127 sql_variant => { data_type => 'sql_variant' },
128 xml => { data_type => 'xml' },
deedd576 129 },
3a89a69f 130 extra => {
131 create => [
132 q{
133 CREATE TABLE [mssql_loader_test1.dot] (
134 id INT IDENTITY NOT NULL PRIMARY KEY,
135 dat VARCHAR(8)
136 )
137 },
138 q{
139 CREATE TABLE mssql_loader_test3 (
140 id INT IDENTITY NOT NULL PRIMARY KEY
141 )
142 },
143 q{
144 CREATE VIEW mssql_loader_test4 AS
145 SELECT * FROM mssql_loader_test3
146 },
020f3c3a 147 # test capitalization of cols in unique constraints and rels
ccce0e82 148 q{ SET QUOTED_IDENTIFIER ON },
149 q{ SET ANSI_NULLS ON },
deedd576 150 q{
020f3c3a 151 CREATE TABLE [MSSQL_Loader_Test5] (
152 [Id] INT IDENTITY NOT NULL PRIMARY KEY,
ccce0e82 153 [FooCol] INT NOT NULL,
154 [BarCol] INT NOT NULL,
155 UNIQUE ([FooCol], [BarCol])
deedd576 156 )
157 },
020f3c3a 158 q{
159 CREATE TABLE [MSSQL_Loader_Test6] (
160 [Five_Id] INT REFERENCES [MSSQL_Loader_Test5] ([Id])
161 )
162 },
3a89a69f 163 ],
164 pre_drop_ddl => [
165 'CREATE TABLE mssql_loader_test3 (id INT IDENTITY NOT NULL PRIMARY KEY)',
166 'DROP VIEW mssql_loader_test4',
167 ],
168 drop => [
169 '[mssql_loader_test1.dot]',
deedd576 170 'mssql_loader_test3',
060f5ecd 171 'MSSQL_Loader_Test6',
172 'MSSQL_Loader_Test5',
3a89a69f 173 ],
bfb43060 174 count => 10,
3a89a69f 175 run => sub {
176 my ($schema, $monikers, $classes) = @_;
177
178# Test that the table above (with '.' in name) gets loaded correctly.
179 ok((my $rs = eval {
180 $schema->resultset($monikers->{'[mssql_loader_test1.dot]'}) }),
181 'got a resultset for table with dot in name');
182
183 ok((my $from = eval { $rs->result_source->from }),
184 'got an $rsrc->from for table with dot in name');
185
186 is ref($from), 'SCALAR', '->table with dot in name is a scalar ref';
187
188 is eval { $$from }, "[mssql_loader_test1.dot]",
189 '->table with dot in name has correct name';
190
deedd576 191# Test capitalization of columns and unique constraints
192 ok ((my $rsrc = $schema->resultset($monikers->{mssql_loader_test5})->result_source),
193 'got result_source');
194
bc1cb85e 195 if ($schema->_loader->preserve_case) {
060f5ecd 196 is_deeply [ $rsrc->columns ], [qw/Id FooCol BarCol/],
197 'column name case is preserved with case-sensitive collation';
020f3c3a 198
060f5ecd 199 my %uniqs = $rsrc->unique_constraints;
200 delete $uniqs{primary};
3a89a69f 201
060f5ecd 202 is_deeply ((values %uniqs)[0], [qw/FooCol BarCol/],
203 'column name case is preserved in unique constraint with case-sensitive collation');
204 }
205 else {
206 is_deeply [ $rsrc->columns ], [qw/id foocol barcol/],
207 'column names are lowercased for case-insensitive collation';
208
209 my %uniqs = $rsrc->unique_constraints;
210 delete $uniqs{primary};
3a89a69f 211
060f5ecd 212 is_deeply ((values %uniqs)[0], [qw/foocol barcol/],
213 'columns in unique constraint lowercased for case-insensitive collation');
214 }
3a89a69f 215
020f3c3a 216 lives_and {
060f5ecd 217 my $five_row = $schema->resultset($monikers->{mssql_loader_test5})->new_result({});
16773d6d 218
219 if ($schema->_loader->preserve_case) {
220 $five_row->foo_col(1);
221 $five_row->bar_col(2);
222 }
223 else {
224 $five_row->foocol(1);
225 $five_row->barcol(2);
226 }
060f5ecd 227 $five_row->insert;
228
16773d6d 229 my $six_row = $five_row->create_related('mssql_loader_test6s', {});
020f3c3a 230
231 is $six_row->five->id, 1;
232 } 'relationships for mixed-case tables/columns detected';
233
3a89a69f 234# Test that a bad view (where underlying table is gone) is ignored.
235 my $dbh = $schema->storage->dbh;
236 $dbh->do("DROP TABLE mssql_loader_test3");
237
238 my @warnings;
239 {
240 local $SIG{__WARN__} = sub { push @warnings, $_[0] };
241 $schema->rescan;
242 }
243 ok ((grep /^Bad table or view 'mssql_loader_test4'/, @warnings),
244 'bad view ignored');
245
246 throws_ok {
247 $schema->resultset($monikers->{mssql_loader_test4})
248 } qr/Can't find source/,
249 'no source registered for bad view';
250 },
251 },
046e344c 252);
253
3a89a69f 254if(not ($dbd_sybase_dsn || $odbc_dsn)) {
255 $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');
046e344c 256}
257else {
258 $tester->run_tests();
259}
060f5ecd 260# vim:et sts=4 sw=4 tw=0: