X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Finflate%2Fdatetime_mssql.t;h=ae97a46b11513a2bba6cd595d503012eeb849b33;hb=da89304fa29f8fd18d235d120ccbea7d2cfbecdf;hp=5d4c5a57de7fb2c53961bdc7e4482243d42ea258;hpb=43e06a679829e454e999b89bced59114a7a3e7fb;p=dbsrgits%2FDBIx-Class.git diff --git a/t/inflate/datetime_mssql.t b/t/inflate/datetime_mssql.t index 5d4c5a5..ae97a46 100644 --- a/t/inflate/datetime_mssql.t +++ b/t/inflate/datetime_mssql.t @@ -1,80 +1,186 @@ use strict; -use warnings; +use warnings; use Test::More; use Test::Exception; +use Scope::Guard (); +use Try::Tiny; +use DBIx::Class::Optional::Dependencies (); use lib qw(t/lib); use DBICTest; -my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_ODBC_${_}" } qw/DSN USER PASS/}; +my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_MSSQL_ODBC_${_}" } qw/DSN USER PASS/}; +my ($dsn2, $user2, $pass2) = @ENV{map { "DBICTEST_MSSQL_${_}" } qw/DSN USER PASS/}; +my ($dsn3, $user3, $pass3) = @ENV{map { "DBICTEST_MSSQL_ADO_${_}" } qw/DSN USER PASS/}; -if (not ($dsn && $user)) { - plan skip_all => - 'Set $ENV{DBICTEST_MSSQL_ODBC_DSN}, _USER and _PASS to run this test' . - "\nWarning: This test drops and creates a table called 'track'"; -} else { - eval "use DateTime; use DateTime::Format::Strptime;"; - if ($@) { - plan skip_all => 'needs DateTime and DateTime::Format::Strptime for testing'; - } - else { - plan tests => 4 * 2; # (tests * dt_types) +plan skip_all => 'Test needs ' . + (join ' and ', map { $_ ? $_ : () } + DBIx::Class::Optional::Dependencies->req_missing_for('test_dt'), + (join ' or ', map { $_ ? $_ : () } + DBIx::Class::Optional::Dependencies->req_missing_for('test_rdbms_mssql_odbc'), + DBIx::Class::Optional::Dependencies->req_missing_for('test_rdbms_mssql_sybase'), + DBIx::Class::Optional::Dependencies->req_missing_for('test_rdbms_mssql_ado'))) + unless + DBIx::Class::Optional::Dependencies->req_ok_for ('test_dt') && ( + $dsn && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_mssql_odbc') + or + $dsn2 && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_mssql_sybase') + or + $dsn3 && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_mssql_ado')) + or (not $dsn || $dsn2 || $dsn3); + +# use this if you keep a copy of DBD::Sybase linked to FreeTDS somewhere else +BEGIN { + if (my $lib_dirs = $ENV{DBICTEST_MSSQL_PERL5LIB}) { + unshift @INC, $_ for split /:/, $lib_dirs; } } -my $schema = DBICTest::Schema->clone; - -$schema->connection($dsn, $user, $pass); -$schema->storage->ensure_connected; - -my @dt_types = ( - ['DATETIME', { - year => 2004, - month => 8, - day => 21, - hour => 14, - minute => 36, - second => 48, - nanosecond => 500000000, - }], - ['SMALLDATETIME', { # minute precision - year => 2004, - month => 8, - day => 21, - hour => 14, - minute => 36, - }], +if (not ($dsn || $dsn2 || $dsn3)) { + plan skip_all => + 'Set $ENV{DBICTEST_MSSQL_ODBC_DSN} and/or $ENV{DBICTEST_MSSQL_DSN} and/or ' + .'$ENV{DBICTEST_MSSQL_ADO_DSN} _USER and _PASS to run this test' . + "\nWarning: This test drops and creates tables called 'event_small_dt' and" + ." 'track'."; +} + +DBICTest::Schema->load_classes('EventSmallDT'); + +my @connect_info = ( + [ $dsn, $user, $pass ], + [ $dsn2, $user2, $pass2 ], + [ $dsn3, $user3, $pass3 ], ); -for my $dt_type (@dt_types) { - my ($type, $sample_dt) = @$dt_type; +my $schema; + +SKIP: +for my $connect_info (@connect_info) { + my ($dsn, $user, $pass) = @$connect_info; - eval { $schema->storage->dbh->do("DROP TABLE track") }; + next unless $dsn; + + $schema = DBICTest::Schema->connect($dsn, $user, $pass, { + on_connect_call => 'datetime_setup' + }); + + { + my $w; + local $SIG{__WARN__} = sub { $w = shift }; + $schema->storage->ensure_connected; + if ($w =~ /Your DBD::Sybase is too old to support DBIx::Class::InflateColumn::DateTime/) { + skip "Skipping tests on old DBD::Sybase " . DBD::Sybase->VERSION, 1; + } + } + + my $guard = Scope::Guard->new(sub{ cleanup($schema) }); + + # $^W because DBD::ADO is a piece of crap + try { local $^W = 0; $schema->storage->dbh->do("DROP TABLE track") }; $schema->storage->dbh->do(<<"SQL"); CREATE TABLE track ( trackid INT IDENTITY PRIMARY KEY, cd INT, position INT, - last_updated_on $type, + last_updated_at DATETIME, ) SQL - ok(my $dt = DateTime->new($sample_dt)); - - my $row; - ok( $row = $schema->resultset('Track')->create({ - last_updated_on => $dt, - cd => 1, - })); - ok( $row = $schema->resultset('Track') - ->search({ trackid => $row->trackid }, { select => ['last_updated_on'] }) - ->first + try { local $^W = 0; $schema->storage->dbh->do("DROP TABLE event_small_dt") }; + $schema->storage->dbh->do(<<"SQL"); +CREATE TABLE event_small_dt ( + id INT IDENTITY PRIMARY KEY, + small_dt SMALLDATETIME, +) +SQL + try { local $^W = 0; $schema->storage->dbh->do("DROP TABLE event") }; + $schema->storage->dbh->do(<<"SQL"); +CREATE TABLE event ( + id int IDENTITY(1,1) NOT NULL, + starts_at smalldatetime NULL, + created_on datetime NULL, + varchar_date varchar(20) NULL, + varchar_datetime varchar(20) NULL, + skip_inflation datetime NULL, + ts_without_tz datetime NULL +) +SQL + +# coltype, column, source, pk, create_extra, datehash + my @dt_types = ( + ['DATETIME', + 'last_updated_at', + 'Track', + 'trackid', + { cd => 1 }, + { + year => 2004, + month => 8, + day => 21, + hour => 14, + minute => 36, + second => 48, + nanosecond => 500000000, + }], + ['SMALLDATETIME', # minute precision + 'small_dt', + 'EventSmallDT', + 'id', + {}, + { + year => 2004, + month => 8, + day => 21, + hour => 14, + minute => 36, + }], ); - is( $row->updated_date, $dt, 'DateTime roundtrip' ); + + for my $dt_type (@dt_types) { + my ($type, $col, $source, $pk, $create_extra, $sample_dt) = @$dt_type; + + delete $sample_dt->{nanosecond} if $dsn =~ /:ADO:/; + + ok(my $dt = DateTime->new($sample_dt)); + + my $row; + ok( $row = $schema->resultset($source)->create({ + $col => $dt, + %$create_extra, + })); + ok( $row = $schema->resultset($source) + ->search({ $pk => $row->$pk }, { select => [$col] }) + ->first + ); + is( $row->$col, $dt, "$type roundtrip" ); + + cmp_ok( $row->$col->nanosecond, '==', $sample_dt->{nanosecond}, + 'DateTime fractional portion roundtrip' ) + if exists $sample_dt->{nanosecond}; + } + + # Check for bulk insert SQL_DATE funtimes when using DBD::ODBC and sqlncli + # dbi:ODBC:driver=SQL Server Native Client 10.0;server=10.6.0.9;database=odbctest; + lives_ok { + $schema->resultset('Event')->populate([{ + id => 1, + starts_at => undef, + },{ + id => 2, + starts_at => '2011-03-22', + }]) + } 'populate with datetime does not throw'; + ok ( my $row = $schema->resultset('Event')->find(2), 'SQL_DATE bulk insert check' ); } + +done_testing; + # clean up our mess -END { - if (my $dbh = eval { $schema->storage->_dbh }) { +sub cleanup { + my $schema = shift; + if (my $dbh = eval { $schema->storage->dbh }) { $dbh->do('DROP TABLE track'); + $dbh->do('DROP TABLE event_small_dt'); + $dbh->do('DROP TABLE event'); } }