new config option to DBICTest to let you set an alternative storage type, start on...
[dbsrgits/DBIx-Class.git] / t / 85utf8.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 if ($] <= 5.008000) {
11
12     eval 'use Encode; 1' or plan skip_all => 'Need Encode run this test';
13
14 } else {
15
16     eval 'use utf8; 1' or plan skip_all => 'Need utf8 run this test';
17 }
18
19 plan tests => 3;
20
21 DBICTest::Schema::CD->load_components('UTF8Columns');
22 DBICTest::Schema::CD->utf8_columns('title');
23 Class::C3->reinitialize();
24
25 my $cd = $schema->resultset('CD')->create( { artist => 1, title => 'øni', year => 'foo' } );
26 my $utf8_char = 'uniuni';
27
28 if ($] <= 5.008000) {
29
30     ok( Encode::is_utf8( $cd->title ), 'got title with utf8 flag' );
31     ok( !Encode::is_utf8( $cd->year ), 'got year without utf8 flag' );
32
33     Encode::_utf8_on($utf8_char);
34     $cd->title($utf8_char);
35     ok( !Encode::is_utf8( $cd->{_column_data}{title} ), 'store utf8-less chars' );
36
37 } else {
38
39     ok( utf8::is_utf8( $cd->title ), 'got title with utf8 flag' );
40     ok( !utf8::is_utf8( $cd->year ), 'got year without utf8 flag' );
41
42     utf8::decode($utf8_char);
43     $cd->title($utf8_char);
44     ok( !utf8::is_utf8( $cd->{_column_data}{title} ), 'store utf8-less chars' );
45 }