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