X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Finflate%2Fdatetime_firebird.t;h=c68a7622ac8c2d2729438f6bf11790286001dd06;hb=8273e845426f0187b4ad6c4a1b42286fa09a648f;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..c68a762 100644 --- a/t/inflate/datetime_firebird.t +++ b/t/inflate/datetime_firebird.t @@ -1,80 +1,107 @@ use strict; -use warnings; +use warnings; use Test::More; use Test::Exception; +use DBIx::Class::Optional::Dependencies (); 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/}; +my ($dsn2, $user2, $pass2) = @ENV{map { "DBICTEST_FIREBIRD_INTERBASE_${_}" } qw/DSN USER PASS/}; +my ($dsn3, $user3, $pass3) = @ENV{map { "DBICTEST_FIREBIRD_ODBC_${_}" } qw/DSN USER PASS/}; + +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_firebird'), + DBIx::Class::Optional::Dependencies->req_missing_for('test_rdbms_firebird_interbase'), + DBIx::Class::Optional::Dependencies->req_missing_for('test_rdbms_firebird_odbc'))) + unless + DBIx::Class::Optional::Dependencies->req_ok_for ('test_dt') && ( + $dsn && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_firebird') + or + $dsn2 && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_firebird_interbase') + or + $dsn3 && DBIx::Class::Optional::Dependencies->req_ok_for('test_rdbms_firebird_odbc')) + or (not $dsn || $dsn2 || $dsn3); if (not ($dsn || $dsn2)) { plan skip_all => <<'EOF'; -Set $ENV{DBICTEST_FIREBIRD_DSN} and/or $ENV{DBICTEST_FIREBIRD_ODBC_DSN} +Set $ENV{DBICTEST_FIREBIRD_DSN} and/or $ENV{DBICTEST_FIREBIRD_INTERBASE_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'; - } } my @info = ( [ $dsn, $user, $pass ], [ $dsn2, $user2, $pass2 ], + [ $dsn3, $user3, $pass3 ], ); 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(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'; + + is $row->starts_at, $date_only, 'DATE as DateTime roundtrip'; } done_testing; # clean up our mess sub cleanup { - my $dbh; + my $dbh; eval { $schema->storage->disconnect; # to avoid object FOO is in use errors $dbh = $schema->storage->dbh; }; return unless $dbh; - eval { $dbh->do("DROP TABLE $_") } for qw/event/; + eval { $dbh->do(qq{DROP TABLE "$_"}) } for qw/event/; }