X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F03values.t;fp=t%2F03values.t;h=f88debb25702f8d33b27cba26521d5f3e03db9c7;hb=35d55ea7e12edefbb9cffb9c66ae12cdfaa2c839;hp=a75c2166132c01cd042624108203b5225351e3ed;hpb=d15c14ccfb2fad9248aeb856592d7ad0ef65d74f;p=scpubgit%2FQ-Branch.git diff --git a/t/03values.t b/t/03values.t index a75c216..f88debb 100644 --- a/t/03values.t +++ b/t/03values.t @@ -4,12 +4,10 @@ use strict; use warnings; use Test::More; -use SQL::Abstract::Test import => ['is_same_sql_bind']; +use SQL::Abstract::Test import => [qw/is_same_sql_bind is_same_bind/]; use SQL::Abstract; -my $sql = SQL::Abstract->new; - my @data = ( { user => 'nwiger', @@ -58,37 +56,52 @@ my @data = ( ); -plan tests => scalar(@data); +plan tests => (@data * 5 + 2); -# Note to self: I have no idea what this does anymore -# It looks like a cool fucking segment of code though! -# I just wish I remembered writing it... :-\ +# test insert() and values() for reentrancy +my($insert_hash, $insert_array, $numfields); +my $a_sql = SQL::Abstract->new; +my $h_sql = SQL::Abstract->new; -my($sth, $stmt); -my($laststmt, $numfields); -for my $t (@data) { - local $"=', '; +for my $record (@data) { - $stmt = $sql->insert('yo_table', $t); - my @val = $sql->values($t); - $numfields ||= @val; + my $values = [ map { $record->{$_} } sort keys %$record ]; - ok((! $laststmt || $stmt eq $laststmt) && @val == $numfields - && equal(\@val, [map { $t->{$_} } sort keys %$t])) or - print "got\n", - "[$stmt] [@val]\n", - "instead of\n", - "[$t->{stmt}] [stuff]\n\n"; - $laststmt = $stmt; -} + my ($h_stmt, @h_bind) = $h_sql->insert('h_table', $record); + my ($a_stmt, @a_bind) = $a_sql->insert('a_table', $values ); + + # init from first run, should not change afterwards + $insert_hash ||= $h_stmt; + $insert_array ||= $a_stmt; + $numfields ||= @$values; + + is ( $a_stmt, $insert_array, 'Array-based insert statement unchanged' ); + is ( $h_stmt, $insert_hash, 'Hash-based insert statement unchanged' ); + + is_deeply ( \@a_bind, \@h_bind, 'Bind values match after both insert() calls' ); + is_deeply ( [$h_sql->values ($record)] , \@h_bind, 'values() output matches bind values after insert()' ); -sub equal { - my ($a, $b) = @_; - return 0 if @$a != @$b; - for (my $i = 0; $i < $#{$a}; $i++) { - next if (! defined($a->[$i])) && (! defined($b->[$i])); - return 0 if $a->[$i] ne $b->[$i]; - } - return 1; + is ( scalar @h_bind, $numfields, 'Number of fields unchanged' ); } +# test values() with literal sql +{ + my $sql = SQL::Abstract->new; + + my $data = { event => 'rapture', time => \ 'now()', func => \ 'somefunc(?)', stuff => 'fluff', }; + + my ($stmt, @bind) = $sql->insert ('table', $data); + + is_same_sql_bind ( + $stmt, + \@bind, + 'INSERT INTO table ( event, func, stuff, time) VALUES ( ?, somefunc (?), ?, now() )', + [qw/rapture fluff/], # event < stuff + ); + + is_same_bind ( + [$sql->values ($data)], + [\@bind], + 'values() output matches that of initial bind' + ); +}