Fix UTF8Column out of order loading warning
[dbsrgits/DBIx-Class.git] / t / 85utf8.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use Test::Warn;
6 use lib qw(t/lib);
7 use DBICTest;
8
9 {
10   package A::Comp;
11   use base 'DBIx::Class';
12   sub store_column { shift->next::method (@_) };
13   1;
14 }
15
16 {
17   package A::SubComp;
18   use base 'A::Comp';
19   1;
20 }
21
22 warnings_like (
23   sub {
24     package A::Test;
25     use base 'DBIx::Class::Core';
26     __PACKAGE__->load_components(qw(UTF8Columns +A::SubComp +A::Comp));
27     1;
28   },
29   [qr/Incorrect loading order of DBIx::Class::UTF8Columns.+affect other components overriding store_column \(A::Comp\)/],
30   'incorrect order warning issued',
31 );
32
33 warnings_are (
34   sub {
35     package A::Test2;
36     use base 'DBIx::Class::Core';
37     __PACKAGE__->load_components(qw(Core +A::Comp Ordered UTF8Columns));
38     __PACKAGE__->load_components(qw(Ordered +A::Comp Row UTF8Columns Core));
39     1;
40   },
41   [],
42   'no spurious warnings issued',
43 );
44
45 my $test2_mro;
46 my $idx = 0;
47 for (@{mro::get_linear_isa ('A::Test2')} ) {
48   $test2_mro->{$_} = $idx++;
49 }
50
51 cmp_ok ($test2_mro->{'A::Comp'}, '<', $test2_mro->{'DBIx::Class::UTF8Columns'}, 'mro of Test2 correct (A::Comp before UTF8Col)' );
52 cmp_ok ($test2_mro->{'DBIx::Class::UTF8Columns'}, '<', $test2_mro->{'DBIx::Class::Core'}, 'mro of Test2 correct (UTF8Col before Core)' );
53 cmp_ok ($test2_mro->{'DBIx::Class::Core'}, '<', $test2_mro->{'DBIx::Class::Row'}, 'mro of Test2 correct (Core before Row)' );
54
55 my $schema = DBICTest->init_schema();
56 DBICTest::Schema::CD->load_components('UTF8Columns');
57 DBICTest::Schema::CD->utf8_columns('title');
58 Class::C3->reinitialize();
59
60 my $cd = $schema->resultset('CD')->create( { artist => 1, title => "weird\x{466}stuff", year => '2048' } );
61
62 ok( utf8::is_utf8( $cd->title ), 'got title with utf8 flag' );
63 ok(! utf8::is_utf8( $cd->{_column_data}{title} ), 'store title without utf8' );
64
65 ok(! utf8::is_utf8( $cd->year ), 'got year without utf8 flag' );
66 ok(! utf8::is_utf8( $cd->{_column_data}{year} ), 'store year without utf8' );
67
68 $cd->title('nonunicode');
69 ok(! utf8::is_utf8( $cd->title ), 'got title without utf8 flag' );
70 ok(! utf8::is_utf8( $cd->{_column_data}{title} ), 'store utf8-less chars' );
71
72
73 my $v_utf8 = "\x{219}";
74
75 $cd->update ({ title => $v_utf8 });
76 $cd->title($v_utf8);
77 ok( !$cd->is_column_changed('title'), 'column is not dirty after setting the same unicode value' );
78
79 $cd->update ({ title => $v_utf8 });
80 $cd->title('something_else');
81 ok( $cd->is_column_changed('title'), 'column is dirty after setting to something completely different');
82
83 TODO: {
84   local $TODO = 'There is currently no way to propagate aliases to inflate_result()';
85   $cd = $schema->resultset('CD')->find ({ title => $v_utf8 }, { select => 'title', as => 'name' });
86   ok (utf8::is_utf8( $cd->get_column ('name') ), 'utf8 flag propagates via as');
87 }
88
89 done_testing;