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
|
#############################################################################
##
#W testutil.g GAP Library Thomas Breuer
#W Frank Celler
##
#H @(#)$Id: testutil.g,v 4.1.2.5 2005/08/23 09:22:07 gap Exp $
##
#Y Copyright (C) 2005 The GAP Group
##
## This file contains utilities for running tests.
## It is not read with the library when {\GAP} is started.
##
Revision.( "tst/testutil_g" ) :=
"@(#)$Id: testutil.g,v 4.1.2.5 2005/08/23 09:22:07 gap Exp $";
#############################################################################
##
#F RunStandardTests( <testfiles>[, <renormalize>] )
##
## Let <testfiles> be a list of pairs consisting of a file name, relative to
## the `tst' directory of the {\GAP} distribution, and a scaling factor
## that is proportional to the expected runtime when the file is read with
## `ReadTest'.
## `RunStandardTests' applies `ReadTest' to the files listed in <testfiles>,
## in increasing order of the expected runtime,
## such that the differences between the actual output and the one that is
## prescribed in the test files are printed.
## Additionally, information about the file currently being read and the
## runtime is printed.
##
## If a second argument `true' is given, the scaling factors in the
## processed files are replaced by $10^5$ times the runtime in milliseconds.
## Of course this runtime depends on the hardware, so this renormalization
## should be executed on a ``typical'' machine, which should fit to the
## information in the file `tst/testall.g' and in the documentation file
## `doc/ref/install.tex'.
##
BindGlobal( "RunStandardTests", function( arg )
local testfiles, renormalize, sizescreen, stop_TEST, infoRead1,
infoRead2, count, totaltime, totalprev, prod, dir, i, name, info,
time, stone, new, oldcontents, pos, newcontents;
# Get and check the arguments.
if Length( arg ) = 0 or Length( arg ) > 2 or not IsList( arg[1] ) then
Error( "usage: RunStandardTests( <testfiles>[, <renormalize>] )" );
fi;
testfiles:= arg[1];
renormalize:= Length( arg ) = 2 and arg[2] = true;
# Initialize variables that must be global.
GAPInfo.TestData:= rec( results:= [] );
sizescreen:= SizeScreen();
# Replace the `STOP_TEST' function by one that collects statistical data.
stop_TEST := STOP_TEST;
STOP_TEST := function( file, fac )
Add( GAPInfo.TestData.results,
[ file, fac, Runtime() - GAPInfo.TestData.START_TIME ] );
end;
# Print a header.
Print( "Architecture: ", GAPInfo.Architecture, "\n\n",
"test file GAP4stones time(msec)\n",
"-------------------------------------------\n" );
# Switch off info messages during the tests.
infoRead1 := InfoRead1; InfoRead1 := Ignore;
infoRead2 := InfoRead2; InfoRead2 := Ignore;
# Loop over the test files.
count:= 0;
totaltime:= 0;
totalprev:= 0;
prod:= 1;
dir:= DirectoriesLibrary( "tst" );
testfiles:= ShallowCopy( testfiles );
Sort( testfiles, function( a, b ) return a[2] < b[2]; end );
for i in [ 1 .. Length( testfiles ) ] do
name:= Filename( dir, testfiles[i][1] );
Print( "testing: ", name, "\n" );
ReadTest( name );
if Length( GAPInfo.TestData.results ) < i then
Print( "#E Add a `STOP_TEST' command to the file `", name, "'!\n" );
GAPInfo.TestData.results[i]:= "dummy";
else
info:= GAPInfo.TestData.results[i];
if info[1] <> testfiles[i][1] then
Print( "#E Replace `", info[1],
"' in the `STOP_TEST' command of `", name, "'!\n" );
fi;
time:= info[3];
if 500 < time then
count:= count + 1;
totaltime:= totaltime + time;
totalprev:= totalprev + info[2];
stone := QuoInt( info[2], time );
prod:= prod * stone;
else
stone := 0;
fi;
Print( FormattedString( testfiles[i][1], -20 ),
FormattedString( stone, 8 ),
FormattedString( time, 15 ) );
if i < Length( testfiles ) and IsPosRat( testfiles[i+1][2] )
and totalprev <> 0 then
Print( " (next ~ ",
Int( totaltime * testfiles[i+1][2] / 10^3 / totalprev ),
" sec)" );
fi;
Print( "\n" );
if renormalize then
new:= 10^5 * time;
if info[2] = infinity or
( info[2] <> 0 and
( ( new >= info[2] and new / info[2] < 105/100 ) or
( new <= info[2] and new / info[2] > 95/100 ) ) ) then
Print( "#I scaling factor in `", name, "' unchanged\n" );
else
oldcontents:= StringFile( name );
pos:= PositionSublist( oldcontents, "STOP_TEST" );
newcontents:= oldcontents{ [ 1 .. pos-1 ] };
Append( newcontents, "STOP_TEST( \"" );
Append( newcontents, testfiles[i][1] );
Append( newcontents, "\", " );
Append( newcontents, String( new ) );
Append( newcontents, " );" );
pos:= PositionSublist( oldcontents, ";", pos );
Append( newcontents,
oldcontents{ [ pos + 1 .. Length( oldcontents ) ] } );
# Save the old file, and print a new file.
Exec( Concatenation( "mv ", name, " ", name, "~" ) );
SizeScreen( [ 1000 ] );
PrintTo( name, newcontents );
Print( "#I `", name, "' replaced:\n" );
SizeScreen( sizescreen );
Exec( Concatenation( "diff ", name, "~ ", name ) );
fi;
fi;
fi;
od;
# Print statistics information.
Print("-------------------------------------------\n");
if count = 0 then
count:= 1;
fi;
Print( "total",
FormattedString( RootInt( prod, count ), 23 ),
FormattedString( totaltime, 15 ), "\n\n" );
# Reset the changed globals.
InfoRead1 := infoRead1;
InfoRead2 := infoRead2;
STOP_TEST := stop_TEST;
GAPInfo.TestData:= rec();
end );
#############################################################################
##
#F CreateTestallFile()
##
## replaces the file `tst/testall.g' by a file that reflects the current
## contents of the `tst' directory, that is, all those files in `tst/*.tst'
## are listed that contain the substring `To be listed in testall.g';
## the scaling factors in the `STOP_TEST' calls in the files are inserted
## in the list entries.
##
BindGlobal( "CreateTestallFile", function()
local dir, oldfile, oldcontents, pos, newcontents, error, name, file,
filecontents, stoppos, stonepos;
dir:= DirectoriesLibrary( "tst" );
oldfile:= Filename( dir, "testall.g" );
if oldfile = fail then
Error( "no file `testall.g' found" );
fi;
oldcontents:= StringFile( oldfile );
pos:= PositionSublist( oldcontents, "RunStandardTests( [" );
if pos = fail then
Print( "#E no substring `RunStandardTests( [' in `testall.g'\n" );
return false;
fi;
newcontents:= oldcontents{ [ 1 .. pos-1 ] };
Append( newcontents, "RunStandardTests( [\n" );
error:= false;
for name in SortedList( DirectoryContents( Filename( dir, "" ) ) ) do
if 4 < Length( name )
and name{ [ Length( name ) - 3 .. Length( name ) ] } = ".tst" then
file:= Filename( dir, name );
filecontents:= StringFile( file );
if PositionSublist( filecontents, "To be listed in testall.g" )
<> fail then
if PositionSublist( filecontents, "START_TEST" ) = fail then
error:= true;
Print( "#E no `START_TEST' in `", file, "'\n" );
else
stoppos:= PositionSublist( filecontents, "STOP_TEST( \"" );
if stoppos = fail then
error:= true;
Print( "#E no `STOP_TEST( \"' in `", file, "'\n" );
elif filecontents{ [ stoppos+12 .. stoppos+12+Length( name ) ] }
<> Concatenation( name, "\"" ) then
error:= true;
Print( "#E corrupted `STOP_TEST' command in `", file, "'\n" );
else
stonepos:= PositionSublist( filecontents, ");", stoppos );
Append( newcontents, " [" );
Append( newcontents,
filecontents{ [ stoppos+10 .. stonepos-1 ] } );
Append( newcontents, "],\n" );
fi;
fi;
fi;
fi;
od;
if error then
return false;
fi;
Append( newcontents, "] )" );
# Append the part behind the list.
pos:= Position( oldcontents, ';', pos );
if pos = fail then
Print( "#E no semicolon behind the list in `testall.g'\n" );
return false;
fi;
Append( newcontents, oldcontents{ [ pos .. Length( oldcontents ) ] } );
if oldcontents = newcontents then
Print( "#I `testall.g' unchanged\n" );
else
# Save the old file as `testall.g~', and print a new `testall.g'.
Exec( Concatenation( "mv ", oldfile, " ", oldfile, "~" ) );
PrintTo( oldfile, newcontents );
Print( "#I `testall.g' replaced:\n" );
Exec( Concatenation( "diff ", oldfile, "~ ", oldfile ) );
fi;
return true;
end );
#############################################################################
##
#F CreatePackageTestsInput( <scriptfile>, <outfiles>, <gap> )
##
## writes the file <scriptfile> that starts a new {\GAP} for each test file
## of a package (given by the component `TestFile' in the record stored in
## its `PackageInfo.g' file) and reads this file;
## the output of all tests is collected in the files <outfiles>
## (which is a pair of two filenames),
## and {\GAP} is started as <gap> (including all command line options).
## Each file is actually run twice, once with no other package loaded
## and once with all available packages loaded.
##
BindGlobal( "CreatePackageTestsInput", function( scriptfile, outfiles, gap )
local result, name, entry, pair;
SizeScreen( [ 1000 ] );
InitializePackagesInfoRecords( false );
result:= "";
for name in GAPInfo.PackagesNames do
if LoadPackage( name ) <> fail then
for entry in GAPInfo.PackagesInfo.( name ) do
if IsBound( entry.InstallationPath )
and IsBound( entry.TestFile ) then
for pair in TransposedMat( [ outfiles, [ "false", "true" ] ] ) do
Append( result, Concatenation(
"echo 'RunPackageTests( \"", name,
"\", \"", entry.Version, "\", \"", entry.TestFile,
"\", ", pair[2], " );' | ", gap, " > ",
pair[1], ".", name, "\n" ) );
od;
fi;
od;
fi;
od;
PrintTo( scriptfile, result );
end );
#############################################################################
##
#F RunPackageTests( <pkgname>, <version>, <testfile>, <other> )
##
## loads the package <pkgname> in version <version>,
## and reads the file <testfile> (a path relative to the package directory).
## If <other> is `true' then all other available packages are also loaded.
##
## The file <testfile> can either be a file that contains `ReadTest'
## statements and therefore must be read with `Read',
## or it can be a file that itself must be read with `ReadTest';
## the latter is detected from the occurrence of a substring
## `"gap> START_TEST("' in the file.
##
BindGlobal( "RunPackageTests", function( pkgname, version, testfile, other )
local file, str;
if LoadPackage( pkgname, Concatenation( "=", version ) ) = fail then
Print( "#E RunPackageTests: package `",
pkgname, "' (version ", version, ") not loadable\n" );
return;
fi;
if other = true then
LoadAllPackages();
fi;
Print( "#I RunPackageTests( \"", pkgname, "\", \"", version, "\", \"",
testfile, "\", ", other, " ):\n" );
GAPInfo.SystemInformation( true, true );
file:= Filename( DirectoriesPackageLibrary( pkgname, "" ), testfile );
str:= StringFile( file );
if not IsString( str ) then
Print( "#E RunPackageTests: file `", testfile, "' for package `",
pkgname, "' (version ", version, ") not readable\n" );
return;
fi;
if PositionSublist( str, "gap> START_TEST(" ) = fail then
if not READ( file ) then
Print( "#E RunPackageTests: file `", testfile, "' for package `",
pkgname, "' (version ", version, ") not read\n" );
fi;
else
if not ReadTest( file ) then
Print( "#E RunPackageTests: file `", testfile, "' for package `",
pkgname, "' (version ", version, ") not read\n" );
fi;
fi;
Print( "#I RunPackageTests( ... ): runtime ", Runtime(), "\n" );
end );
#############################################################################
##
#E
|