>table(\"foo") now works
[dbsrgits/DBIx-Class-Historic.git] / t / 19quotes_newstyle.t
CommitLineData
2cc3a7be 1use strict;
2use warnings;
3
4use Test::More;
5use IO::File;
c61a0748 6
7use lib qw(t/lib);
949172b0 8use DBIC::SqlMakerTest;
2cc3a7be 9
10BEGIN {
11 eval "use DBD::SQLite";
12 plan $@
13 ? ( skip_all => 'needs DBD::SQLite for testing' )
c2b7c5dc 14 : ( tests => 8 );
2cc3a7be 15}
16
2cc3a7be 17use_ok('DBICTest');
67e1ac6d 18use_ok('DBIC::DebugObj');
2cc3a7be 19
9b459129 20my $schema = DBICTest->init_schema();
5a1f2d73 21
4cf8bfe6 22#diag('Testing against ' . join(' ', map { $schema->storage->dbh->get_info($_) } qw/17 18/));
2cc3a7be 23
ee3bc4ea 24my $dsn = $schema->storage->_dbi_connect_info->[0];
77d76d0f 25$schema->connection(
26 $dsn,
27 undef,
28 undef,
29 { AutoCommit => 1 },
30 { quote_char => '`', name_sep => '.' },
31);
2cc3a7be 32
af6aac2d 33my ($sql, @bind);
67e1ac6d 34$schema->storage->debugobj(DBIC::DebugObj->new(\$sql, \@bind)),
c216324a 35$schema->storage->debug(1);
5a1f2d73 36
37my $rs;
38
c216324a 39$rs = $schema->resultset('CD')->search(
2cc3a7be 40 { 'me.year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
41 { join => 'artist' });
5a1f2d73 42eval { $rs->count };
9b459129 43is_same_sql_bind(
a258ee5d 44 $sql, \@bind,
45 "SELECT COUNT( * ) FROM `cd` `me` JOIN `artist` `artist` ON ( `artist`.`artistid` = `me`.`artist` ) WHERE ( `artist`.`name` = ? AND `me`.`year` = ? )", ["'Caterwauler McCrae'", "'2001'"],
9b459129 46 'got correct SQL for count query with quoting'
47);
2cc3a7be 48
c2b7c5dc 49# try with ->table(\'cd') should NOT be quoted
50$rs = $schema->resultset('CDTableRef')->search(
51 { 'me.year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
52 { join => 'artist' });
53eval { $rs->count };
54is_same_sql_bind(
55 $sql, \@bind,
56 "SELECT COUNT( * ) FROM cd `me` JOIN `artist` `artist` ON ( `artist`.`artistid` = `me`.`artist` ) WHERE ( `artist`.`name` = ? AND `me`.`year` = ? )", ["'Caterwauler McCrae'", "'2001'"],
57 'got correct SQL for count query with quoting'
58);
59
5a1f2d73 60my $order = 'year DESC';
c216324a 61$rs = $schema->resultset('CD')->search({},
5a1f2d73 62 { 'order_by' => $order });
63eval { $rs->first };
64like($sql, qr/ORDER BY `\Q${order}\E`/, 'quoted ORDER BY with DESC (should use a scalarref anyway)');
2cc3a7be 65
c216324a 66$rs = $schema->resultset('CD')->search({},
2cc3a7be 67 { 'order_by' => \$order });
5a1f2d73 68eval { $rs->first };
69like($sql, qr/ORDER BY \Q${order}\E/, 'did not quote ORDER BY with scalarref');
2cc3a7be 70
77d76d0f 71$schema->connection(
72 $dsn,
73 undef,
74 undef,
75 { AutoCommit => 1, quote_char => [qw/[ ]/], name_sep => '.' }
76);
9b459129 77
67e1ac6d 78$schema->storage->debugobj(DBIC::DebugObj->new(\$sql, \@bind)),
c216324a 79$schema->storage->debug(1);
2cc3a7be 80
c216324a 81$rs = $schema->resultset('CD')->search(
2cc3a7be 82 { 'me.year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
83 { join => 'artist' });
5a1f2d73 84eval { $rs->count };
9b459129 85is_same_sql_bind(
a258ee5d 86 $sql, \@bind,
87 "SELECT COUNT( * ) FROM [cd] [me] JOIN [artist] [artist] ON ( [artist].[artistid] = [me].[artist] ) WHERE ( [artist].[name] = ? AND [me].[year] = ? )", ["'Caterwauler McCrae'", "'2001'"],
9b459129 88 'got correct SQL for count query with bracket quoting'
89);
2cc3a7be 90
91my %data = (
92 name => 'Bill',
93 order => '12'
94);
95
77d76d0f 96$schema->connection(
97 $dsn,
98 undef,
99 undef,
100 { AutoCommit => 1, quote_char => '`', name_sep => '.' }
101);
2cc3a7be 102
c216324a 103is($schema->storage->sql_maker->update('group', \%data), 'UPDATE `group` SET `name` = ?, `order` = ?', 'quoted table names for UPDATE');