X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F93autocast.t;h=95d2b9210f1f128d0dd7b57dfa96dbe4dfe25fe1;hb=992a24f640638601acb795c24af493d789368400;hp=4d9eee0589ec6577b6a4895339a0a31c2d2dbe79;hpb=0bd2c1cdd249ba5866529b8316a1764a07a4871f;p=dbsrgits%2FDBIx-Class.git diff --git a/t/93autocast.t b/t/93autocast.t index 4d9eee0..95d2b92 100644 --- a/t/93autocast.t +++ b/t/93autocast.t @@ -5,6 +5,7 @@ use Test::More; use lib qw(t/lib); use DBICTest; use DBIC::SqlMakerTest; +use DBIC::DebugObj; { # Fake storage driver for sqlite with autocast package DBICTest::SQLite::AutoCast; @@ -33,50 +34,62 @@ my $rs = $schema->resultset ('CD')->search ({ 'tracks.last_updated_at' => { '!=', undef }, 'tracks.last_updated_on' => { '<', 2009 }, 'tracks.position' => 4, - 'tracks.single_track' => \[ '= ?', [ single_track => [1, 2, 3 ] ] ], + 'me.single_track' => \[ '= ?', [ single_track => 1 ] ], }, { join => 'tracks' }); -my $bind = [ - [ cdid => 5 ], - [ 'tracks.last_updated_on' => 2009 ], - [ 'tracks.position' => 4 ], - [ 'single_track' => [ 1, 2, 3] ], -]; +my ($sql, @bind); +my $debugobj = DBIC::DebugObj->new (\$sql, \@bind); +my $storage = $schema->storage; +my ($orig_debug, $orig_debugobj) = ($storage->debug, $storage->debugobj); +$storage->debugobj ($debugobj); +$storage->debug (1); +# the quoting is a debugobj thing, not dbic-internals +my $bind = [ map { "'$_'" } qw/ + 5 1 2009 4 +/]; + +$rs->all; is_same_sql_bind ( - $rs->as_query, - '( + $sql, + \@bind, + ' SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track FROM cd me LEFT JOIN track tracks ON tracks.cd = me.cdid WHERE cdid > ? + AND me.single_track = ? AND tracks.last_updated_at IS NOT NULL AND tracks.last_updated_on < ? AND tracks.position = ? - AND tracks.single_track = ? - )', + ', $bind, 'expected sql with casting off', ); $schema->storage->auto_cast (1); +$rs->all; is_same_sql_bind ( - $rs->as_query, - '( + $sql, + \@bind, + ' SELECT me.cdid, me.artist, me.title, me.year, me.genreid, me.single_track FROM cd me LEFT JOIN track tracks ON tracks.cd = me.cdid WHERE cdid > CAST(? AS INT) + AND me.single_track = CAST(? AS INT) AND tracks.last_updated_at IS NOT NULL - AND tracks.last_updated_on < CAST (? AS yyy) + AND tracks.last_updated_on < CAST (? AS DateTime) AND tracks.position = ? - AND tracks.single_track = CAST(? AS INT) - )', + ', $bind, 'expected sql with casting on', ); +$storage->debugobj ($orig_debugobj); +$storage->debug ($orig_debug); + done_testing;