X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Finflate%2Fdatetime_sybase.t;h=ab641361adf0634666ee4853f5c628b455f020e1;hb=68de943862f06cabd397d2e74d12cd9cdc999779;hp=24d0f07ea5de32cba54d0a4f68c9e24094db0741;hpb=5137d252094eee8572c3a4602d0c7a451bfc2757;p=dbsrgits%2FDBIx-Class.git diff --git a/t/inflate/datetime_sybase.t b/t/inflate/datetime_sybase.t index 24d0f07..ab64136 100644 --- a/t/inflate/datetime_sybase.t +++ b/t/inflate/datetime_sybase.t @@ -1,5 +1,5 @@ use strict; -use warnings; +use warnings; use Test::More; use Test::Exception; @@ -12,26 +12,21 @@ if (not ($dsn && $user)) { plan skip_all => 'Set $ENV{DBICTEST_SYBASE_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::Sybase;"; - if ($@) { - plan skip_all => 'needs DateTime and DateTime::Format::Sybase for testing'; - } - else { - plan tests => (4 * 2 * 2) + 2; # (tests * dt_types * storage_types) + storage_tests - } } +plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_rdbms_ase') + unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_rdbms_ase'); + my @storage_types = ( - 'DBI::Sybase', - 'DBI::Sybase::NoBindVars', + 'DBI::Sybase::ASE', + 'DBI::Sybase::ASE::NoBindVars', ); my $schema; for my $storage_type (@storage_types) { $schema = DBICTest::Schema->clone; - unless ($storage_type eq 'DBI::Sybase') { # autodetect + unless ($storage_type eq 'DBI::Sybase::ASE') { # autodetect $schema->storage_type("::$storage_type"); } $schema->connection($dsn, $user, $pass, { @@ -49,7 +44,7 @@ for my $storage_type (@storage_types) { # minute precision ['SMALLDATETIME', 'small_dt', '2004-08-21T14:36:00.000Z'], ); - + for my $dt_type (@dt_types) { my ($type, $col, $sample_dt) = @$dt_type; @@ -57,9 +52,9 @@ for my $storage_type (@storage_types) { $schema->storage->dbh->do(<<"SQL"); CREATE TABLE track ( trackid INT IDENTITY PRIMARY KEY, - cd INT, - position INT, - $col $type, + cd INT NULL, + position INT NULL, + $col $type NULL ) SQL ok(my $dt = DateTime::Format::Sybase->parse_datetime($sample_dt)); @@ -73,10 +68,39 @@ SQL ->search({ trackid => $row->trackid }, { select => [$col] }) ->first ); - is( $row->$col, $dt, 'DateTime roundtrip' ); + is( $row->$col, $dt, "$type roundtrip" ); + + is( $row->$col->nanosecond, $dt->nanosecond, + 'fractional DateTime portion roundtrip' ) + if $dt->nanosecond > 0; } + + # test a computed datetime column + eval { $schema->storage->dbh->do("DROP TABLE track") }; + $schema->storage->dbh->do(<<"SQL"); +CREATE TABLE track ( + trackid INT IDENTITY PRIMARY KEY, + cd INT NULL, + position INT NULL, + title VARCHAR(100) NULL, + last_updated_on DATETIME NULL, + last_updated_at AS getdate(), + small_dt SMALLDATETIME NULL +) +SQL + + my $now = DateTime->now; + sleep 1; + my $new_row = $schema->resultset('Track')->create({}); + $new_row->discard_changes; + + lives_and { + cmp_ok (($new_row->last_updated_at - $now)->seconds, '>=', 1) + } 'getdate() computed column works'; } +done_testing; + # clean up our mess END { if (my $dbh = eval { $schema->storage->_dbh }) {