X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F91debug.t;h=5b5514beed886450daec1070f9aaf84193df0952;hb=d4483998dff1af8eff35b3c5398f564a9a1fb9d8;hp=4f9d1d9e8312413a7c15569b4f60c99af55ac863;hpb=004d31fb32adad68450ac2fc836430b2b0d2cc83;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/91debug.t b/t/91debug.t index 4f9d1d9..5b5514b 100644 --- a/t/91debug.t +++ b/t/91debug.t @@ -4,10 +4,12 @@ use warnings; use Test::More; use lib qw(t/lib); use DBICTest; +use DBIC::DebugObj; +use DBIC::SqlMakerTest; my $schema = DBICTest->init_schema(); -plan tests => 2; +plan tests => 7; ok ( $schema->storage->debug(1), 'debug' ); ok ( defined( @@ -18,4 +20,55 @@ ok ( defined( 'debugfh' ); +$schema->storage->debugfh->autoflush(1); +my $rs = $schema->resultset('CD')->search({}); +$rs->count(); + +my $log = new IO::File('t/var/sql.log', 'r') or die($!); +my $line = <$log>; +$log->close(); +ok($line =~ /^SELECT COUNT/, 'Log success'); + +$schema->storage->debugfh(undef); +$ENV{'DBIC_TRACE'} = '=t/var/foo.log'; +$rs = $schema->resultset('CD')->search({}); +$rs->count(); +$log = new IO::File('t/var/foo.log', 'r') or die($!); +$line = <$log>; +$log->close(); +ok($line =~ /^SELECT COUNT/, 'Log success'); +$schema->storage->debugobj->debugfh(undef); +delete($ENV{'DBIC_TRACE'}); +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'); +open(STDERR, '>&STDERRCOPY'); + +# test trace output correctness for bind params +{ + my ($sql, @bind) = (''); + $schema->storage->debugcb( sub { $sql = $_[1] } ); + + my @cds = $schema->resultset('CD')->search( { artist => 1, cdid => { -between => [ 1, 3 ] }, } ); + is_same_sql_bind( + $sql, [], + "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 (debugcb)' + ); + + $schema->storage->debugcb(undef); + $schema->storage->debugobj(DBIC::DebugObj->new(\$sql, \@bind)); + @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)' + ); +} + 1;