zstd/tests/README.md

144 lines
7.5 KiB
Markdown
Raw Normal View History

2016-08-29 04:04:26 -07:00
Programs and scripts for automated testing of Zstandard
=======================================================
2016-06-10 03:53:39 -07:00
2016-08-24 23:47:18 -07:00
This directory contains the following programs and scripts:
2016-08-25 01:07:20 -07:00
- `datagen` : Synthetic and parametrable data generator, for tests
- `fullbench` : Precisely measure speed for each zstd inner functions
- `fuzzer` : Test tool, to check zstd integrity on target platform
- `paramgrill` : parameter tester for zstd
- `test-zstd-speed.py` : script for testing zstd speed difference between commits
- `test-zstd-versions.py` : compatibility test between zstd versions stored on Github (v0.1+)
2016-08-25 01:42:49 -07:00
- `zbufftest` : Test tool to check ZBUFF (a buffered streaming API) integrity
2016-08-25 01:07:20 -07:00
- `zstreamtest` : Fuzzer test tool for zstd streaming API
2017-02-23 10:27:00 -08:00
- `legacy` : Test tool to test decoding of legacy zstd frames
- `decodecorpus` : Tool to generate valid Zstandard frames, for verifying decoder implementations
2016-08-24 23:47:18 -07:00
2016-08-25 01:07:20 -07:00
#### `test-zstd-versions.py` - script for testing zstd interoperability between versions
2016-06-10 03:53:39 -07:00
This script creates `versionsTest` directory to which zstd repository is cloned.
2017-02-23 10:27:00 -08:00
Then all tagged (released) versions of zstd are compiled.
2016-06-10 03:53:39 -07:00
In the following step interoperability between zstd versions is checked.
2016-08-25 01:07:20 -07:00
#### `test-zstd-speed.py` - script for testing zstd speed difference between commits
2016-06-10 03:53:39 -07:00
This script creates `speedTest` directory to which zstd repository is cloned.
Then it compiles all branches of zstd and performs a speed benchmark for a given list of files (the `testFileNames` parameter).
After `sleepTime` (an optional parameter, default 300 seconds) seconds the script checks repository for new commits.
If a new commit is found it is compiled and a speed benchmark for this commit is performed.
2016-06-10 03:53:39 -07:00
The results of the speed benchmark are compared to the previous results.
If compression or decompression speed for one of zstd levels is lower than `lowerLimit` (an optional parameter, default 0.98) the speed benchmark is restarted.
If second results are also lower than `lowerLimit` the warning e-mail is send to recipients from the list (the `emails` parameter).
2016-06-10 04:59:08 -07:00
Additional remarks:
- To be sure that speed results are accurate the script should be run on a "stable" target system with no other jobs running in parallel
- Using the script with virtual machines can lead to large variations of speed results
- The speed benchmark is not performed until computers' load average is lower than `maxLoadAvg` (an optional parameter, default 0.75)
- The script sends e-mails using `mutt`; if `mutt` is not available it sends e-mails without attachments using `mail`; if both are not available it only prints a warning
2016-06-10 03:53:39 -07:00
The example usage with two test files, one e-mail address, and with an additional message:
```
./test-zstd-speed.py "silesia.tar calgary.tar" "email@gmail.com" --message "tested on my laptop" --sleepTime 60
```
To run the script in background please use:
```
nohup ./test-zstd-speed.py testFileNames emails &
```
2016-06-10 03:53:39 -07:00
The full list of parameters:
```
positional arguments:
testFileNames file names list for speed benchmark
emails list of e-mail addresses to send warnings
optional arguments:
-h, --help show this help message and exit
--message MESSAGE attach an additional message to e-mail
--lowerLimit LOWERLIMIT
send email if speed is lower than given limit
--maxLoadAvg MAXLOADAVG
maximum load average to start testing
--lastCLevel LASTCLEVEL
last compression level for testing
--sleepTime SLEEPTIME
frequency of repository checking in seconds
```
2017-02-23 10:27:00 -08:00
#### `decodecorpus` - tool to generate Zstandard frames for decoder testing
Command line tool to generate test .zst files.
This tool will generate .zst files with checksums,
as well as optionally output the corresponding correct uncompressed data for
extra verfication.
Example:
```
./decodecorpus -ptestfiles -otestfiles -n10000 -s5
```
will generate 10,000 sample .zst files using a seed of 5 in the `testfiles` directory,
with the zstd checksum field set,
as well as the 10,000 original files for more detailed comparison of decompression results.
```
./decodecorpus -t -T1mn
```
will choose a random seed, and for 1 minute,
generate random test frames and ensure that the
zstd library correctly decompresses them in both simple and streaming modes.
#### `paramgrill` - tool for generating compression table parameters and optimizing parameters on file given constraints
Full list of arguments
```
-T# : set level 1 speed objective
-B# : cut input into blocks of size # (default : single block)
-S : benchmarks a single run (example command: -Sl3w10h12)
w# - windowLog
h# - hashLog
c# - chainLog
s# - searchLog
l# - minMatch
t# - targetLength
S# - strategy
L# - level
2018-08-16 17:22:29 -07:00
--zstd= : Single run, parameter selection syntax same as zstdcli with more parameters
(Added forceAttachDictionary / fadt)
When invoked with --optimize, this represents the sample to exceed.
--optimize= : find parameters to maximize compression ratio given parameters
2018-08-16 17:22:29 -07:00
Can use all --zstd= commands to constrain the type of solution found in addition to the following constraints
2018-07-27 16:49:33 -07:00
cSpeed= : Minimum compression speed
dSpeed= : Minimum decompression speed
cMem= : Maximum compression memory
lvl= : Searches for solutions which are strictly better than that compression lvl in ratio and cSpeed,
stc= : When invoked with lvl=, represents percentage slack in ratio/cSpeed allowed for a solution to be considered (Default 100%)
2018-07-27 16:49:33 -07:00
: In normal operation, represents percentage slack in choosing viable starting strategy selection in choosing the default parameters
2018-08-16 17:22:29 -07:00
(Lower value will begin with stronger strategies) (Default 90%)
speedRatio= (accepts decimals)
: determines value of gains in speed vs gains in ratio
2018-08-16 17:22:29 -07:00
when determining overall winner (default 5 (1% ratio = 5% speed)).
2018-08-15 14:00:57 -07:00
tries= : Maximum number of random restarts on a single strategy before switching (Default 5)
2018-08-16 17:22:29 -07:00
Higher values will make optimizer run longer, more chances to find better solution.
memLog : Limits the log of the size of each memotable (1 per strategy). Will use hash tables when state space is larger than max size.
Setting memLog = 0 turns off memoization
2018-08-15 14:29:49 -07:00
--display= : specifiy which parameters are included in the output
can use all --zstd parameter names and 'cParams' as a shorthand for all parameters used in ZSTD_compressionParameters
2018-08-16 17:22:29 -07:00
(Default: display all params available)
-P# : generated sample compressibility (when no file is provided)
-t# : Caps runtime of operation in seconds (default : 99999 seconds (about 27 hours ))
-v : Prints Benchmarking output
-D : Next argument dictionary file
-s : Benchmark all files separately
-q : Quiet, repeat for more quiet
2018-08-16 17:22:29 -07:00
-q Prints parameters + results whenever a new best is found
-qq Only prints parameters whenever a new best is found, prints final parameters + results
-qqq Only print final parameters + results
-qqqq Only prints final parameter set in the form --zstd=
-v : Verbose, cancels quiet, repeat for more volume
2018-08-16 17:22:29 -07:00
-v Prints all candidate parameters and results
```
Any inputs afterwards are treated as files to benchmark.