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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
#-- test suite
use strict;
use warnings;
# change 'tests => 1' to 'tests => last_test_to_print';
use Test::More qw(no_plan);
my $debug;
use Data::Dumper;
$Data::Dumper::Indent = 1;
use Time::HiRes;
use TM;
use TM::Literal;
sub _chomp {
my $s = shift;
chomp $s;
return $s;
}
sub mk_taxo {
my $max_d = shift;
my $max_c = shift;
my $max_i = shift;
return _mk_taxo ('0', 0, $max_d, $max_c, $max_i);
sub _mk_taxo {
my $root = shift;
my $d = shift;
my $max_d = shift;
my $max_c = shift;
my $max_i = shift;
return { "C$root" => [
( $d < $max_d ? ( map { _mk_taxo ($root . $_, $d+1, $max_d, $max_c, $max_i) } ( 0 .. ($debug ||rand($max_c)))) : () ), # make concepts
( map { "i$root$_" } ( 0 .. ($debug ||rand($max_i))) ) # make kids
] };
}
}
sub implant {
my $tm = shift;
my $ta = shift;
my ($root) = keys %$ta;
$tm->assert (Assertion->new (type => 'name', kind=> TM->NAME, roles => [ 'thing', 'value' ], players => [ $root, new TM::Literal ($root."_name") ]));
foreach my $ch (@{$ta->{$root}}) {
if (ref ($ch)) { # this is a subtree
$tm->assert (Assertion->new (type => 'is-subclass-of', roles => [ 'subclass', 'superclass' ], players => [ (keys %$ch)[0], $root ]));
implant ($tm, $ch);
} else { # this is just an instance
$tm->assert (Assertion->new (type => 'isa', roles => [ 'class', 'instance' ], players => [ $root, $ch ]));
$tm->assert (Assertion->new (type => 'name', kind=> TM->NAME, roles => [ 'thing', 'value' ], players => [ $ch, new TM::Literal ($ch."_name") ]));
$tm->assert (Assertion->new (type => 'occurrence', kind=> TM->OCC, roles => [ 'thing', 'value' ], players => [ $ch, new TM::Literal ($ch."_occ") ]));
}
}
}
sub verify {
my $tm = shift;
my $ta = shift;
my $si = shift; # silencio?
my ($root) = keys %$ta;
foreach my $ch (_flatten_tree ($ta)) {
#warn "for $root finding child $ch";
if ($ch =~ /C/) { # this is a subtree node
if ($si) {
die "fail $ch (indirect) subclass of $root" unless $tm->is_subclass ($tm->tids ($ch, $root));
} else {
ok ($tm->is_subclass ($tm->tids ($ch, $root)), "$ch (indirect) subclass of $root");
}
} else { # this is just an instance
if ($si) {
die "fail $ch (indirect) instance of $root" unless $tm->is_a ($tm->tids ($ch, $root));
} else {
ok ($tm->is_a ($tm->tids ($ch, $root)), "$ch (indirect) instance of $root");
}
}
}
foreach my $ch (@{$ta->{$root}}) {
if (ref ($ch)) { # this is a subtree
verify ($tm, $ch, $si);
}
}
sub _flatten_tree {
my $ta = shift;
my ($root) = keys %$ta;
my @kids;
push @kids, $root;
foreach my $ch (@{$ta->{$root}}) {
push @kids, ref ($ch) ? _flatten_tree ($ch) : $ch;
}
return @kids;
}
}
sub _verify_chars {
my $tm = shift;
my $t = shift;
foreach ($tm->tids (_flatten_tree ($t))) {
my @as = $tm->match_forall (char => 1, topic => $_);
if ( /i\d+/ ) { # an instance got a name and an occurrence
die "char for $_: name and occurrence" unless scalar @as == 2;
} else { # a class only a name
die "char for $_: only name" unless scalar @as == 1;
}
}
ok (1, 'chars');
}
my $warn = shift @ARGV;
unless ($warn) {
close STDERR;
open (STDERR, ">/dev/null");
select (STDERR); $| = 1;
}
#== TESTS =====================================================================
use TM;
# testing attachment actually
require_ok( 'TM::Index::Match' );
eval {
my $idx = new TM::Index::Match (42);
}; like ($@, qr/parameter must be an instance/, _chomp ($@));
{
my $tm = new TM;
{
my $idx = new TM::Index::Match ($tm);
$idx->detach;
}
ok (! defined $tm->{indices}, 'first indexed autoremoved');
{
my $idx2 = new TM::Index::Match ($tm);
ok (1, 'second index implanted');
}
{
my $tm = new TM;
my $idx = new TM::Index::Match ($tm);
my $idx2 = new TM::Index::Match ($tm);
is (@{ $tm->{indices} }, 2, 'double trouble');
}
};
my @optimized_keys; # will be determined next
#$debug = 2; # pins down somewhat the tree structure
if (1) { # lazy index, built by use, functional test
my $taxo = mk_taxo (3, 2, 3);
#warn Dumper $taxo;
my $tm = new TM;
implant ($tm, $taxo);
#warn Dumper $tm;
my $idx = new TM::Index::Match ($tm);
verify ($tm, $taxo, 0); # non-silent mode
my $stats = $idx->statistics;
@optimized_keys = @{ $stats->{proposed_keys} };
}
$debug = 2; # pins down somewhat the tree structure
if (1) { # lazy index, built by use
my $taxo = mk_taxo (4, 3, 3);
#warn Dumper $taxo;
my $tm = new TM;
implant ($tm, $taxo);
#warn Dumper $tm;
my $idx = new TM::Index::Match ($tm);
# warn "\n# verifying first run, testing speed....";
my $start = Time::HiRes::time;
verify ($tm, $taxo, 1);
my $unindexed = (Time::HiRes::time - $start);
# warn Dumper $idx->{cache};
# warn "# verifying second run, testing speed....";
$start = Time::HiRes::time;
verify ($tm, $taxo, 1);
my $indexed = (Time::HiRes::time - $start);
ok ($indexed < $unindexed / 2, "measurable speedup with lazy index ? ($indexed < $unindexed)");
# warn "# ====== total time =============== ".(Time::HiRes::time - $start);
#warn Dumper $idx->statistics;
my $stats = $idx->statistics;
@optimized_keys = @{ $stats->{proposed_keys} };
}
#warn Dumper \ @optimized_keys; exit;
if (1) { # prepopulated
my $taxo = mk_taxo (2, 1, 1);
my $tm = new TM;
implant ($tm, $taxo);
my $idx = new TM::Index::Match ($tm);
my $start = Time::HiRes::time;
# warn "\n# verifying first run, should be medium fast";
verify ($tm, $taxo, 1);
my $unindexed = (Time::HiRes::time - $start);
$idx->detach;
$idx = new TM::Index::Match ($tm, closed => 1);
# warn "# prepopulating, takes time";
$idx->discard and $idx->populate (@optimized_keys);
# warn Dumper $idx->{cache}; exit;
$start = Time::HiRes::time;
# warn "# verifying second run, should be faster";
#warn Dumper $taxo;
verify ($tm, $taxo, 1);
my $indexed = (Time::HiRes::time - $start);
ok (1, "measurable speedup with eager (populated) index ?? ($indexed < $unindexed)");
# TODO: {
# local $TODO = "systematic speed test";
# ok ($indexed < $unindexed, "measurable speedup with eager (populated) index ($indexed < $unindexed)");
# }
}
require_ok( 'TM::Index::Characteristics' );
{
my $taxo = mk_taxo (4, 4, 4);
#warn Dumper $taxo;
my $tm = new TM;
implant ($tm, $taxo);
my $start = Time::HiRes::time;
_verify_chars ($tm, $taxo);
my $unindexed = (Time::HiRes::time - $start);
my $idx = new TM::Index::Characteristics ($tm, closed => 1);
# warn Dumper $idx->{cache}; exit;
$start = Time::HiRes::time;
_verify_chars ($tm, $taxo);
my $indexed = (Time::HiRes::time - $start);
ok ($indexed < $unindexed / 2, "measurable speedup with eager char index ($indexed < $unindexed)");
}
#-- persistent indices
my @tmp;
sub _mktmps {
foreach (qw(0)) {
use IO::File;
use POSIX qw(tmpnam);
do { $tmp[$_] = tmpnam() ; } until IO::File->new ($tmp[$_], O_RDWR|O_CREAT|O_EXCL);
}
}
_mktmps;
#warn Dumper \@tmp;
END { map { unlink <$_*> } @tmp; };
{
use BerkeleyDB ;
use MLDBM qw(BerkeleyDB::Hash) ;
use Fcntl;
my $taxo = mk_taxo (4, 3, 3);
my $unindexed;
{
my %cache;
tie %cache, 'MLDBM', -Filename => $tmp[0], -Flags => DB_CREATE
or die ( "Cannot create DBM file '$tmp[0]: $!");
my $tm = new TM;
implant ($tm, $taxo);
my $idx = new TM::Index::Match ($tm, cache => \%cache);
# warn "\n# verifying first run, should be medium fast";
my $start = Time::HiRes::time;
verify ($tm, $taxo, 1);
$unindexed = (Time::HiRes::time - $start);
# warn "# ====== total time =============== ".(Time::HiRes::time - $start);
# warn "# verifying second run, should be faster";
$start = Time::HiRes::time;
verify ($tm, $taxo, 1);
my $indexed = (Time::HiRes::time - $start);
ok ($indexed < $unindexed, "measurable speedup with persistent index ($indexed < $unindexed)");
# warn "# ====== total time =============== ".(Time::HiRes::time - $start);
untie %cache;
}
{
my %cache;
tie %cache, 'MLDBM', -Filename => $tmp[0], -Flags => DB_CREATE
or die ( "Cannot open DBM file '$tmp[0]: $!");
# warn Dumper \%cache; exit;
my $tm = new TM;
implant ($tm, $taxo);
my $idx = new TM::Index::Match ($tm, cache => \%cache);
# warn "\n# re-verifying second run, should be as fast";
my $start = Time::HiRes::time;
verify ($tm, $taxo, 1);
my $indexed = (Time::HiRes::time - $start);
ok ($indexed < $unindexed, "measurable speedup with persistent index ($indexed < $unindexed)");
# warn "# ====== total time =============== ".(Time::HiRes::time - $start);
untie %cache;
}
}
require_ok ( 'TM::Index::Reified');
__END__
|