X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F91debug.t;h=68e7c57c571741388d94e120d1851d8e9ee89dbc;hb=a04af85f2cb05f73dc56173f5be01aeca6f8a015;hp=2ea101696e020e994b76cf7c7a4dcf21e5c7ca49;hpb=70f3927877ba6b7aac2565bc1933daaf82361308;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/91debug.t b/t/91debug.t index 2ea1016..68e7c57 100644 --- a/t/91debug.t +++ b/t/91debug.t @@ -7,7 +7,7 @@ use DBICTest; my $schema = DBICTest->init_schema(); -plan tests => 5; +plan tests => 6; ok ( $schema->storage->debug(1), 'debug' ); ok ( defined( @@ -18,6 +18,7 @@ ok ( defined( 'debugfh' ); +$schema->storage->debugfh->autoflush(1); my $rs = $schema->resultset('CD')->search({}); $rs->count(); @@ -34,7 +35,6 @@ $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'); @@ -47,4 +47,17 @@ eval { ok($@, 'Died on closed FH'); open(STDERR, '>&STDERRCOPY'); +# test trace output correctness for bind params +{ + my $sql = ''; + $schema->storage->debugcb( sub { $sql = $_[1] } ); + + my @cds = $schema->resultset('CD')->search( { artist => 1, cdid => { -between => [ 1, 3 ] }, } ); + like( + $sql, + qr/\QSELECT me.cdid, me.artist, me.title, me.year FROM cd me WHERE ( artist = ? AND cdid BETWEEN ? AND ? ): '1', '1', '3'\E/, + 'got correct SQL with all bind parameters' + ); +} + 1;