X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F85utf8.t;h=ea630a247c2725699bf80de6bbacc506ebe2c35c;hb=5cbe5b1216f07b5e329f493bd8bdfa5b0aa0f5eb;hp=fd2c0e966483bf6a0b3f9f2bbeea500b93e47122;hpb=cdd254a5c0fcfa5a6ef09a7d9175f7615b3af746;p=dbsrgits%2FDBIx-Class.git diff --git a/t/85utf8.t b/t/85utf8.t index fd2c0e9..ea630a2 100644 --- a/t/85utf8.t +++ b/t/85utf8.t @@ -5,6 +5,7 @@ use Test::More; use Test::Warn; use lib qw(t/lib); use DBICTest; +use DBIC::DebugObj; { package A::Comp; @@ -22,6 +23,7 @@ use DBICTest; warnings_are ( sub { + local $ENV{DBIC_UTF8COLUMNS_OK} = 1; package A::Test1; use base 'DBIx::Class::Core'; __PACKAGE__->load_components(qw(Core +A::Comp Ordered UTF8Columns)); @@ -33,6 +35,20 @@ warnings_are ( 'no spurious warnings issued', ); +warnings_like ( + sub { + package A::Test1Loud; + use base 'DBIx::Class::Core'; + __PACKAGE__->load_components(qw(Core +A::Comp Ordered UTF8Columns)); + __PACKAGE__->load_components(qw(Ordered +A::SubComp Row UTF8Columns Core)); + sub store_column { shift->next::method (@_) }; + 1; + }, + [qr/Use of DBIx::Class::UTF8Columns is strongly discouraged/], + 'issued deprecation warning', +); + + my $test1_mro; my $idx = 0; for (@{mro::get_linear_isa ('A::Test1')} ) { @@ -73,43 +89,30 @@ DBICTest::Schema::CD->load_components('UTF8Columns'); DBICTest::Schema::CD->utf8_columns('title'); Class::C3->reinitialize(); -{ - package DBICTest::UTF8::Debugger; - - use base 'DBIx::Class::Storage::Statistics'; - - __PACKAGE__->mk_group_accessors(simple => 'call_stack'); - - sub query_start { - my $self = shift; - my $sql = shift; - - my @bind = map { substr $_, 1, -1 } (@_); # undo the effect of _fix_bind_params - - $self->call_stack ( [ @{$self->call_stack || [] }, [$sql, @bind] ] ); - $self->next::method ($sql, @_); - } -} - -# there's some weird bug in Test::Builder that spews out wide-character warnings -# without any print taking place -$SIG{__WARN__} = sub { warn $_[0] unless $_[0] =~ /Wide character in print/ }; +# as per http://search.cpan.org/dist/Test-Simple/lib/Test/More.pm#utf8 +binmode (Test::More->builder->$_, ':utf8') for qw/output failure_output todo_output/; my $bytestream_title = my $utf8_title = "weird \x{466} stuff"; utf8::encode($bytestream_title); cmp_ok ($bytestream_title, 'ne', $utf8_title, 'unicode/raw differ (sanity check)'); my $storage = $schema->storage; -$storage->debugobj (DBICTest::UTF8::Debugger->new); -$storage->debugobj->silence (1); +my ($sql, @bind); +my $debugobj = DBIC::DebugObj->new (\$sql, \@bind); +my ($orig_debug, $orig_debugobj) = ($storage->debug, $storage->debugobj); +$storage->debugobj ($debugobj); $storage->debug (1); my $cd = $schema->resultset('CD')->create( { artist => 1, title => $utf8_title, year => '2048' } ); -# bind values are always alphabetically ordered by column, thus [2] -TODO: { +$storage->debugobj ($orig_debugobj); +$storage->debug ($orig_debug); + +# bind values are always alphabetically ordered by column, thus [1] +# the single quotes are an artefact of the debug-system +{ local $TODO = "This has been broken since rev 1191, Mar 2006"; - is ($storage->debugobj->call_stack->[-1][2], $bytestream_title, 'INSERT: raw bytes sent to the database'); + is ($bind[1], "'$bytestream_title'", 'INSERT: raw bytes sent to the database'); } # this should be using the cursor directly, no inflation/processing of any sort @@ -145,8 +148,16 @@ ok(! utf8::is_utf8( $cd->{_column_data}{title} ), 'reloaded utf8-less title' ); $bytestream_title = $utf8_title = "something \x{219} else"; utf8::encode($bytestream_title); + +$storage->debugobj ($debugobj); +$storage->debug (1); + $cd->update ({ title => $utf8_title }); -is ($storage->debugobj->call_stack->[-1][1], $bytestream_title, 'UPDATE: raw bytes sent to the database'); + +$storage->debugobj ($orig_debugobj); +$storage->debug ($orig_debug); + +is ($bind[0], "'$bytestream_title'", 'UPDATE: raw bytes sent to the database'); ($raw_db_title) = $schema->resultset('CD') ->search ($cd->ident_condition) ->get_column('title') @@ -163,7 +174,7 @@ $cd->update ({ title => $utf8_title }); $cd->title('something_else'); ok( $cd->is_column_changed('title'), 'column is dirty after setting to something completely different'); -TODO: { +{ local $TODO = 'There is currently no way to propagate aliases to inflate_result()'; $cd = $schema->resultset('CD')->find ({ title => $utf8_title }, { select => 'title', as => 'name' }); ok (utf8::is_utf8( $cd->get_column ('name') ), 'utf8 flag propagates via as');