first draft of storage exception stuff
[dbsrgits/DBIx-Class.git] / t / 19quotes.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use IO::File;
6
7 BEGIN {
8     eval "use DBD::SQLite";
9     plan $@
10         ? ( skip_all => 'needs DBD::SQLite for testing' )
11         : ( tests => 6 );
12 }
13
14 use lib qw(t/lib);
15
16 use_ok('DBICTest');
17 DBICTest->init_schema();
18
19 DBICTest->schema->storage->sql_maker->quote_char("'");
20 DBICTest->schema->storage->sql_maker->name_sep('.');
21
22 my $rs = DBICTest::CD->search(
23            { 'me.year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
24            { join => 'artist' });
25
26 cmp_ok( $rs->count, '==', 1, "join with fields quoted");
27
28 $rs = DBICTest::CD->search({},
29             { 'order_by' => 'year DESC'});
30 {
31        eval{ $rs->first() };
32        like( $@, qr/ORDER BY terms/, "Problem with ORDER BY quotes" );
33 }
34
35 my $order = 'year DESC';
36 $rs = DBICTest::CD->search({},
37             { 'order_by' => \$order });
38 {
39        my $warnings = '';
40        local $SIG{__WARN__} = sub { $warnings .= $_[0] };
41        my $first = $rs->first();
42        ok( $warnings !~ /ORDER BY terms/,
43             "No problem handling ORDER by scalaref" );
44 }
45
46 DBICTest->schema->storage->sql_maker->quote_char([qw/[ ]/]);
47 DBICTest->schema->storage->sql_maker->name_sep('.');
48
49 $rs = DBICTest::CD->search(
50            { 'me.year' => 2001, 'artist.name' => 'Caterwauler McCrae' },
51            { join => 'artist' });
52 cmp_ok($rs->count,'==', 1,"join quoted with brackets.");
53
54 my %data = (
55        name => 'Bill',
56        order => '12'
57 );
58
59 DBICTest->schema->storage->sql_maker->quote_char('`');
60 DBICTest->schema->storage->sql_maker->name_sep('.');
61
62 cmp_ok(DBICTest->schema->storage->sql_maker->update('group', \%data), 'eq', 'UPDATE `group` SET `name` = ?, `order` = ?', "quoted table names for UPDATE");
63