X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fstorage%2Fdebug.t;h=514b43bd73649fced735887f0d433c5ce645a9d8;hb=2cfc22ddff9cb35524031dfc9d429d294b5e3d6e;hp=480ad6e06876c71a04a6ab47db5dd462ddb73a66;hpb=9f6555d31bc48b6fa3792f74368fc1f17f77ea60;p=dbsrgits%2FDBIx-Class.git diff --git a/t/storage/debug.t b/t/storage/debug.t index 480ad6e..514b43b 100644 --- a/t/storage/debug.t +++ b/t/storage/debug.t @@ -1,67 +1,105 @@ use strict; -use warnings; +use warnings; +no warnings 'once'; use Test::More; +use Test::Exception; use lib qw(t/lib); use DBICTest; -use DBIC::DebugObj; use DBIC::SqlMakerTest; use Path::Class qw/file/; +BEGIN { delete @ENV{qw(DBIC_TRACE DBIC_TRACE_PROFILE DBICTEST_SQLITE_USE_FILE)} } + my $schema = DBICTest->init_schema(); +my $lfn = file("t/var/sql-$$.log"); +unlink $lfn or die $! + if -e $lfn; -ok ( $schema->storage->debug(1), 'debug' ); -$schema->storage->debugfh(file('t/var/sql.log')->openw); +# make sure we are testing the vanilla debugger and not ::PrettyPrint +require DBIx::Class::Storage::Statistics; +$schema->storage->debugobj(DBIx::Class::Storage::Statistics->new); +ok ( $schema->storage->debug(1), 'debug' ); +$schema->storage->debugfh($lfn->openw); $schema->storage->debugfh->autoflush(1); -my $rs = $schema->resultset('CD')->search({}); -$rs->count(); +$schema->resultset('CD')->count; -my $log = file('t/var/sql.log')->openr; -my $line = <$log>; -$log->close(); -ok($line =~ /^SELECT COUNT/, 'Log success'); +my @loglines = $lfn->slurp; +is (@loglines, 1, 'one line of log'); +like($loglines[0], qr/^SELECT COUNT/, 'File log via debugfh success'); $schema->storage->debugfh(undef); -$ENV{'DBIC_TRACE'} = '=t/var/foo.log'; -$rs = $schema->resultset('CD')->search({}); -$rs->count(); -$log = file('t/var/foo.log')->openr; -$line = <$log>; -$log->close(); -ok($line =~ /^SELECT COUNT/, 'Log success'); -$schema->storage->debugobj->debugfh(undef); -delete($ENV{'DBIC_TRACE'}); + +{ + local $ENV{DBIC_TRACE} = "=$lfn"; + unlink $lfn; + + $schema->resultset('CD')->count; + + my $schema2 = DBICTest->init_schema(no_deploy => 1); + $schema2->storage->_do_query('SELECT 1'); # _do_query() logs via standard mechanisms + + my @loglines = $lfn->slurp; + is(@loglines, 2, '2 lines of log'); + like($loglines[0], qr/^SELECT COUNT/, 'Env log from schema1 success'); + like($loglines[1], qr/^SELECT 1:/, 'Env log from schema2 success'); + + $schema->storage->debugobj->debugfh(undef) +} + +END { + unlink $lfn; +} + open(STDERRCOPY, '>&STDERR'); -stat(STDERRCOPY); # nop to get warnings quiet close(STDERR); -eval { - $rs = $schema->resultset('CD')->search({}); - $rs->count(); -}; -ok($@, 'Died on closed FH'); +dies_ok { + $schema->resultset('CD')->search({})->count; +} 'Died on closed FH'; + open(STDERR, '>&STDERRCOPY'); -# test trace output correctness for bind params +# test debugcb and debugobj protocol { - my ($sql, @bind); - $schema->storage->debugobj(DBIC::DebugObj->new(\$sql, \@bind)); - - my @cds = $schema->resultset('CD')->search( { artist => 1, cdid => { -between => [ 1, 3 ] }, } ); - is_same_sql_bind( - $sql, \@bind, - "SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track FROM cd me WHERE ( artist = ? AND (cdid BETWEEN ? AND ?) ): '1', '1', '3'", - [qw/'1' '1' '3'/], - 'got correct SQL with all bind parameters (debugcb)' - ); - - @cds = $schema->resultset('CD')->search( { artist => 1, cdid => { -between => [ 1, 3 ] }, } ); - is_same_sql_bind( - $sql, \@bind, - "SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track FROM cd me WHERE ( artist = ? AND (cdid BETWEEN ? AND ?) )", ["'1'", "'1'", "'3'"], - 'got correct SQL with all bind parameters (debugobj)' - ); + my $rs = $schema->resultset('CD')->search( { + artist => 1, + cdid => { -between => [ 1, 3 ] }, + title => { '!=' => \[ '?', undef ] } + }); + + my $sql_trace = 'SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track FROM cd me WHERE ( ( artist = ? AND ( cdid BETWEEN ? AND ? ) AND title != ? ) )'; + my @bind_trace = qw( '1' '1' '3' NULL ); # quotes are in fact part of the trace + + + my @args; + $schema->storage->debugcb(sub { push @args, @_ } ); + + $rs->all; + + is_deeply( \@args, [ + "SELECT", + sprintf( "%s: %s\n", $sql_trace, join ', ', @bind_trace ), + ]); + + { + package DBICTest::DebugObj; + our @ISA = 'DBIx::Class::Storage::Statistics'; + + sub query_start { + my $self = shift; + ( $self->{_traced_sql}, @{$self->{_traced_bind}} ) = @_; + } + } + + my $do = $schema->storage->debugobj(DBICTest::DebugObj->new); + + $rs->all; + + is( $do->{_traced_sql}, $sql_trace ); + + is_deeply ( $do->{_traced_bind}, \@bind_trace ); } done_testing;