new config option to DBICTest to let you set an alternative storage type, start on...
[dbsrgits/DBIx-Class.git] / t / 68inflate_has_a.t
1 use strict;
2 use warnings;  
3
4 use Test::More;
5 use lib qw(t/lib);
6 use DBICTest;
7
8 my $schema = DBICTest->init_schema();
9
10 eval { require DateTime };
11 plan skip_all => "Need DateTime for inflation tests" if $@;
12
13 plan tests => 6;
14
15 DBICTest::Schema::CD->load_components(qw/CDBICompat::HasA/);
16
17 DBICTest::Schema::CD->has_a( 'year', 'DateTime',
18       inflate => sub { DateTime->new( year => shift ) },
19       deflate => sub { shift->year }
20 );
21 Class::C3->reinitialize;
22
23 # inflation test
24 my $cd = $schema->resultset("CD")->find(3);
25
26 is( ref($cd->year), 'DateTime', 'year is a DateTime, ok' );
27
28 is( $cd->year->month, 1, 'inflated month ok' );
29
30 # deflate test
31 my $now = DateTime->now;
32 $cd->year( $now );
33 $cd->update;
34
35 ($cd) = $schema->resultset("CD")->search( year => $now->year );
36 is( $cd->year->year, $now->year, 'deflate ok' );
37
38 # re-test using alternate deflate syntax
39 $schema->class("CD")->has_a( 'year', 'DateTime',
40       inflate => sub { DateTime->new( year => shift ) },
41       deflate => 'year'
42 );
43
44 # inflation test
45 $cd = $schema->resultset("CD")->find(3);
46
47 is( ref($cd->year), 'DateTime', 'year is a DateTime, ok' );
48
49 is( $cd->year->month, 1, 'inflated month ok' );
50
51 # deflate test
52 $now = DateTime->now;
53 $cd->year( $now );
54 $cd->update;
55
56 ($cd) = $schema->resultset("CD")->search( year => $now->year );
57 is( $cd->year->year, $now->year, 'deflate ok' );
58