X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F93autocast.t;h=95d2b9210f1f128d0dd7b57dfa96dbe4dfe25fe1;hb=fcf32d045;hp=a8375be87fb791780dc8b7828f5d975d777be748;hpb=ce012195f14f1e186f8c91cd0cbc2a11bc9088d7;p=dbsrgits%2FDBIx-Class.git diff --git a/t/93autocast.t b/t/93autocast.t index a8375be..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; @@ -20,7 +21,7 @@ use DBIC::SqlMakerTest; int => undef, # no conversion }; - sub _map_data_type { + sub _native_data_type { return $type_map->{$_[1]}; } } @@ -33,42 +34,62 @@ my $rs = $schema->resultset ('CD')->search ({ 'tracks.last_updated_at' => { '!=', undef }, 'tracks.last_updated_on' => { '<', 2009 }, 'tracks.position' => 4, + 'me.single_track' => \[ '= ?', [ single_track => 1 ] ], }, { join => 'tracks' }); -my $bind = [ [ cdid => 5 ], [ 'tracks.last_updated_on' => 2009 ], [ 'tracks.position' => 4 ] ]; +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 = ? - )', + ', $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 = ? - )', + ', $bind, 'expected sql with casting on', ); +$storage->debugobj ($orig_debugobj); +$storage->debug ($orig_debug); + done_testing;