dirty_column detection in set_column() should not depend on the (undocumented) return...
[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 => 5;
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 }
46
47 my $v_utf8 = "\x{219}";
48
49 $cd->update ({ title => $v_utf8 });
50 $cd->title($v_utf8);
51 ok( !$cd->is_column_changed('title'), 'column is not dirty after setting the same unicode value' );
52
53 $cd->update ({ title => $v_utf8 });
54 $cd->title('something_else');
55 ok( $cd->is_column_changed('title'), 'column is dirty after setting to something completely different');