X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fstorage%2Fdebug.t;h=6d8e94cf89aee57a630658e5b74387c1ceccc962;hb=31399b48;hp=37003baf08bf2f37a3f3dd891e25b982ff9573f7;hpb=f410ea47d00b415ebb9b277be6417d724c9a643f;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/storage/debug.t b/t/storage/debug.t index 37003ba..6d8e94c 100644 --- a/t/storage/debug.t +++ b/t/storage/debug.t @@ -1,5 +1,6 @@ use strict; use warnings; +no warnings 'once'; use Test::More; use Test::Exception; @@ -9,40 +10,53 @@ 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; + # make sure we are testing the vanilla debugger and not ::PrettyPrint $schema->storage->debugobj(DBIx::Class::Storage::Statistics->new); ok ( $schema->storage->debug(1), 'debug' ); -$schema->storage->debugfh(file('t/var/sql.log')->openw); - +$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(); -like($line, qr/^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(); -like($line, qr/^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); dies_ok { - $rs = $schema->resultset('CD')->search({}); - $rs->count(); + $schema->resultset('CD')->search({})->count; } 'Died on closed FH'; open(STDERR, '>&STDERRCOPY');