X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Finflate%2Fdatetime_firebird.t;h=572fc4eb1da952b5323836e50f2cf6cfa0d1e8f0;hb=68de943862f06cabd397d2e74d12cd9cdc999779;hp=9212f37ac563e98c1e8fd75d4abaf86999c30d2b;hpb=9cd0b325352c34448af2630f6cfdf3ada060bfba;p=dbsrgits%2FDBIx-Class.git diff --git a/t/inflate/datetime_firebird.t b/t/inflate/datetime_firebird.t index 9212f37..572fc4e 100644 --- a/t/inflate/datetime_firebird.t +++ b/t/inflate/datetime_firebird.t @@ -1,5 +1,5 @@ use strict; -use warnings; +use warnings; use Test::More; use Test::Exception; @@ -7,8 +7,6 @@ use lib qw(t/lib); use DBICTest; use Scope::Guard (); -# XXX we're only testing TIMESTAMP here - my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_FIREBIRD_${_}" } qw/DSN USER PASS/}; my ($dsn2, $user2, $pass2) = @ENV{map { "DBICTEST_FIREBIRD_ODBC_${_}" } qw/DSN USER PASS/}; @@ -18,13 +16,11 @@ Set $ENV{DBICTEST_FIREBIRD_DSN} and/or $ENV{DBICTEST_FIREBIRD_ODBC_DSN} _USER and _PASS to run this test'. Warning: This test drops and creates a table called 'event'"; EOF -} else { - eval "use DateTime; use DateTime::Format::Strptime;"; - if ($@) { - plan skip_all => 'needs DateTime and DateTime::Format::Strptime for testing'; - } } +plan skip_all => 'Test needs ' . DBIx::Class::Optional::Dependencies->req_missing_for ('test_dt') + unless DBIx::Class::Optional::Dependencies->req_ok_for ('test_dt'); + my @info = ( [ $dsn, $user, $pass ], [ $dsn2, $user2, $pass2 ], @@ -32,37 +28,51 @@ my @info = ( my $schema; -foreach my $info (@info) { - my ($dsn, $user, $pass) = @$info; +foreach my $conn_idx (0..$#info) { + my ($dsn, $user, $pass) = @{ $info[$conn_idx] || [] }; next unless $dsn; - $schema = DBICTest::Schema->clone; - - $schema->connection($dsn, $user, $pass, { + $schema = DBICTest::Schema->connect($dsn, $user, $pass, { + quote_char => '"', + name_sep => '.', on_connect_call => [ 'datetime_setup' ], }); my $sg = Scope::Guard->new(\&cleanup); - eval { $schema->storage->dbh->do("DROP TABLE event") }; - $schema->storage->dbh->do(<<"SQL"); - CREATE TABLE event ( - id INT PRIMARY KEY, - created_on TIMESTAMP + eval { $schema->storage->dbh->do('DROP TABLE "event"') }; + $schema->storage->dbh->do(<<'SQL'); + CREATE TABLE "event" ( + "id" INT PRIMARY KEY, + "starts_at" DATE, + "created_on" TIMESTAMP ) SQL - my $now = DateTime->now; + my $rs = $schema->resultset('Event'); + + my $dt = DateTime->now; + $dt->set_nanosecond($dsn =~ /odbc/i ? 0 : 555600000); + + my $date_only = DateTime->new( + year => $dt->year, month => $dt->month, day => $dt->day + ); + my $row; - ok( $row = $schema->resultset('Event')->create({ - id => 1, - created_on => $now, - })); - ok( $row = $schema->resultset('Event') - ->search({ id => 1 }, { select => ['created_on'] }) + ok( $row = $rs->create({ + id => 1, + starts_at => $date_only, + created_on => $dt, + })); + ok( $row = $rs->search({ id => 1 }, { select => [qw/starts_at created_on/] }) ->first ); - is( $row->created_on, $now, 'DateTime roundtrip' ); + is $row->created_on, $dt, 'TIMESTAMP as DateTime roundtrip'; + + cmp_ok $row->created_on->nanosecond, '==', $dt->nanosecond, + 'fractional part of a second survived' if 0+$dt->nanosecond; + + is $row->starts_at, $date_only, 'DATE as DateTime roundtrip'; } done_testing; @@ -76,5 +86,5 @@ sub cleanup { }; return unless $dbh; - eval { $dbh->do("DROP TABLE $_") } for qw/event/; + eval { $dbh->do(qq{DROP TABLE "$_"}) } for qw/event/; }