X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F06order_by.t;h=0d340ae961baa7c2b0b2c39cd1830e5f67d8f396;hb=cf5b7ab163f8ac123ebc9bb1156e79646cd5bd2f;hp=2a3f7b6ce307ab36d0e830da39edf3733abddffe;hpb=b8b747f7b528f5ca9425d3468acbd7ca62765537;p=scpubgit%2FQ-Branch.git diff --git a/t/06order_by.t b/t/06order_by.t index 2a3f7b6..0d340ae 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,6 +58,11 @@ my @cases = expects => '', expects_quoted => '', }, + { + given => [ {} ], + expects => '', + expects_quoted => '', + }, { given => [{-desc => [ qw/colA colB/ ] }], @@ -81,20 +85,69 @@ my @cases = expects_quoted => ' ORDER BY `colA` DESC, `colB` DESC, `colC` DESC', }, { - 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 => [{ -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/], }, - ); - -plan tests => (scalar(@cases) * 2); - my $sql = SQL::Abstract->new; my $sqlq = SQL::Abstract->new({quote_char => '`'}); -for my $case( @cases){ - is($sql->_order_by($case->{given}), $case->{expects}); - is($sqlq->_order_by($case->{given}), $case->{expects_quoted}); +for my $case (@cases) { + my ($stat, @bind); + + ($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 => '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;