X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F06order_by.t;h=7d1213e9f88a7411048e6f7a333cae9b98f12159;hb=ca4f826a37ccb5194b0b5b9b4190b4007d647d9c;hp=63bde18ebd003f4594e238899eef23d7d00cb4fb;hpb=71519cf6bf838cd5774b5eccba373c178140f5bc;p=dbsrgits%2FSQL-Abstract.git diff --git a/t/06order_by.t b/t/06order_by.t index 63bde18..7d1213e 100644 --- a/t/06order_by.t +++ b/t/06order_by.t @@ -1,13 +1,12 @@ -#!/usr/bin/perl - use strict; use warnings; use Test::More; +use Test::Exception; use SQL::Abstract; use SQL::Abstract::Test import => ['is_same_sql_bind']; -my @cases = +my @cases = ( { given => \'colA DESC', @@ -59,14 +58,85 @@ my @cases = expects => '', expects_quoted => '', }, + + { + given => [{-desc => [ qw/colA colB/ ] }], + expects => ' ORDER BY colA DESC, colB DESC', + expects_quoted => ' ORDER BY `colA` DESC, `colB` DESC', + }, + { + given => [{-desc => [ qw/colA colB/ ] }, {-asc => 'colC'}], + expects => ' ORDER BY colA DESC, colB DESC, colC ASC', + expects_quoted => ' ORDER BY `colA` DESC, `colB` DESC, `colC` ASC', + }, + { + given => [{-desc => [ qw/colA colB/ ] }, {-asc => [ qw/colC colD/ ] }], + expects => ' ORDER BY colA DESC, colB DESC, colC ASC, colD ASC', + expects_quoted => ' ORDER BY `colA` DESC, `colB` DESC, `colC` ASC, `colD` ASC', + }, + { + given => [{-desc => [ qw/colA colB/ ] }, {-desc => 'colC' }], + expects => ' ORDER BY colA DESC, colB DESC, colC DESC', + expects_quoted => ' ORDER BY `colA` DESC, `colB` DESC, `colC` DESC', + }, + { + given => [{ -asc => 'colA' }, { -desc => [qw/colB/] }, { -asc => [qw/colC colD/] }], + expects => ' ORDER BY colA ASC, colB DESC, colC ASC, colD ASC', + expects_quoted => ' ORDER BY `colA` ASC, `colB` DESC, `colC` ASC, `colD` ASC', + }, + { + given => { -desc => \['colA LIKE ?', 'test'] }, + expects => ' ORDER BY colA LIKE ? DESC', + expects_quoted => ' ORDER BY colA LIKE ? DESC', + bind => ['test'], + }, + { + given => \['colA LIKE ? DESC', 'test'], + expects => ' ORDER BY colA LIKE ? DESC', + expects_quoted => ' ORDER BY colA LIKE ? DESC', + bind => ['test'], + }, + { + given => [ { -asc => \['colA'] }, { -desc => \['colB LIKE ?', 'test'] }, { -asc => \['colC LIKE ?', 'tost'] }], + expects => ' ORDER BY colA ASC, colB LIKE ? DESC, colC LIKE ? ASC', + expects_quoted => ' ORDER BY colA ASC, colB LIKE ? DESC, colC LIKE ? ASC', + bind => [qw/test tost/], + }, ); my $sql = SQL::Abstract->new; my $sqlq = SQL::Abstract->new({quote_char => '`'}); -plan tests => (scalar(@cases) * 2); +for my $case (@cases) { + my ($stat, @bind); -for my $case( @cases){ - is($sql->_order_by($case->{given}), $case->{expects}); - is($sqlq->_order_by($case->{given}), $case->{expects_quoted}); + ($stat, @bind) = $sql->where(undef, $case->{given}); + is_same_sql_bind ( + $stat, + \@bind, + $case->{expects}, + $case->{bind} || [], + ); + + ($stat, @bind) = $sqlq->where(undef, $case->{given}); + is_same_sql_bind ( + $stat, + \@bind, + $case->{expects_quoted}, + $case->{bind} || [], + ); } + +throws_ok ( + sub { $sql->_order_by({-desc => 'colA', -asc => 'colB' }) }, + qr/hash passed .+ must have exactly one key/, + 'Undeterministic order exception', +); + +throws_ok ( + sub { $sql->_order_by({-desc => [ qw/colA colB/ ], -asc => [ qw/colC colD/ ] }) }, + qr/hash passed .+ must have exactly one key/, + 'Undeterministic order exception', +); + +done_testing;