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 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
|
#! /usr/bin/perl -w
eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
if 0; #$running_under_some_shell
use strict;
use File::Find ();
use File::Basename;
use Data::Dumper;
use Time::HiRes qw(gettimeofday tv_interval);
$Data::Dumper::Sortkeys = 1;
# for the convenience of &wanted calls, including -eval statements:
use vars qw/*name *dir *prune/;
*name = *File::Find::name;
*dir = *File::Find::dir;
*prune = *File::Find::prune;
my $DOCUMENTATION = 0;
my $INTERNAL_TESTS = 0;
my $VERBOSE = 0;
my $DRYRUN = 0;
my $DEBUG = 0;
my $DEBUG1 = 0;
my $DBNAME = "pgr_test__db__test";
my $DBUSER;
my $DBHOST;
my $DBPORT;
sub Usage {
die "Usage: algorithm-tester.pl -pgver vpg -pgisver vpgis -psql /path/to/psql\n" .
" -pgver vpg - postgresql version\n" .
" -pghost host - postgresql host or socket directory to use\n" .
" -pgport port - postgresql port to use\n" .
" -pguser username - postgresql user role to use\n" .
" -pgisver vpgis - postgis version\n" .
" -pgrver vpgr - pgrouting version\n" .
" -psql /path/to/psql - optional path to psql\n" .
" -v - verbose messages for small debuging\n" .
" -dbg - use when CMAKE_BUILD_TYPE = DEBUG\n" .
" -debug - verbose messages for debuging(enter twice for more)\n" .
" -debug1 - DEBUG1 messages (for timing reports)\n" .
" -clean - dropdb pgr_test__db__test\n" .
" -ignorenotice - ignore NOTICE statements when reporting failures\n" .
" -alg 'dir' - directory to select which algorithm subdirs to test\n" .
" -documentation - ONLY generate documentation examples\n" .
" -h - help\n";
}
print "RUNNING: algorithm-tester.pl " . join(" ", @ARGV) . "\n";
my ($vpg, $postgis_ver, $vpgr, $psql);
my $alg = '';
my @testpath = ("doc/", "src/");
my $clean;
my $ignore;
$postgis_ver = '';
while (my $a = shift @ARGV) {
if ( $a eq '-pgver') {
$vpg = shift @ARGV || Usage();
}
elsif ($a eq '-pghost') {
$DBHOST = shift @ARGV || Usage();
}
elsif ($a eq '-pgport') {
$DBPORT = shift @ARGV || Usage();
}
elsif ($a eq '-pguser') {
$DBUSER = shift @ARGV || Usage();
}
elsif ($a eq '-pgisver') {
$postgis_ver = shift @ARGV || Usage();
$postgis_ver = " VERSION '$postgis_ver'";
}
elsif ($a eq '-pgrver') {
$vpgr = shift @ARGV || Usage();
}
elsif ($a eq '-alg') {
$alg = shift @ARGV || Usage();
if ($alg eq 'doc') {
@testpath = ('doc');
} elsif ($alg eq 'recipes') {
@testpath = ("doc/src/recipes");
} else {
@testpath = ("src/$alg");
}
}
elsif ($a eq '-psql') {
$psql = shift @ARGV || Usage();
die "'$psql' is not executable!\n"
unless -x $psql;
}
elsif ($a =~ /^-h/) {
Usage();
}
elsif ($a =~ /^-clean/) {
$clean = 1;;
}
elsif ($a =~ /^-ignoren/i) {
$ignore = 1;;
}
elsif ($a =~ /^-debug1$/i) {
$DEBUG1 = 1 unless $DOCUMENTATION;
}
elsif ($a =~ /^-debug$/i) {
$DEBUG++;
$VERBOSE = 1;
}
elsif ($a =~ /^-v/i) {
$VERBOSE = 1;
}
elsif ($a =~ /^-doc(umentation)?/i) {
$DOCUMENTATION = 1;
$DEBUG1 = 0; # disbale timing reports during documentation generation
}
elsif ($a =~ /^-dbg/i) {
$INTERNAL_TESTS = 1; #directory internalQueryTests is also tested
}
else {
warn "Error: unknown option '$a'\n";
Usage();
}
}
my $connopts = "";
$connopts .= " -U $DBUSER" if defined $DBUSER;
$connopts .= " -h $DBHOST" if defined $DBHOST;
$connopts .= " -p $DBPORT" if defined $DBPORT;
mysystem("dropdb $connopts $DBNAME") if $clean;
%main::tests = ();
my @cfgs = ();
my %stats = (z_pass=>0, z_fail=>0, z_crash=>0);
my $TMP = "/tmp/pgr-test-runner-$$";
my $TMP2 = "/tmp/pgr-test-runner-$$-2";
my $TMP3 = "/tmp/pgr-test-runner-$$-3";
if (! $psql) {
$psql = findPsql() || die "ERROR: can not find psql, specify it on the command line.\n";
}
my $OS = "$^O";
if (length($psql)) {
if ($OS =~ /msys/
|| $OS =~ /MSWin/) {
$psql = "\"$psql\"";
}
}
print "Operative system found: $OS";
# Traverse desired filesystems
File::Find::find({wanted => \&want_tests}, @testpath);
die "Error: no test files found. Run this command from the top level pgRouting directory!\n" unless @cfgs;
createTestDB($DBNAME);
$vpg = '' if ! $vpg;
$postgis_ver = '' if ! $postgis_ver;
# cfgs = SET of configuration file names
# c one file in cfgs
for my $c (@cfgs) {
my $found = 0;
# load the config file for the tests
require $c;
print "test.conf = $c\n" if $VERBOSE;
print Data::Dumper->Dump([\%main::tests],['test']) if $VERBOSE;
if ($main::tests{any} && !$DOCUMENTATION) {
push @{$stats{$c}}, run_test($c, $main::tests{any});
$found++;
}
elsif ($main::tests{any}{documentation} && $DOCUMENTATION) {
push @{$stats{$c}}, run_test($c, $main::tests{any});
$found++;
}
if (! $found) {
$stats{$c} = "No tests were found for '$vpg-$postgis_ver'!";
}
}
dropTestDB();
print Data::Dumper->Dump([\%stats], ['stats']);
unlink $TMP;
unlink $TMP2;
unlink $TMP3;
if ($stats{z_crash} > 0 || $stats{z_fail} > 0) {
exit 1; # signal we had failures
}
exit 0; # signal we passed all the tests
# c one file in cfgs
# t contents of array that has keys comment, data and test
sub run_test {
my $c = shift;
my $t = shift;
my %res = ();
my $dir = dirname($c);
$res{comment} = $t->{comment} if $t->{comment};
#t->{data} referencing the key data of the data files
my $singleDB = "____pgr___single_test___";
for my $testName (@{$t->{singleTest}}) {
createTestDB($singleDB);
mysystem("$psql $connopts -A -t -q -f tools/testers/sampledata.sql' $singleDB >> $TMP2 2>\&1 ");
for my $x (@{$t->{data}}) {
mysystem("$psql $connopts -A -t -q -f '$dir/$x' $singleDB >> $TMP2 2>\&1 ");
}
process_single_test($testName, $dir, $singleDB,\%res);
mysystem("dropdb $connopts $singleDB");
}
mysystem("$psql $connopts -A -t -q -f tools/testers/sampledata.sql $DBNAME >> $TMP2 2>\&1 ");
for my $x (@{$t->{data}}) {
mysystem("$psql $connopts -A -t -q -f '$dir/$x' $DBNAME >> $TMP2 2>\&1 ");
}
if ($INTERNAL_TESTS) {
for my $x (@{$t->{debugtests}}) {
process_single_test($x, $dir,, $DBNAME, \%res)
}
}
if ($DOCUMENTATION) {
for my $x (@{$t->{documentation}}) {
process_single_test($x, $dir,, $DBNAME, \%res)
}
}
else {
for my $x (@{$t->{tests}}) {
process_single_test($x, $dir,, $DBNAME, \%res)
}
if ($OS =~ /msys/ || $OS=~/MSW/ || $OS =~ /cygwin/) {
for my $x (@{$t->{windows}}) {
process_single_test($x, $dir,, $DBNAME, \%res)
}
} elsif ($OS=~/Mac/ || $OS=~/dar/) {
for my $x (@{$t->{macos}}) {
process_single_test($x, $dir,, $DBNAME, \%res)
}
} else {
for my $x (@{$t->{linux}}) {
process_single_test($x, $dir,, $DBNAME, \%res)
}
}
}
return \%res;
}
sub process_single_test{
my $x = shift;
my $dir = shift;
my $database = shift;
my $res = shift;
#each tests will use clean data
print "Processing test: $dir/$x\n";
my $t0 = [gettimeofday];
#TIN = test_input_file
open(TIN, "$dir/$x.test.sql") || do {
$res->{"$dir/$x.test.sql"} = "FAILED: could not open '$dir/$x.test.sql' : $!";
$stats{z_fail}++;
next;
};
#reason of opening conection is because the set client_min_messages to warning;
if ($DOCUMENTATION) {
mysystem("mkdir -p '$dir/../doc' "); # make sure the directory exists
open(PSQL, "|$psql $connopts --set='VERBOSITY terse' -e $database > $dir/../doc/$x.queries 2>\&1 ") || do {
$res->{"$dir/$x.test.sql"} = "FAILED: could not open connection to db : $!";
$stats{z_fail}++;
next;
};
print PSQL "set client_min_messages to WARNING;\n" if $ignore;
print PSQL "set client_min_messages to DEBUG1;\n" if $DEBUG1;
}
else {
open(PSQL, "|$psql $connopts --set='VERBOSITY terse' -A -t -q $database > $TMP 2>\&1 ") || do {
$res->{"$dir/$x.test.sql"} = "FAILED: could not open connection to db : $!";
if (!$INTERNAL_TESTS) {
$stats{z_fail}++;
}
next;
};
}
print PSQL "set client_min_messages to WARNING;\n" if $ignore;
print PSQL "set client_min_messages to DEBUG1;\n" if $DEBUG1;
my @d = ();
@d = <TIN>; #reads the whole file into the array @d
print PSQL @d; #prints the whole fle stored in @d
close(PSQL); #executes everything
close(TIN); #closes the input file /TIN = test input
return if $DOCUMENTATION;
my $dfile;
my $dfile2;
if ($ignore) { #decide how to compare results, if ignoring or not ignoring
$dfile2 = $TMP2;
mysystem("grep -v NOTICE '$TMP' | grep -v '^CONTEXT:' | grep -v '^PL/pgSQL function' > $dfile2");
$dfile = $TMP3;
mysystem("grep -v NOTICE '$dir/$x.result' | grep -v '^CONTEXT:' | grep -v '^PL/pgSQL function' > $dfile");
}
elsif ($DEBUG1) { #to delete CONTEXT lines
$dfile2 = $TMP2;
mysystem("grep -v '^CONTEXT:' '$TMP' | grep -v '^PL/pgSQL function' > $dfile2");
$dfile = $TMP3;
mysystem("grep -v '^CONTEXT:' '$dir/$x.result' | grep -v '^PL/pgSQL function' > $dfile");
}
else {
$dfile = "$dir/$x.result";
$dfile2 = $TMP;
}
if (! -f "$dir/$x.result") {
$res->{"$dir/$x.test.sql"} = "\nFAILED: result file missing : $!";
$stats{z_fail}++;
next;
}
# use diff -w to ignore white space differences like \r vs \r\n
#ignore white spaces when comparing
#dfile is expected results
#dfile2 is the actual results
my $r = `diff -w '$dfile' '$dfile2' `;
#looks for removing leading blanks and trailing blanks
$r =~ s/^\s*|\s*$//g;
if ($r =~ /connection to server was lost/) {
$res->{"$dir/$x.test.sql"} = "CRASHED SERVER: $r";
$stats{z_crash}++;
# allow the server some time to recover from the crash
warn "CRASHED SERVER: '$dir/$x.test.sql', sleeping 5 ...\n";
sleep 20;
}
#if the diff has 0 length then everything was the same, so here we detect changes
elsif (length($r)) {
$res->{"$dir/$x.test.sql"} = "FAILED: $r";
$stats{z_fail}++ unless $DEBUG1;
}
else {
$res->{"$dir/$x.test.sql"} = "Passed";
$stats{z_pass}++;
}
print " test run time: " . tv_interval($t0, [gettimeofday]) . "\n";
}
sub createTestDB {
my $databaseName = shift;
dropTestDB() if dbExists($databaseName);
my $template;
my $dbver = getServerVersion();
my $dbshare = getSharePath($dbver);
if ($DEBUG) {
print "-- DBVERSION: $dbver\n";
print "-- DBSHARE: $dbshare\n";
}
# first create a database with postgis installed in it
if (version_greater_eq($dbver, '9.1') &&
-f "$dbshare/extension/postgis.control") {
mysystem("createdb $connopts $databaseName");
die "ERROR: Failed to create database '$databaseName'!\n"
unless dbExists($databaseName);
my $encoding = '';
if ($OS =~ /msys/
|| $OS =~ /MSWin/) {
$encoding = "SET client_encoding TO 'UTF8';";
}
print "-- Trying to install postgis extension $postgis_ver\n" if $DEBUG;
mysystem("$psql $connopts -c \"$encoding create extension postgis $postgis_ver \" $databaseName");
# print "-- Trying to install pgTap extension \n" if $DEBUG;
# system("$psql $connopts -c \"$encoding create extension pgtap \" $databaseName");
# if ($? != 0) {
# print "Failed: create extension pgtap\n" if $VERBOSE || $DRYRUN;
# die;
# }
}
#
# else {
# if ($vpgis && dbExists("template_postgis_$vpgis")) {
# $template = "template_postgis_$vpgis";
# }
# elsif (dbExists('template_postgis')) {
# $template = "template_postgis";
# }
# else {
# die "ERROR: Could not find an appropriate template_postgis database!\n";
# }
# print "-- Trying to install postgis from $template\n" if $DEBUG;
# mysystem("createdb $connopts -T $template $databaseName");
# sleep(2);
# die "ERROR: Failed to create database '$databaseName'!\n"
# if ! dbExists($databaseName);
# }
# next we install pgrouting into the new database
if (version_greater_eq($dbver, '9.1') &&
-f "$dbshare/extension/postgis.control") {
my $myver = '';
if ($vpgr) {
$myver = " VERSION '$vpgr'";
}
print "-- Trying to install pgrouting extension $myver\n" if $DEBUG;
mysystem("$psql $connopts -c \"create extension pgrouting $myver\" $databaseName");
}
elsif ($vpgr && -f "$dbshare/extension/pgrouting--$vpgr.sql") {
print "-- Trying to install pgrouting from '$dbshare/extension/pgrouting--$vpgr.sql'\n" if $DEBUG;
mysystem("$psql $connopts -f '$dbshare/extension/pgrouting--$vpgr.sql' $databaseName");
}
else {
my $find = `find "$dbshare/contrib" -name pgrouting.sql | sort -r -n `;
my @found = split(/\n/, $find);
my $file = shift @found;
if ($file && length($file)) {
print "-- Trying to install pgrouting from '$file'\n" if $DEBUG;
mysystem("$psql $connopts -f '$file' $databaseName");
}
else {
mysystem("ls -alR $dbshare") if $DEBUG;
die "ERROR: failed to install pgrouting into the database!\n";
}
}
# now verify that we have pgrouting installed
my $pgrv = `$psql $connopts -c "select pgr_version()" $databaseName`;
die "ERROR: failed to install pgrouting into the database!\n"
unless $pgrv;
print `$psql $connopts -c "select version();" postgres `, "\n";
print `$psql $connopts -c "select postgis_full_version();" $databaseName `, "\n";
print `$psql $connopts -c "select pgr_version();" $databaseName `, "\n";
}
sub dropTestDB {
mysystem("dropdb $connopts $DBNAME");
}
sub version_greater_eq {
my ($a, $b) = @_;
return 0 if !$a || !$b;
my @a = split(/\./, $a);
my @b = split(/\./, $b);
my $va = 0;
my $vb = 0;
while (@a || @b) {
$a = shift @a || 0;
$b = shift @b || 0;
$va = $va*1000+$a;
$vb = $vb*1000+$b;
}
return 0 if $va < $vb;
return 1;
}
sub getServerVersion {
my $v = `$psql $connopts -q -t -c "select version()" postgres`;
print "$psql $connopts -q -t -c \"select version()\" postgres\n # RETURNED: $v\n" if $VERBOSE;
if ($v =~ m/PostgreSQL (\d+(\.\d+)?(\.\d+)?)/) {
print " # Got ($1)\n" if $VERBOSE;
return $1;
}
return undef;
}
sub dbExists {
my $dbname = shift;
my $isdb = `$psql $connopts -l | grep $dbname`;
$isdb =~ s/^\s*|\s*$//g;
return length($isdb);
}
sub findPsql {
my $psql = `which psql`;
$psql =~ s/^\s*|\s*$//g;
print "which psql = $psql\n" if $VERBOSE;
return length($psql)?$psql:undef;
}
# getSharePath is complicated by the fact that on Debian we can have multiple
# versions installed in a cluster. So we get the DB version by connectiong
# to the port for the server we want. Then we get the share path for the
# newest version od pg installed on the cluster. And finally we change the
# in the path to the version of the server.
sub getSharePath {
my $pg = shift;
my $share;
my $isdebian = -e "/etc/debian_version";
my $pg_config = `which pg_config`;
$pg_config =~ s/^\s*|\s*$//g;
print "which pg_config = $pg_config\n" if $VERBOSE;
if (length($pg_config)) {
$share = `"$pg_config" --sharedir`;
$share =~ s/^\s*|\s*$//g;
if ($isdebian) {
$share =~ s/(\d+(\.\d+)?)$/$pg/;
if (length($share) && -d $share) {
return $share;
}
} else {
return "$share"
}
}
die "Could not determine the postgresql version" unless $pg;
$pg =~ s/^(\d+(\.\d+)).*$/$1/;
$share = "/usr/share/postgresql/$pg";
return $share if -d $share;
$share = "/usr/local/share/postgresql/$pg";
return $share if -d $share;
die "Could not determine the postgresql share dir for ($pg)!\n";
}
sub mysystem {
my $cmd = shift;
print "$cmd\n" if $VERBOSE || $DRYRUN;
system($cmd) unless $DRYRUN;
}
sub want_tests {
# /^bd_d.*\z/s &&
# ($File::Find::prune = 1)
# ||
/^test\.conf\z/s &&
push @cfgs, $name;
}
|