X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=t%2FBoolean.t;h=0f04913cae515c2220c793cb15b82d32b2a62f94;hb=da7dd4ed8c2462597712a11b0a018db87b1fef87;hp=4810833643a322d3407b3ba4bb6f80a3dd7df0f7;hpb=23a19c6c9ab7a31584a452f56e870586f4cbcaee;p=koha_fer diff --git a/t/Boolean.t b/t/Boolean.t index 4810833643..0f04913cae 100755 --- a/t/Boolean.t +++ b/t/Boolean.t @@ -1,96 +1,22 @@ -#!/usr/bin/perl -# use strict; -#use warnings; FIXME - Bug 2505 -use C4::Boolean; - -use vars qw( @tests ); -use vars qw( $loaded ); - -sub f ($) { - my($x) = @_; - my $it; - # Returns either the value returned prefixed with 'OK:', - # or the caught exception (string expected) - local($@); - eval { - $it = 'OK:' . C4::Boolean::true_p($x); - }; - if ($@) { - $it = $@; - $it =~ s/ at \S+ line \d+\.\n//s; - } - return $it; -} - -BEGIN { - @tests = ( - [ - 'control', - sub { C4::Boolean::INVALID_BOOLEAN_STRING_EXCEPTION }, - 'The given value does not seem to be interpretable as a Boolean value', - undef - - # False strings - ], [ - '"0"', \&f, 'OK:0', '0' - ], [ - '"false"', \&f, 'OK:0', 'false' - ], [ - '"off"', \&f, 'OK:0', 'off' - ], [ - '"no"', \&f, 'OK:0', 'no' - - # True strings - ], [ - '"1"', \&f, 'OK:1', '1' - ], [ - '"true"', \&f, 'OK:1', 'true' - ], [ - '"on"', \&f, 'OK:1', 'on' - ], [ - '"yes"', \&f, 'OK:1', 'yes' - ], [ - '"YES"', \&f, 'OK:1', 'YES' # verify case insensitivity - - # Illegal strings -# ], [ -# 'undef', \&f, C4::Boolean::INVALID_BOOLEAN_STRING_EXCEPTION, undef -# ], [ -# '"foo"', \&f, C4::Boolean::INVALID_BOOLEAN_STRING_EXCEPTION, 'foo' - ], -); -} - -BEGIN { $| = 1; printf "1..%d\n", scalar(@tests); } -END {print "not ok 1\n" unless $loaded;} -$loaded = 1; - - -# Run all tests in sequence -for (my $i = 1; $i <= scalar @tests; $i += 1) { - my $test = $tests[$i - 1]; - my($title, $f, $expected, $input) = @$test; - die "not ok $i (malformed test case)\n" - unless @$test == 4 && ref $f eq 'CODE'; - - my $output = &$f($input); - if ( - (!defined $output && !defined $expected) - || (defined $output && defined $expected && $output eq $expected) - ) { - print "ok $i - $title\n"; - } else { - print "not ok $i - $title: got ", - (defined $output? "\"$output\"": 'undef'), - ', expected ', - (defined $expected? "\"$expected\"": 'undef'), - "\n"; - } -} +use warnings; +use Test::More tests => 13; +BEGIN { use_ok( 'C4::Boolean', qw( true_p ) ); } +is( true_p('0'), '0', 'recognizes \'0\' as false' ); +is( true_p('false'), '0', 'recognizes \'false\' as false' ); +is( true_p('off'), '0', 'recognizes \'off\' as false' ); +is( true_p('no'), '0', 'recognizes \'no\' as false' ); +is( true_p('1'), '1', 'recognizes \'1\' as true' ); +is( true_p('true'), '1', 'recognizes \'true\' as true' ); +is( true_p('on'), '1', 'recognizes \'on\' as true' ); +is( true_p('yes'), '1', 'recognizes \'yes\' as true' ); +is( true_p('YES'), '1', 'verified case insensitivity' ); +is( true_p(undef), undef, 'recognizes undefined as not boolean' ); +is( true_p('foo'), undef, 'recognizes \'foo\' as not boolean' ); +is( true_p([]), undef, 'recognizes a reference as not a boolean' );