Remove redundant var
[dbsrgits/DBIx-Class.git] / t / 73oracle_inflate.t
1 use strict;
2 use warnings;  
3
4 use Test::More;
5 use lib qw(t/lib);
6 use DBICTest;
7
8 my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_ORA_${_}" } qw/DSN USER PASS/};
9
10 if (not ($dsn && $user && $pass)) {
11     plan skip_all => 'Set $ENV{DBICTEST_ORA_DSN}, _USER and _PASS to run this test. ' .
12          'Warning: This test drops and creates a table called \'track\'';
13 }
14 else {
15     eval "use DateTime; use DateTime::Format::Oracle;";
16     if ($@) {
17         plan skip_all => 'needs DateTime and DateTime::Format::Oracle for testing';
18     }
19     else {
20         plan tests => 7;
21     }
22 }
23
24 # DateTime::Format::Oracle needs this set
25 $ENV{NLS_DATE_FORMAT} = 'DD-MON-YY';
26 $ENV{NLS_TIMESTAMP_FORMAT} = 'YYYY-MM-DD HH24:MI:SSXFF';
27
28 my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
29
30 # Need to redefine the last_updated_on column
31 my $col_metadata = $schema->class('Track')->column_info('last_updated_on');
32 $schema->class('Track')->add_column( 'last_updated_on' => {
33     data_type => 'date' });
34 $schema->class('Track')->add_column( 'last_updated_at' => {
35     data_type => 'timestamp' });
36
37 my $dbh = $schema->storage->dbh;
38
39 #$dbh->do("alter session set nls_timestamp_format = 'YYYY-MM-DD HH24:MI:SSXFF'");
40
41 eval {
42   $dbh->do("DROP TABLE track");
43 };
44 $dbh->do("CREATE TABLE track (trackid NUMBER(12), cd NUMBER(12), position NUMBER(12), title VARCHAR(255), last_updated_on DATE, last_updated_at TIMESTAMP)");
45
46 # insert a row to play with
47 my $new = $schema->resultset('Track')->create({ trackid => 1, cd => 1, position => 1, title => 'Track1', last_updated_on => '06-MAY-07', last_updated_at => '2009-05-03 21:17:18.5' });
48 is($new->trackid, 1, "insert sucessful");
49
50 my $track = $schema->resultset('Track')->find( 1 );
51
52 is( ref($track->last_updated_on), 'DateTime', "last_updated_on inflated ok");
53
54 is( $track->last_updated_on->month, 5, "DateTime methods work on inflated column");
55
56 #note '$track->last_updated_at => ', $track->last_updated_at;
57 is( ref($track->last_updated_at), 'DateTime', "last_updated_at inflated ok");
58
59 is( $track->last_updated_at->nanosecond, 500_000_000, "DateTime methods work with nanosecond precision");
60
61 my $dt = DateTime->now();
62 $track->last_updated_on($dt);
63 $track->last_updated_at($dt);
64 $track->update;
65
66 is( $track->last_updated_on->month, $dt->month, "deflate ok");
67 is( int $track->last_updated_at->nanosecond, int $dt->nanosecond, "deflate ok with nanosecond precision");
68
69 # clean up our mess
70 END {
71     if($dbh) {
72         $dbh->do("DROP TABLE track");
73     }
74 }
75