oops
[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 => 4;
21     }
22 }
23
24 # DateTime::Format::Oracle needs this set
25 $ENV{NLS_DATE_FORMAT} = 'DD-MON-YY';
26 $ENV{NLS_LANG} = 'AMERICAN_AMERICA.WE8ISO8859P1';
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
35 my $dbh = $schema->storage->dbh;
36
37 eval {
38   $dbh->do("DROP TABLE track");
39 };
40 $dbh->do("CREATE TABLE track (trackid NUMBER(12), cd NUMBER(12), position NUMBER(12), title VARCHAR(255), last_updated_on DATE)");
41
42 # insert a row to play with
43 my $new = $schema->resultset('Track')->create({ trackid => 1, cd => 1, position => 1, title => 'Track1', last_updated_on => '06-MAY-07' });
44 is($new->trackid, 1, "insert sucessful");
45
46 my $track = $schema->resultset('Track')->find( 1 );
47
48 is( ref($track->last_updated_on), 'DateTime', "last_updated_on inflated ok");
49
50 is( $track->last_updated_on->month, 5, "DateTime methods work on inflated column");
51
52 my $dt = DateTime->now();
53 $track->last_updated_on($dt);
54 $track->update;
55
56 is( $track->last_updated_on->month, $dt->month, "deflate ok");
57
58 # clean up our mess
59 END {
60     if($dbh) {
61         $dbh->do("DROP TABLE track");
62     }
63 }
64