mirror of
https://github.com/randy408/libspng
synced 2025-03-28 21:13:20 +00:00
add tests/README.md
This commit is contained in:
parent
68f01b0a41
commit
c02812f8b2
51
tests/README.md
Normal file
51
tests/README.md
Normal file
@ -0,0 +1,51 @@
|
||||
# Testing
|
||||
|
||||
Unit testing requires Meson and libpng, currently only developer builds expose
|
||||
the test cases, this is enabled with `meson configure -Ddev_build=true`.
|
||||
|
||||
All unit tests are run with the `meson test` command, to enable sanitizers:
|
||||
|
||||
```bash
|
||||
meson configure -Db_sanitize=address,undefined
|
||||
```
|
||||
|
||||
Testing with MemorySanitizer requires all dependencies to be instrumented,
|
||||
Meson can be forced to download libpng and zlib and build them from source
|
||||
using the `--wrap-mode=forcefallback` option when creating a build.
|
||||
|
||||
## Correctness
|
||||
|
||||
To ensure correctness the decoder is tested with all supported output formats
|
||||
and decode flags against every PNG color type and bit depth combination.
|
||||
|
||||
The testsuite uses Meson's unit testing framework,
|
||||
images from the [PngSuite](http://web.archive.org/web/20200414214727/www.schaik.com/pngsuite/)
|
||||
and libpng to verify the results.
|
||||
|
||||
For each PNG test cases are created with unique libspng output format and decode flag combinations,
|
||||
a translation layer converts these to libpng calls and the image is decoded with both libraries.
|
||||
|
||||
To pass each test the output images have to be bit-identical,
|
||||
for gamma-corrected images each color / grayscale sample has to be within 2%.
|
||||
|
||||
The testsuite also covers deinterlacing with 1, 2, 4-bit samples.
|
||||
|
||||
## Regression tests
|
||||
|
||||
The `crashers` directory contains regressions tests, some of these PNG's
|
||||
were taken from the libpng repository.
|
||||
|
||||
## Fuzz testing
|
||||
|
||||
The project is continuously fuzzed on [OSS-Fuzz](https://google.github.io/oss-fuzz/)
|
||||
using `spng_read_fuzzer.c` as the fuzz target,
|
||||
pull requests are also tested with [CIFuzz](https://google.github.io/oss-fuzz/getting-started/continuous-integration/).
|
||||
|
||||
The `fuzz_repro` executable is used for reproducing test cases,
|
||||
it uses a dummy entrypoint to replace the libFuzzer dependency.
|
||||
|
||||
## Fuzzing corpora
|
||||
|
||||
Regression tests can be run against the fuzzing corpora created by OSS-Fuzz,
|
||||
this is enabled with the `oss_fuzz` option, the tests are run with the
|
||||
same `meson test` command.
|
Loading…
x
Reference in New Issue
Block a user