[Bast-commits] r5775 - SQL-Abstract/1.x/trunk/t
ribasushi at dev.catalyst.perl.org
ribasushi at dev.catalyst.perl.org
Thu Mar 19 20:34:51 GMT 2009
Author: ribasushi
Date: 2009-03-19 20:34:51 +0000 (Thu, 19 Mar 2009)
New Revision: 5775
Modified:
SQL-Abstract/1.x/trunk/t/02where.t
Log:
Failing nested modifier tests (the tests themselves are debatable - possible regression from 1.24
Modified: SQL-Abstract/1.x/trunk/t/02where.t
===================================================================
--- SQL-Abstract/1.x/trunk/t/02where.t 2009-03-19 19:03:49 UTC (rev 5774)
+++ SQL-Abstract/1.x/trunk/t/02where.t 2009-03-19 20:34:51 UTC (rev 5775)
@@ -6,6 +6,7 @@
use Test::Exception;
use SQL::Abstract::Test import => ['is_same_sql_bind'];
+use Data::Dumper;
use SQL::Abstract;
# Make sure to test the examples, since having them break is somewhat
@@ -209,14 +210,92 @@
},
);
+# add extra modifier tests, based on 2 outcomes
+my $mod_and = {
+ stmt => 'WHERE ( foo = ? OR bar = ? ) AND baz = ? ',
+ bind => [qw/1 2 3/],
+};
+my $mod_or = {
+ stmt => 'WHERE ( foo = ? OR bar = ? ) OR baz = ?',
+ bind => [qw/1 2 3/],
+};
+
+push @handle_tests, (
+ # test modifiers within hashrefs
+ {
+ where => { -or => [
+ [ foo => 1, bar => 2 ],
+ baz => 3,
+ ]},
+ %$mod_or,
+ },
+ {
+ where => { -and => [
+ [ foo => 1, bar => 2 ],
+ baz => 3,
+ ]},
+ %$mod_and,
+ },
+
+ # test modifiers within arrayrefs
+ {
+ where => [ -or => [
+ [ foo => 1, bar => 2 ],
+ baz => 3,
+ ]],
+ %$mod_or,
+ },
+ {
+ where => [ -and => [
+ [ foo => 1, bar => 2 ],
+ baz => 3,
+ ]],
+ %$mod_and,
+ },
+
+ # test conflicting modifiers within hashrefs (last one should win?)
+ {
+ where => { -and => [ -or =>
+ [ foo => 1, bar => 2 ],
+ baz => 3,
+ ]},
+ %$mod_or,
+ },
+ {
+ where => { -or => [ -and =>
+ [ foo => 1, bar => 2 ],
+ baz => 3,
+ ]},
+ %$mod_and,
+ },
+
+ # test conflicting modifiers within arrayrefs (last one should win?)
+ {
+ where => [ -and => [ -or =>
+ [ foo => 1, bar => 2 ],
+ baz => 3,
+ ]],
+ %$mod_or,
+ },
+ {
+ where => [ -or => [ -and =>
+ [ foo => 1, bar => 2 ],
+ baz => 3,
+ ]],
+ %$mod_and,
+ },
+);
+
plan tests => ( @handle_tests * 2 ) + 1;
for my $case (@handle_tests) {
+ local $Data::Dumper::Terse = 1;
my $sql = SQL::Abstract->new;
my($stmt, @bind);
lives_ok (sub {
($stmt, @bind) = $sql->where($case->{where}, $case->{order});
- is_same_sql_bind($stmt, \@bind, $case->{stmt}, $case->{bind});
+ is_same_sql_bind($stmt, \@bind, $case->{stmt}, $case->{bind})
+ || diag "Search term:\n" . Dumper $case->{where};
});
}
More information about the Bast-commits
mailing list