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 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250
|
#!/usr/bin/perl -w
##########################
# DONE
##########################
# Timeout (TI line to set) default 60secs, diffseq needs more
# Pre-process (PP line) command
# Post-process (QQ line) command - e.g. testing database builds, reusing output
# EMBOSS_RC variable to read an extra .embossrc file (for new test databases)
#
##########################
# THINGS TO DO
##########################
#
#
#######################################################################
#
# EMBOSS QA Test Processing
#
# Test line types:
# ID Test name (for the test directory)
# AP Application name (for the command line and for statistics)
# CL Command line (rest of the command line)
# ER error return code
# ## Comment (required double #)
# CC Comment (used in commenting on failed tests, e.g. "Requires SRS"
# DL success or all or keep - whether to delete the files afterwards
# IN Line(s) of standard input
# FI File name (stdout and stderr assumed to exist and be empty unless stated)
# FK Keystrokes output File name (non-text)
# FP File pattern - /regexp/ to be found. Optional count to check exact number.
# FZ [<=>]number File size test. Implicit test for zero size stdout/stderr
# unless stated
# FC [<=>]number File line count test
# UC Comment (used in documenting the usage)
# IC Comment (used in documenting the input files)
# OC Comment (used in documenting the output files)
# RQ Requires (e.g. SRS for tests that need a local getz working)
# // End of test entry
#
# Return codes: see %retcode definition
#
#
# Note:
# timeout fails if the program reaches EOF on stdin
# apparently because it waits for the user to enter something when there
# is no piped input. Fixed by always providing piped stdin, usually empty.
#
# timeout also fails if the program fails to complete - or at least,
# the child process still keeps running. So far, unable to find a way to
# kill it.
sub usage () {
print STDERR "Usage:\n";
print STDERR " qatest.pl [-kk | -ks | -ka] [-t=60] [-wild] [-mcheck] [-noembassy] [-embassy=package] [testnames...]\n";
print STDERR " defaults: -kk -t=60\n";
}
###################################################################
# qatestsystem
#
# system call with pre and post processing
# run as-is on Unix/cygwin
# converted for windows
###################################################################
sub qatestsystem($$$){
my ($pp, $cmd, $qq) = @_;
my $sysstat;
if(!$iswindows) {
$sysstat = system("$pp $cmd $qq");
return $sysstat;
}
# print "Pre '$pp'\n";
# print "Cmd '$cmd'\n";
# print "Post '$qq'\n";
open (BAT, ">qatest.bat") || die "Cannot open qatest.bat";
print BAT "\@echo off\n";
my $c;
my $i=0;
foreach $c (split(/;/, $pp)){
$c =~ s/^ +//;
$c =~ s/ +$//;
$c =~ s/\//\\/g;
$c =~ s/^cp /copy /;
$c =~ s/^rm /del \/q /;
$c =~ s/^(\S+)=/SET $1=/;
if($c eq "") {next}
if($c =~ /export /i) {next}
if($iswindows) {
$c =~ s/~(\S+)/\"\%HOMEDRIVE\%\%HOMEPATH\%$1\"/;
}
$i++;
# print " Pre[$i] '$c'\n";
print BAT "$c\n";
}
print BAT "$cmd\n";
foreach $c (split(/;/, $qq)){
$c =~ s/^ +//;
$c =~ s/ +$//;
$c =~ s/\//\\/g;
$c =~ s/^rm -rf/rmdir \/s \/q /;
$c =~ s/^rm /del \/q /;
$c =~ s/^cp /copy /;
if($c eq "") {next}
if($c =~ /export /i) {next}
if($iswindows) {
$c =~ s/~(\S+)/\"\%HOMEDRIVE\%\%HOMEPATH\%$1\"/;
}
$i++;
# print " Post[$i] '$c'\n";
print BAT "$c\n";
}
close BAT;
$sysstat = system("qatest.bat");
return $sysstat;
}
###################################################################
# runtest
#
# parses the test definition, runs the test, check the results
# stores error reports for the caller
###################################################################
sub runtest ($) {
my ($testdef) = @_; # we pass in the full definition
# print $testdef;
my $idir = 0;
my $ifile = 0;
my $ipatt = 0;
my $ret = 0;
my $odata = "";
my $ip = $iq = 0;
my $i = $j = $k = 0;
my $testerr = "";
my $cmdline = "";
my $testret = 0;
my $testid = "";
my $testin = "";
my $timeout = $timeoutdef;
my $ppcmd = "$ppcmd";
my $qqcmd = "";
my %testfile = ();
my %outfile = ();
my %testdir = ();
my %outdir = ();
my %outdirfiles = ();
my $testq = 0;
my $testa = 0;
my $testpath="";
$packa="unknown";
# these are globals, used by the caller
$globaltestdelete=$defdelete; # global cleanup of test directory
$globalcomment = ""; # global comment in case of expected failure
if($iswindows) {
if($dodebug) {$ppcmd .= "SET EMBOSS_DEBUG=Y;"}
}
else {
if($dodebug) {$ppcmd .= "EMBOSS_DEBUG=Y ;export EMBOSS_DEBUG ;"}
}
# parse the test definition (EMBL-style 2 character prefixes)
foreach $line (split (/^/, $testdef)) {
###print "<$line>\n";
chomp $line;
# first line of the definition - initialise variables
if ($line =~ /^ID\s+(\S+)/) {
$testid = $1;
$testin = "";
$cmdline = "";
$dirname = "";
$ifile=0;
$packa = "unknown";
print LOG "Test <$testid>\n";
if(!$repeattest){
# print "+++ clean up old '$id' directory\n";
if(-e $id && -d $testid) {
# print "+++ calling rmdir\n";
if($iswindows){
$sysstat = system( "rmdir /s /q $testid");
} else {
$sysstat = system( "rm -rf $testid");
}
$status = $sysstat >> 8;
if ($status) {
$testerr = "failed to delete old directory $testid, status $status\n";
print STDERR $testerr;
print LOG $testerr;
}
}
mkdir ("$testid", 0777);
open (SAVEDEF, ">$1/testdef") || die "Cannot save $1/testdef";
print SAVEDEF $testdef;
close (SAVEDEF);
}
}
# other lines
elsif ($line =~ /^\#\#/) {next}
elsif ($line =~ /^CC\s*(.*)/) {$globalcomment .= "** $1\n"}
elsif ($line =~ /^TI\s+(\d+)/) {$timeout = $1}
elsif ($line =~ /^ER\s+(\d+)/) {$testret = $1}
elsif ($line =~ /^RQ\s+(\S+)/) {
if (defined($without{$1})) {
$skipreq++;
return 0;
}
}
elsif ($line =~ /^AP\s+(\S+)/) {
$testapp = $1;
$apcount{$testapp}++;
if (!$simple && !defined($tfm{$testapp})) {
$tfm{$testapp}=0;
if($iswindows) {
$dtop = "$basedir\\doc\\programs";
$dochtml = "$dtop\\html\\$testapp.html";
$doctext = "$dtop\\text\\$testapp.txt";
$docmain = "$dtop\\master\\emboss\\apps\\$testapp.html";
}
else {
$dtop = "$basedir/doc/programs";
$dochtml = "$dtop/html/$testapp.html";
$doctext = "$dtop/text/$testapp.txt";
$docmain = "$dtop/master/emboss/apps/$testapp.html";
}
if (-e "$dochtml") {$tfm{$testapp}++}
else {print STDERR "No HTML docs for $testapp\n";$misshtml++;}
if (-e "$doctext") {$tfm{$testapp}++}
else {print STDERR "No tfm text docs for $testapp\n";$misstext++;}
if (-e "$docmain") {$sf{$testapp}++}
else {print STDERR "No master (sourceforge) docs for $testapp\n";$misssf++;}
}
}
elsif ($line =~ /^DL\s+(success|keep|all)/) {$globaltestdelete = $1}
elsif ($line =~ /^PP\s*(.*)/) {$ppcmd .= "$1 ; "}
elsif ($line =~ /^QQ\s*(.*)/) {$qqcmd .= " ; $1"}
elsif ($line =~ /^IN\s*(.*)/) {$testin .= "$1\n"}
elsif ($line =~ /^IK\s*(.*)/) {$testin .= "$1\n"}
elsif ($line =~ /^AQ\s*(.*)/) {
$testq = 1;
$testapp = $1;
$apcount{$testapp}++;
### no need to test docs for a make check application
}
elsif ($line =~ /^AX\s*(.*)/) {
$testa = 1;
$testapp = $1;
if ($packa eq "unknown") {
print STDERR "No AY line before AX line in test $testid\n";
}
}
elsif ($line =~ /^AA\s*(.*)/) {
$testa = 1;
$testapp = $1;
$apcount{$testapp}++;
if ($packa eq "unknown") {
print STDERR "No AB line before AA line in test $testid\n";
}
$dtop = "../../embassy/$packa/emboss_doc";
if ($doembassy && !defined($tfm{$testapp})) {
$tfm{$testapp}=0;
if (-e "$dtop/html/$testapp.html") {$tfm{$testapp}++}
else {print STDERR "No HTML docs for $testapp\n";$misshtml++;}
if (-e "$dtop/text/$testapp.txt") {$tfm{$testapp}++}
else {print STDERR "No tfm text docs for $testapp\n";$misstext++;}
if (-e "$dtop/master/$testapp.html") {$sf{$testapp}++}
else {print STDERR "No SourceForge docs for $testapp\n";$misssf++;}
}
}
elsif ($line =~ /^AB\s*(.*)/) {$packa = $1}
elsif ($line =~ /^AY\s*(.*)/) {$packa = $1}
elsif ($line =~ /^CL\s+(.*)/) {
$newcmdline = $1;
$newcmdline =~ s/TESTDATA:/$testdatadir/g;
if($iswindows) {
$newcmdline =~ s/~(\S+)/\"\%HOMEDRIVE\%\%HOMEPATH\%$1\"/;
}
if ($cmdline ne "") {
if($iswindows && ($cmdline =~ /\\$/)){
$cmdline =~ s/\\$//g;
}
else {$cmdline .= " "}
}
$cmdline .= $newcmdline;
}
# directoryname - must be unique
elsif ($line =~ /^DI\s+(\S+)/) {
$dirname = $1;
if (defined($outdir{$dirname})) {
$testerr = "$retcode{20} $testid/$dirname\n";
print STDERR $testerr;
print LOG $testerr;
return 20;
}
$outdir{$dirname} = $idir;
print LOG "Known directory [$idir] <$1>\n";
$idir++;
}
# directoryfile - output file count
elsif ($line =~ /^DC\s+(\d+)/) {
$dircount{$dirname} = $1;
if (!$idir) {
$testerr = "$retcode{22} $testid/*/$1\n";
print STDERR $testerr;
print LOG $testerr;
return 20;
}
}
# directoryfile - output file example
elsif ($line =~ /^DF\s+(\S+)/) {
$dirfile = $1;
if (!$idir) {
$testerr = "$retcode{22} $testid/*/$1\n";
print STDERR $testerr;
print LOG $testerr;
return 20;
}
$outdirfiles{$dirname} .= "$dirfile;";
print LOG "Known example in directory [$idir] <$dirname/$1>\n";
}
# filename - must be unique
elsif ($line =~ /^F[IK]\s+(\S+)(\s+binary)?/) {
$filename = $1;
$isbinary = $2;
if(!defined($isbinary)){$isbinary = 0}
if (defined($outfile{$filename})) {
$testerr = "$retcode{16} $testid/$filename\n";
print STDERR $testerr;
print LOG $testerr;
return 16;
}
$outfile{$filename} = $ifile;
$outfilepatt{$ifile} = $ipatt;
print LOG "Known file [$ifile] <$filename>\n";
$ifile++;
$filezero{$ifile} = 0;
$binfile{$ifile-1} = $isbinary;
}
# file pattern(s) - can be many for each file
elsif ($line =~ /^FP\s+((\d+)\s+)?(([si]+)\s+)?\/(.*)\/$/) {
if (defined($2)) {$patcount{$ipatt}=$2}
if (defined($4)) {$patcode{$ipatt}=$4}
$pat = $5;
$pattest{$ipatt} = $pat;
$ipatt++;
}
# line count - maximum one for each file
elsif ($line =~ /^FC\s+([<>=]\s*\d+)/) {
$countpatt = $1;
if (defined($outcount{$ifile-1})) {
$testerr = "$retcode{14} $testid/$filename\n";
print STDERR $testerr;
print LOG $testerr;
return 14;
}
$outcount{$ifile-1} = $countpatt;
if ($countpatt =~ /^[=]\s*0$/) {$filezero{$ifile-1}=1}
}
# file size (greater/less/equal) - maximum one for each file
elsif ($line =~ /^FZ\s+([<>=]\s*\d+)/) {
$sizepatt = $1;
if (defined($outsize{$ifile-1})) {
$testerr = "$retcode{15} $line: $line\n";
print STDERR $testerr;
print LOG $testerr;
return 15;
}
$outsize{$ifile-1} = $sizepatt;
if ($sizepatt =~ /^[=]\s*0$/) {$filezero{$ifile-1}=1}
}
# comments used by documentation scripts
elsif ($line =~ /^UC|^IC|^OC/) {
}
# end of test definition
elsif ($line =~ /^\/\/$/) {next}
# fall through for any unknown lines (bad prefix, or failed to match regexp)
else {
$testerr = "$retcode{1}: $line\n";
print STDERR $testerr;
print LOG $testerr;
return 1;
}
}
if ($testq) { # for "make check" apps (AQ lines) we can skip
if($packa eq "unknown") {
$testpath = "../../emboss/"; # up from the test/qa directory
}
else {
$testpath = "../../embassy/$packa/src/"; # up from the test/qa directory
}
if (! (-e "$testpath$testapp")) {$skipcheck++; print "not found '$testpath$testapp'\n";return 0} # make check not run
if ($testappname && defined($acdname{$testapp}) && $acdname{$testapp}) {
print STDERR "Check application $testapp installed - possible old version\n";
}
$testpath = "../$testpath"; # we run from the test/qa/* subdirectory
}
if ($doembassy && $testa) { # for "embassy" apps (AA lines) we can skip
if ($testappname && !defined($acdname{$testapp})) { # embassy make not run
print STDERR "Embassy application $testapp ($packa) not installed - skip\n";
$globaltestdelete = "all";
$skipembassy++;
return 0;
}
}
# cd to the test directory (created when ID was parsed)
chdir $testid;
# set up stdin always
# we need to hit EOF if it tries to read when there is no input
$starttime = time();
if($repeattest){
system("rm testlog");
}
if(!$repeattest){
open (TESTIN, ">stdin");
if ($testin ne "") {
print TESTIN $testin;
}
close TESTIN;
$stdin = "< stdin";
$timealarm=0;
# run the test with a timeout (default 60 seconds) to catch infinite loops
# The easiest infinite loop is an unexpected prompt, which waits on stdin
eval {
$status = 0;
alarm($timeout);
$cmdstr = "$testpath$testapp $cmdline > stdout 2> stderr $stdin";
# print STDERR "$cmdstr\n";
$sysstat = qatestsystem("$domcheck$ppcmd", "$cmdstr", "$qqcmd");
alarm(0);
$status = $sysstat >> 8;
};
if ($@) { # error from eval block
if ($@ =~ /qatest timeout/) { # timeout signal handler
$timealarm = 1; # set timeout flag and continue
}
else { # other signal - fail
die;
}
}
# Report any timeout
if ($timealarm) {
$testerr = "$retcode{11} ($timeout secs) '$testapp $cmdline $stdin', status $status/$testret\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 11;
}
# report any failed system call
elsif ($status) {
if ($status != $testret) {
$testerr = "$retcode{2} '$testapp $cmdline $stdin', status $status/$testret\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 2;
}
}
# report any run that succeeded where a failure was expected
else {
if ($testret) {
$testerr = "$retcode{5} '$testapp $cmdline $stdin', status $status/$testret\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 5;
}
}
# We have a successful run, no timeouts.
# Check it did what we wanted it to
# Note the run time
}
$endtime = time();
$runtime = $endtime - $starttime;
# Check for a core dump
if (-e "core") {
$testerr = "$retcode{12} $testid\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 12;
}
# Read the file names in the test directory
opendir (DIR, ".");
@allfiles = readdir(DIR);
closedir DIR;
# Check the other files in the test directory
foreach $file (@allfiles) {
if ($file eq ".") {next} # current directory
if ($file eq "..") {next} # parent directory
if ($file eq "stdin") {next} # stdin we created
if ($file eq "testdef") {next} # test definition
if ($file eq "gmon.out") {next} # gccprofile file
$testfile{$file} = 1;
# Special processing for directories
if (-d $file) {
if (!defined($outdir{$file})){ # not in test definition
$testerr = "$retcode{21} <$testid/$file>\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 21;
}
else { # test the directory
$d = $outdir{$file};
print LOG "directory [$d] <$file>\n";
# DC number of files
# DP filename(s)
opendir(DDIR, $file);
$ndfiles = 0;
while($df = readdir(DDIR)) {
if($df =~ /^[.]+$/){next}
$ndfiles++;
$adfiles{$df} = 1;
}
if(defined($dircount{$file})) {
if($dircount{$file} != $ndfiles) {
print STDERR "$dirname: found $ndfiles/$dircount{$file} files\n";
}
}
if(defined($outdirfiles{$file})) {
$dfiles = $outdirfiles{$file};
$dfiles =~ s/;$//;
@dfiles = split(/;/,$dfiles);
%dfiles = ();
foreach $df (@dfiles) {
$dfiles{$df}=0;
if(!defined($adfiles{$df})) {
print STDERR "$dirname/$df not found\n";
}
}
foreach $adf (@adfiles) {
if(!defined($dfiles{$adf})) {
print STDERR "$dirname: $adf not expected\n";
}
}
}
}
next;
}
# stdout and stderr are present (system call creates them)
# and expected to be empty unless the test definition says otherwise
# this tests they are empty if they are not defined
# otherwise they fall through to normal file testing
if ($file eq "stdout" || $file eq "stderr") {
if (!defined($outfile{$file})){ # not in test definition
$size = -s $file;
print LOG "Test empty file $testid/$file\n";
if (testnum("=0", $size)) {
$testerr = "$retcode{6} $testid/$file\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 6;
}
next;
}
}
# This file was not defined (we let extra -debug files through)
if (!defined($outfile{$file})) {
if($iswindows && ($file eq "qatest.bat")) {next}
if($file eq "$testapp.dbg") {next}
if($file eq "$testapp.ax2log") {next}
$testerr = "$retcode{3} $testid/$file\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 3;
}
# File is defined, check its properties
else {
$i = $outfile{$file};
print LOG "file [$i] <$file>\n";
# read the output file - to test patterns and line count
open (OFIL, $file) || die "Cannot open $testid/$file";
$odata = "";
$linecount=0;
while (<OFIL>) {$odata .= $_; $linecount ++;}
close OFIL;
# File size defined - test it
if (defined($outsize{$i})) {
$size = -s $file;
if($iswindows && !$binfile{$i} &&
($file eq "stderr" || $file eq "stdout")) {$size -= $linecount}
print LOG "Test size $size '$outsize{$i}' $testid/$file\n";
if (testnum($outsize{$i}, $size)) {
$testerr = "$retcode{7} $size '$outsize{$i}' $testid/$file\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 7;
}
}
# Test line count (FC)
if (defined($outcount{$i})) {
print LOG "Test linecount $linecount '$outcount{$i}' $testid/$file\n";
if ($binfile{$i}) {
$testerr = "$retcode{8} '$outcount{$i}' BINARY FILE $testid/$file\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 8;
}
if (testnum($outcount{$i}, $linecount)) {
$testerr = "$retcode{8} $linecount '$outcount{$i}' $testid/$file\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 8;
}
}
# check how many patterns were defined for this file
# first is indicated by $outfilepatt
# total number is given by $outfilepatt for the next file
# (or total for last file)
$ip = $outfilepatt{$i};
$j = $i + 1;
if ($j >= $ifile) {$iq = $ipatt}
else {$iq = $outfilepatt{$j}}
###print LOG "Patterns $ip .. ", $iq-1, "\n";
# test whether we should know about file patterns
# we ignore stderr, which can contain user prompts
# but we test stdout which should be empty or have output
if ($ip >= $iq) {
if (!$filezero{$i}) {
if ($file ne "stderr") {
$testerr = "$retcode{17} $testid/$file\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 17;
}
}
}
# loop through each pattern testing the saved data (in $odata)
for ($k=$ip; $k < $iq; $k++) {
# Some patterns have a trailing code s (\n matching '.') i (case insensitive)
# Not clear whether these work correctly in perl 5.005
# these are compiled with qr//mi and so on
if (defined($patcode{$k})) {
##print STDERR "special /m$patcode{$k} pattern '$pattest{$k}'\n";
if ($patcode{$k} eq "s") {$qpat = qr/$pattest{$k}/ms}
elsif ($patcode{$k} eq "i") {$qpat = qr/$pattest{$k}/mi}
elsif ($patcode{$k} eq "is") {$qpat = qr/$pattest{$k}/mis}
elsif ($patcode{$k} eq "si") {$qpat = qr/$pattest{$k}/mis}
}
# simple pattern, compile using qr//m
else {
##print STDERR "standard m pattern '$pattest{$k}'\n";
$qpat = qr/$pattest{$k}/m;
}
# We need to check how often the pattern was found
if (defined($patcount{$k})) {
# We want to find the pattern exactly $pcount times
# (though $pcount can be zero)
$pcount = $patcount{$k};
##print STDERR "Test pattern [pat $k] '$pattest{$k}' ($pcount times) $testid/$file\n";
print LOG "Test pattern [pat $k] '$pattest{$k}' ($pcount times) $testid/$file\n";
# Count the pattern
$pc = 0;
while ($odata =~ /$qpat/g) {
$pc++;
}
# We did not want to find it (defined as count=0)
if ($pc && !$pcount) {
print LOG "$retcode{9} [pat $k] '$pattest{$k}' $testid/$file\n";
$testerr = "$retcode{9} [pat $k] '$pattest{$k}' $testid/$file\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 9;
}
# We should find it $pcount times
elsif ($pc != $pcount) {
print LOG "$retcode{10} [pat $k] '$pattest{$k}' found $pc/$pcount times $testid/$file\n";
$testerr = "$retcode{10} [pat $k] '$pattest{$k}' found $pc/$pcount times $testid/$file\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 10;
}
}
# We only need to check whether the pattern exists
else {
print LOG "Test pattern [pat $k] '$pattest{$k}' $testid/$file\n";
###print STDERR "Test pattern [pat $k] '$pattest{$k}' $testid/$file\n";
if ($odata !~ $qpat) {
print LOG "$retcode{4} [pat $k] '$pattest{$k}' $testid/$file\n";
print LOG "\$odata: '\n$odata'\n";
$testerr = "$retcode{4} [pat $k] '$pattest{$k}' $testid/$file\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 4;
}
}
# done with checking this pattern
}
# done with checking all patterns
}
}
foreach $outtest (keys (%outfile)) {
if (!defined($testfile{$outtest})) {
$testerr = "$retcode{18} $testid/$outtest\n";
print STDERR $testerr;
print LOG $testerr;
chdir ("..");
return 18;
}
}
# done with checking all files in the test directory
# write status information to testlog file in the test directory
open (TESTLOG, ">testlog") || die "Cannot open $testid/testlog";
print TESTLOG $testerr;
print TESTLOG "Runtime $runtime seconds\n";
close TESTLOG;
chdir "..";
# return the return code (zero, because we return the failure codes above)
return $ret;
}
#########################################################################
# testnum
#
# test greater/less/equal for file linecount (FC) and size (FZ) tests
# $test is "> nnn" "< nnn" or "= nnn"
# $val is the actual number to test against
# Returns 0 for success, 1 for failure
#########################################################################
sub testnum ($$) {
my ($test, $val) = @_;
my ($oper, $num) = ($test =~ /([<>=])\s*(\d+)/);
if ($oper eq "=") {
if ($val == $num) {return 0}
}
elsif ($oper eq ">") {
if ($val > $num) {return 0}
}
elsif ($oper eq "<") {
if ($val < $num) {return 0}
}
return 1;
}
#########################################################################
# MAIN PROGRAM
#
# For each test in qatest.dat, call runtest
#########################################################################
$defdelete="success"; # success, all, keep
$timeoutdef=60; # default timeout in seconds
$domcheck="";
$numtests = 0;
$testappname=0;
$misshtml=0;
$misstext=0;
$misssf=0;
%without = ("srs" => 1);
%dotest = ();
%tfm = ();
%sf = ();
%packfail=();
$mainfail=0;
$packa="unknown";
$dowild=0;
$logfile = "qatest.log";
$testwild = "*";
$dodebug=0;
$doembassy=1;
$docheck=1;
$repeattest=0;
open (VERSION, "embossversion -full -filter|") ||
die "Cannot run embossversion";
while (<VERSION>){
if(/System: (\S+)/) {
$os = $1;
if($os =~ /windows/) {$iswindows = 1; $docheck=0; $doembassy=0}
}
if(/BaseDirectory: (\S+)/) {
$basedir = $1;
# print "BaseDirectory: $acddir\n";
}
}
close VERSION;
if($iswindows){
$ppcmd = "SET EMBOSSRC=..\\..\\;SET EMBOSS_RCHOME=N;";
$qatestfileemboss = "$basedir\\test\\qatest.dat";
$acddir = "$basedir\\acd";
chdir "$basedir\\test\\qa";
}
else {
$ppcmd = "EMBOSSRC=../../ ;export EMBOSSRC ;EMBOSS_RCHOME=N ;export EMBOSS_RCHOME ;";
$qatestfileemboss = "$basedir/test/qatest.dat";
$acddir= "$basedir/emboss/acd";
chdir "$basedir/test/qa";
}
$qatestfilemain = $qatestfileemboss;
$simple=0;
foreach $test (@ARGV) {
if ($test =~ /^-(.*)/) {
$opt=$1;
if ($opt eq "kk") {$defdelete="keep"}
elsif ($opt eq "keep") {$defdelete="keep"}
elsif ($opt eq "ks") {$defdelete="success"}
elsif ($opt eq "ka") {$defdelete="all"}
elsif ($opt eq "debug") {$dodebug=1}
elsif ($opt eq "noembassy") {$doembassy=0}
elsif ($opt eq "nocheck") {$docheck=0}
elsif ($opt eq "retest") {$repeattest=1}
elsif ($opt eq "simple") {$simple=1}
elsif ($opt eq "wild") {
$dowild=1;
if(defined($testname)) {
$testwild = $testname;
}
}
elsif ($opt eq "mcheck") {$domcheck="MALLOC_CHECK_=3;export MALLOC_CHECK_;"}
elsif ($opt =~ /without=(\S+)/) {$without{$1}=1}
elsif ($opt =~ /with=(\S+)/) {undef($without{$1})}
elsif ($opt =~ /t=([0-9]+)/) {$timeoutdef=int($1)}
elsif ($opt =~ /logfile=(\S+)/) {$logfile=">$1"} # append to logfile
elsif ($opt =~ /testfile=(\S+)/) {$qatestfilemain="$1"}
elsif ($opt =~ /acd=(\S+)/) {$acddir="$1"}
elsif ($opt =~ /embassy=(\S+)/) {$embassyonly="$1"}
else {print STDERR "+++ unknown option '$opt'\n"; usage()}
}
else {
$testname=$test;
if($dowild) {
$testwild = $testname;
}
$test =~ s/\/$//;
$dotest{$test} = 1;
$numtests++;
}
}
### print STDERR "Timeoutdef: $timeoutdef\n";
### print STDERR "Defdelete: '$defdelete'\n";
$id = "";
$lastid = "";
$testdef = "";
$tcount=0;
$tfail=0;
$tnotest=0;
$skipcheck=0;
$skipreq=0;
$skipembassy=0;
$globaltestdelete=$defdelete;
$globalcomment = "";
$allstarttime = time();
$SIG{ALRM} = sub { print STDERR "+++ timeout handler\n"; die "qatest timeout" };
# predefined return codes for the runtest function
# '99' is only a placeholder for ease of inserting new codes
%retcode = (
"1" => "Bad definition line ",
"2" => "Failed to run",
"3" => "Unknown file",
"4" => "Failed pattern",
"5" => "Unexpected success",
"6" => "Not empty file",
"7" => "Failed size",
"8" => "Failed linecount",
"9" => "Failed unwanted pattern",
"10" => "Failed counted pattern",
"11" => "Timeout",
"12" => "CORE DUMP",
"13" => "Duplicate test id",
"14" => "Duplicate file linecount",
"15" => "Duplicate test file size",
"16" => "Duplicate filename definition",
"17" => "No patterns to test file contents",
"18" => "File not found",
"19" => "Directory not found",
"20" => "Duplicate directory definition",
"21" => "Not empty directory",
"22" => "Undefined directory",
"99" => "Testing"
);
# The relative path is fixed, as are the paths of files in the qatest.dat
# file, so best to keep everything running in the test/qa directory
opendir (ACDDIR, "$acddir") || die "Cannot open ACD directory '$acddir'";
@acdfiles = readdir(ACDDIR);
closedir ACDDIR;
if (!$numtests) {
$testappname = 1;
foreach $acd (@acdfiles) {
if ($acd =~ /^(.*).acd$/) { $acdname{$1} = 0}
}
undef @acdfiles;
if($iswindows) {
open (WOSSNAME, "wossname -alpha -auto|") || die "Cannot run wossname";
}
else {
open (WOSSNAME, "unset EMBOSS_ACDCOMMANDLINE;wossname -alpha -auto|") ||
die "Cannot run wossname";
}
while (<WOSSNAME>) {
if (/^[a-z]\S+/) {
$app = $&;
if (defined($acdname{$app})) {$acdname{$app} = 1}
else {$acdname{$app} = 1} # embassy apps
}
}
close WOSSNAME;
# foreach $app (sort (keys (%acdname))) {
# if ($acdname{$app}) {print STDERR "$app\n"}
# }
}
@testfiles = ("$qatestfilemain");
if($doembassy) {
opendir (EMBASSY, "$basedir/embassy") ||
die "Failed to find embassy directory";
while ($edir = readdir(EMBASSY)) {
if ($edir =~ /^[.]/) {next}
if(defined($embassyonly) && ($embassyonly ne $edir)) {next}
if(-d "$basedir/embassy/$edir") {
if(-e "$basedir/embassy/$edir/test/qatest.dat") {
push @testfiles, "$basedir/embassy/$edir/test/qatest.dat";
}
}
}
}
foreach $qatestfile (@testfiles) {
open (IN, "$qatestfile") || die "Cannot open $qatestfile";
open (LOG, ">$logfile") || die "Cannot open $logfile";
$testdatadir = $qatestfile;
if($iswindows) {
if($qatestfile eq $qatestfilemain) {$testdatadir = "..\\..\\data"}
else {$testdatadir =~ s/qatest.dat$/data\\/g}
}
else {
if($qatestfile eq $qatestfilemain) {$testdatadir = "../../data"}
else {$testdatadir =~ s/qatest.dat$/data\//g}
}
# make qatest.log unbuffered and be sure to reset the current filehandle
$fh = select LOG; $|=1; select $fh;
$ischeck = 0;
$isembassy = 0;
while (<IN>) {
# Save a test when we reach an ID line (ignore any comments in between tests)
if (/^ID\s+(\S+)/) {
$lastid = $id;
$id = $1;
$testdef = "";
$ischeck = 0;
$isembassy = 0;
}
if (/^AA\s+(\S+)/) {$isembassy = 1}
if (/^AX\s+(\S+)/) {$isembassy = 1}
if (/^AB\s+(\S+)/) {$embassypack = $1}
if (/^AY\s+(\S+)/) {
if(defined($embassyonly)) {$embassypack = $embassyonly}
else {$embassypack = $1}
}
if (/^AQ\s+/) {$ischeck = 1}
$testdef .= $_;
# end of definition - fire up the test
if (/^\/\//) {
if (($numtests > 0) && !$dowild && !$dotest{$id}) {next}
if (($numtests > 0) && $dowild && $id !~ /$testwild/) {next}
if($isembassy){
if(!$doembassy) {next}
if(defined($embassyonly) && ($embassyonly ne $embassypack)){$testappname=0;next}
}
elsif(defined($embassyonly)){$testappname=0;next}
if($ischeck && !$docheck) {next}
$result = runtest ($testdef);
$tcount++;
# check the results
# (1) look out for duplicate tests - which overwrite a previous directory
if (defined($saveresult{$id})) {
print STDERR "$id duplicate test name\n";
print LOG "$id duplicate test name\n";
if (!$result) {$result = 13}
}
$saveresult{$id} = $result;
# (2) $result is 0 for success, or a code in %retcode
if ($result) {
# test definitions can have CC comments for expected failures (e.g. SRS needed)
if ($globalcomment ne "") {
print STDERR "$globalcomment";
print LOG "$globalcomment";
}
# Report the error code (to log and to user)
print STDERR "$id test failed code $result $retcode{$result}\n\n";
print LOG "$id test failed code $result $retcode{$result}\n";
$tfail++;
if($packa eq "unknown") {$mainfail++}
else {$packfail{$packa}++}
# Usually we keep failed tests (unless delete is set to 'all')
if ($globaltestdelete eq "all") {
if(!$repeattest){
# print "+++ clean up old '$id' directory\n";
if(-e $id && -d $id) {
# print "+++ calling rmdir\n";
if($iswindows){
$sysstat = system( "rmdir /s /q $id");
} else {
$sysstat = system( "rm -rf $id");
}
$status = $sysstat >> 8;
if ($status) {
$testerr = "failed to delete old directory $id, status $status\n";
print STDERR $testerr;
print LOG $testerr;
}
}
}
}
}
# (3) successful completion
else {
# Note to log (silence to user)
print LOG "test $id success\n";
# usually we delete successful results (unless delete is set to 'keep')
if ($globaltestdelete ne "keep") {
if(!$repeattest){
if($iswindows) {
$sysstat = system( "rmdir /s /q $id");
}
else {
$sysstat = system( "rm -rf $id");
}
$status = $sysstat >> 8;
if ($status) {
$testerr = "failed to delete old directory $id, status $status\n";
print STDERR $testerr;
print LOG $testerr;
}
}
}
}
# new line in the log file before the next test
print LOG "\n";
# clear any global hashes before defining the next test
undef %outfilepatt;
undef %pattest;
undef %patcount;
undef %patcode;
undef %outcount;
undef %outsize;
undef %filezero;
}
}
}
# Final summary
if ($testappname) {
foreach $x (sort (keys (%acdname))) {
if ($acdname{$x}) {
if (!defined($apcount{$x})) {
print STDERR "No test(s) for '$x'\n";
$tnotest++;
}
}
}
}
$totskip = $skipcheck + $skipembassy + $skipreq;
$totall = $tcount - $totskip;
$tpass = $totall - $tfail;
$allendtime = time();
$alltime = $allendtime - $allstarttime;
if($mainfail){
print STDERR "Failed EMBOSS: $mainfail\n";
}
foreach $x (sort(keys(%packfail))) {
if(defined($packfail{$x})) {
print STDERR "Failed $x $packfail{$x}\n";
}
}
print STDERR "Tests total: $totall pass: $tpass fail: $tfail\n";
if(!$simple) {
print STDERR "Skipped: $totskip check: $skipcheck embassy: $skipembassy requirements: $skipreq\n";
print STDERR "No tests: $tnotest\n";
print STDERR "Missing documentation html: $misshtml text: $misstext sourceforge: $misssf\n";
}
print STDERR "Time: $alltime seconds\n";
print LOG "Time: $alltime seconds\n";
exit;
|