From: Ash Berlin Date: Mon, 13 Nov 2006 19:48:13 +0000 (+0000) Subject: Seperated out quote tests so that matt can use them for S::A at some point (old X-Git-Tag: v0.07003~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3da841f1cd4418f8f4bfcf56228a06a5feb842aa;p=dbsrgits%2FDBIx-Class.git Seperated out quote tests so that matt can use them for S::A at some point (old test t/19quotes.t) Also includes two failing tests (quoted order by and { select => ['me.*']} attrs). --- diff --git a/t/95sql_maker_quote.t b/t/95sql_maker_quote.t new file mode 100644 index 0000000..dc33199 --- /dev/null +++ b/t/95sql_maker_quote.t @@ -0,0 +1,196 @@ +use strict; +use warnings; + +use Test::More; + + +BEGIN { + eval "use DBD::SQLite"; + plan $@ + ? ( skip_all => 'needs DBD::SQLite for testing' ) + : ( tests => 8 ); +} + +use lib qw(t/lib); + +use_ok('DBICTest'); + +DBICTest->init_schema(); + +my $sql_maker = DBICTest->schema->storage->sql_maker; + +$sql_maker->quote_char('`'); +$sql_maker->name_sep('.'); + +my ($sql,) = $sql_maker->select( + [ + { + 'me' => 'cd' + }, + [ + { + 'artist' => 'artist', + '-join_type' => '' + }, + { + 'artist.artistid' => 'me.artist' + } + ] + ], + [ + { + 'count' => '*' + } + ], + { + 'artist.name' => 'Caterwauler McCrae', + 'me.year' => 2001 + }, + [], + undef, + undef +); + +is($sql, + q/SELECT COUNT( * ) FROM `cd` `me` JOIN `artist` `artist` ON ( `artist`.`artistid` = `me`.`artist` ) WHERE ( `artist`.`name` = ? AND `me`.`year` = ? )/, + 'got correct SQL for count query with quoting'); + +($sql,) = $sql_maker->select( + [ + { + 'me' => 'cd' + } + ], + [ + 'me.cdid', + 'me.artist', + 'me.title', + 'me.year' + ], + undef, + [ + 'year DESC' + ], + undef, + undef +); + +TODO: { + local $TODO = "order_by with quoting needs fixing (ash/castaway)"; + + is($sql, + q/SELECT `me`.`cdid`, `me`.`artist`, `me`.`title`, `me`.`year` FROM `cd` `me` ORDER BY `year` DESC/, + 'quoted ORDER BY with DESC okay'); +} + +TODO: { + local $TODO = "select attr with star needs fixing (mst/nate)"; + + ($sql,) = $sql_maker->select( + [ + { + 'me' => 'cd' + } + ], + [ + 'me.*' + ], + undef, + [], + undef, + undef + ); + + is($sql, q/SELECT `me`.* FROM `cd` `me`/, 'select attr with me.* is right'); +} + +($sql,) = $sql_maker->select( + [ + { + 'me' => 'cd' + } + ], + [ + 'me.cdid', + 'me.artist', + 'me.title', + 'me.year' + ], + undef, + [ + \'year DESC' + ], + undef, + undef +); + +is($sql, + q/SELECT `me`.`cdid`, `me`.`artist`, `me`.`title`, `me`.`year` FROM `cd` `me` ORDER BY year DESC/, + 'did not quote ORDER BY with scalarref'); + +my %data = ( + name => 'Bill', + order => 12 +); + +my @binds; + +($sql,@binds) = $sql_maker->update( + 'group', + { + 'order' => '12', + 'name' => 'Bill' + } +); + +is($sql, + q/UPDATE `group` SET `name` = ?, `order` = ?/, + 'quoted table names for UPDATE'); + +$sql_maker->quote_char([qw/[ ]/]); + +($sql,) = $sql_maker->select( + [ + { + 'me' => 'cd' + }, + [ + { + 'artist' => 'artist', + '-join_type' => '' + }, + { + 'artist.artistid' => 'me.artist' + } + ] + ], + [ + { + 'count' => '*' + } + ], + { + 'artist.name' => 'Caterwauler McCrae', + 'me.year' => 2001 + }, + [], + undef, + undef +); + +is($sql, + q/SELECT COUNT( * ) FROM [cd] [me] JOIN [artist] [artist] ON ( [artist].[artistid] = [me].[artist] ) WHERE ( [artist].[name] = ? AND [me].[year] = ? )/, + 'got correct SQL for count query with bracket quoting'); + + +($sql,@binds) = $sql_maker->update( + 'group', + { + 'order' => '12', + 'name' => 'Bill' + } +); + +is($sql, + q/UPDATE [group] SET [name] = ?, [order] = ?/, + 'bracket quoted table names for UPDATE');