Comment clarify
[dbsrgits/SQL-Abstract.git] / t / 04modifiers.t
CommitLineData
e5360be4 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5use Test::More;
6use Test::Exception;
7use SQL::Abstract::Test import => ['is_same_sql_bind'];
8
9use Data::Dumper;
10use SQL::Abstract;
11
12=begin
13Test -and -or and -nest/-nestX modifiers, assuming the following:
14
15 * Modifiers are respected in both hashrefs and arrayrefs (with the obvious limitation of one modifier type per hahsref)
16 * Each modifier affects only the immediate element following it
17 * In the case of -nestX simply wrap whatever the next element is in a pair of (), regardless of type
18 * In the case of -or/-and explicitly setting the logic within a following hashref or arrayref,
19 without imposing the logic on any sub-elements of the affected structure
20 * Ignore (maybe throw exception?) of the -or/-and modifier if the following element is missing,
21 or is of a type other than hash/arrayref
22
23=cut
24
25
26my @handle_tests = ();
27
28plan tests => @handle_tests * 2;
29
30for my $case (@handle_tests) {
31 local $Data::Dumper::Terse = 1;
32 my $sql = SQL::Abstract->new;
33 my($stmt, @bind);
34 lives_ok (sub {
35 ($stmt, @bind) = $sql->where($case->{where}, $case->{order});
36 is_same_sql_bind($stmt, \@bind, $case->{stmt}, $case->{bind})
37 || diag "Search term:\n" . Dumper $case->{where};
38 });
39}