X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F06order_by.t;h=d92456929e693545fbe185ff86cc6fdc56b7954f;hb=b137b0744a3aaea3df1ba497345378e9d3f8da40;hp=20ca3f4b5d7c8a706bea87003b10b958510835a8;hpb=1cfa1db38710ee8109475c4b9cd2d42bc2e3e178;p=dbsrgits%2FSQL-Abstract.git diff --git a/t/06order_by.t b/t/06order_by.t index 20ca3f4..d924569 100644 --- a/t/06order_by.t +++ b/t/06order_by.t @@ -3,9 +3,11 @@ use strict; use warnings; use Test::More; +use Test::Exception; use SQL::Abstract; +use SQL::Abstract::Test import => ['is_same_sql_bind']; my @cases = ( { @@ -18,11 +20,21 @@ my @cases = expects => ' ORDER BY colA', expects_quoted => ' ORDER BY `colA`', }, + { # it may look odd, but this is the desired behaviour (mst) + given => 'colA DESC', + expects => ' ORDER BY colA DESC', + expects_quoted => ' ORDER BY `colA DESC`', + }, { given => [qw/colA colB/], expects => ' ORDER BY colA, colB', expects_quoted => ' ORDER BY `colA`, `colB`', }, + { # it may look odd, but this is the desired behaviour (mst) + given => ['colA ASC', 'colB DESC'], + expects => ' ORDER BY colA ASC, colB DESC', + expects_quoted => ' ORDER BY `colA ASC`, `colB DESC`', + }, { given => {-asc => 'colA'}, expects => ' ORDER BY colA ASC', @@ -43,14 +55,118 @@ my @cases = expects => ' ORDER BY colA, colB DESC', expects_quoted => ' ORDER BY `colA`, `colB` DESC', }, + { + given => undef, + 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/], + }, + { + given => [ { -ASC => 'colA', -NULLS => 'FIRST' }, { -DESC => 'colB', -NULLS => 'LAST' } ], + expects => ' ORDER BY colA ASC NULLS FIRST, colB DESC NULLS LAST', + expects_quoted => ' ORDER BY `colA` ASC NULLS FIRST, `colB` DESC NULLS LAST', + }, + { + given => [ { -asc => 'colA', -nulls => 'first' }, { -desc => 'colB', -nulls => 'last' } ], + expects => ' ORDER BY colA ASC NULLS FIRST, colB DESC NULLS LAST', + expects_quoted => ' ORDER BY `colA` ASC NULLS FIRST, `colB` DESC NULLS LAST', + }, + { + given => { -asc => [qw/colA colB/], -nulls => 'first' } , + expects => ' ORDER BY colA ASC NULLS FIRST, colB ASC NULLS FIRST', + expects_quoted => ' ORDER BY `colA` ASC NULLS FIRST, `colB` ASC NULLS FIRST', + }, ); + +plan tests => (scalar(@cases) * 2) + 4; + 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->_order_by($case->{given}); + is_same_sql_bind ( + $stat, + \@bind, + $case->{expects}, + $case->{bind} || [], + ); + + ($stat, @bind) = $sqlq->_order_by($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 of/, + 'Undeterministic order exception', +); + +throws_ok ( + sub { $sql->_order_by({-desc => [ qw/colA colB/ ], -asc => [ qw/colC colD/ ] }) }, + qr/hash passed .+ must have exactly one of/, + 'Undeterministic order exception', +); + +throws_ok( + sub { $sql->_order_by({-wibble => "fleem" }) }, + qr/invalid key in hash/, + 'Invalid order exception', +); + +throws_ok( + sub { $sql->_order_by({-nulls => "fleem" }) }, + qr/invalid value for -nulls/, + 'Invalid nulls exception', +);