Support for saving CLOB and BLOB types in Oracle.
[dbsrgits/DBIx-Class.git] / t / 73oracle_inflate.t
CommitLineData
8f7e044c 1use strict;
2use warnings;
3
4use Test::More;
5use lib qw(t/lib);
6use DBICTest;
7
8my ($dsn, $user, $pass) = @ENV{map { "DBICTEST_ORA_${_}" } qw/DSN USER PASS/};
9
95cbe02e 10if (not ($dsn && $user && $pass)) {
8f7e044c 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}
14else {
95cbe02e 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 }
8f7e044c 22}
23
24# DateTime::Format::Oracle needs this set
25$ENV{NLS_DATE_FORMAT} = 'DD-MON-YY';
26
27my $schema = DBICTest::Schema->connect($dsn, $user, $pass);
28
29# Need to redefine the last_updated_on column
30my $col_metadata = $schema->class('Track')->column_info('last_updated_on');
31$schema->class('Track')->add_column( 'last_updated_on' => {
32 data_type => 'date' });
33
34my $dbh = $schema->storage->dbh;
35
36eval {
37 $dbh->do("DROP TABLE track");
38};
39$dbh->do("CREATE TABLE track (trackid NUMBER(12), cd NUMBER(12), position NUMBER(12), title VARCHAR(255), last_updated_on DATE)");
40
41# insert a row to play with
42my $new = $schema->resultset('Track')->create({ trackid => 1, cd => 1, position => 1, title => 'Track1', last_updated_on => '06-MAY-07' });
43is($new->trackid, 1, "insert sucessful");
44
45my $track = $schema->resultset('Track')->find( 1 );
46
47is( ref($track->last_updated_on), 'DateTime', "last_updated_on inflated ok");
48
49is( $track->last_updated_on->month, 5, "DateTime methods work on inflated column");
50
51my $dt = DateTime->now();
52$track->last_updated_on($dt);
53$track->update;
54
55is( $track->last_updated_on->month, $dt->month, "deflate ok");
56
57# clean up our mess
58END {
8f7e044c 59 if($dbh) {
60 $dbh->do("DROP TABLE track");
61 }
62}
63