1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
#!./perl
#
# $Id: soundex.t,v 1.2 1994/03/24 00:30:27 mike Exp $
#
# test module for soundex.pl
#
# $Log: soundex.t,v $
# Revision 1.2 1994/03/24 00:30:27 mike
# Subtle bug (any excuse :-) spotted by Rich Pinder <rpinder@hsc.usc.edu>
# in the way I handles leasing characters which were different but had
# the same soundex code. This showed up comparing it with Oracle's
# soundex output.
#
# Revision 1.1 1994/03/02 13:03:02 mike
# Initial revision
#
#
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
}
use Text::Soundex;
$test = 0;
print "1..13\n";
while (<DATA>)
{
chop;
next if /^\s*;?#/;
next if /^\s*$/;
++$test;
$bad = 0;
if (/^eval\s+/)
{
($try = $_) =~ s/^eval\s+//;
eval ($try);
if ($@)
{
$bad++;
print "not ok $test\n";
print "# eval '$try' returned $@";
}
}
elsif (/^\(/)
{
($in, $out) = split (':');
$try = "\@expect = $out; \@got = &soundex $in;";
eval ($try);
if (@expect != @got)
{
$bad++;
print "not ok $test\n";
print "# expected ", scalar @expect, " results, got ", scalar @got, "\n";
print "# expected (", join (', ', @expect),
") got (", join (', ', @got), ")\n";
}
else
{
while (@got)
{
$expect = shift @expect;
$got = shift @got;
if ($expect ne $got)
{
$bad++;
print "not ok $test\n";
print "# expected $expect, got $got\n";
}
}
}
}
else
{
($in, $out) = split (':');
$try = "\$expect = $out; \$got = &soundex ($in);";
eval ($try);
if ($expect ne $got)
{
$bad++;
print "not ok $test\n";
print "# expected $expect, got $got\n";
}
}
print "ok $test\n" unless $bad;
}
__END__
#
# 1..6
#
# Knuth's test cases, scalar in, scalar out
#
'Euler':'E460'
'Gauss':'G200'
'Hilbert':'H416'
'Knuth':'K530'
'Lloyd':'L300'
'Lukasiewicz':'L222'
#
# 7..8
#
# check default bad code
#
'2 + 2 = 4':undef
undef:undef
#
# 9
#
# check array in, array out
#
('Ellery', 'Ghosh', 'Heilbronn', 'Kant', 'Ladd', 'Lissajous'):('E460', 'G200', 'H416', 'K530', 'L300', 'L222')
#
# 10
#
# check array with explicit undef
#
('Mike', undef, 'Stok'):('M200', undef, 'S320')
#
# 11..12
#
# check setting $Text::Soundex::noCode
#
eval $soundex_nocode = 'Z000';
('Mike', undef, 'Stok'):('M200', 'Z000', 'S320')
#
# 13
#
# a subtle difference between me & oracle, spotted by Rich Pinder
# <rpinder@hsc.usc.edu>
#
CZARKOWSKA:C622
|