X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F91debug.t;h=5b5514beed886450daec1070f9aaf84193df0952;hb=d759a1ee6f8a74f6439ad1f4fb52c2fe571c48b1;hp=e53a1d5c5aeaf79d1b10da6a9b056ce9cc7c39d1;hpb=a1cb5921a914f087163914b010ca0c4e72a57dcc;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/91debug.t b/t/91debug.t index e53a1d5..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 => 6; +plan tests => 7; ok ( $schema->storage->debug(1), 'debug' ); ok ( defined( @@ -49,14 +51,23 @@ open(STDERR, '>&STDERRCOPY'); # test trace output correctness for bind params { - my $sql = ''; + my ($sql, @bind) = (''); $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, me.genreid, me.single_track FROM cd me WHERE ( artist = ? AND cdid BETWEEN ? AND ? ): '1', '1', '3'\E/, - 'got correct SQL with all bind parameters' + 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)' ); }