Add documentation for our tests

This commit is contained in:
Connor Fitzgerald 2025-02-23 04:12:33 -05:00
parent 67ed556f32
commit 00a853ce11
3 changed files with 250 additions and 8 deletions

View File

@ -6,7 +6,19 @@ First of all, welcome to the WGPU community! 👋 We're glad you want to
contribute. If you are unfamiliar with the WGPU project, we recommend you read
[`GOVERNANCE.md`] for an overview of its goals, and how it's governed.
## Documentation Overview:
- [`GOVERNANCE.md`]: An overview of the WGPU project's goals and governance.
- [`CODE_OF_CONDUCT.md`]: The code of conduct for the WGPU project.
- [`docs/release-checklist.md`]: Checklist for creating a new release of WGPU.
- [`docs/review-checklist.md`]: Checklist for reviewing a pull request in WGPU.
- [`docs/testing.md`]: Information on the test suites in WGPU and Naga.
[`GOVERNANCE.md`]: ./GOVERNANCE.md
[`CODE_OF_CONDUCT.md`]: ./CODE_OF_CONDUCT.md
[`docs/release-checklist.md`]: ./docs/release-checklist.md
[`docs/review-checklist.md`]: ./docs/review-checklist.md
[`docs/testing.md`]: ./docs/testing.md
## Talking to other humans in the WGPU project
@ -133,6 +145,4 @@ for reviewing the PR, not who is responsible for the content of the
PR.
You can see some common things that PR reviewers are going to look for in
[`REVIEW-CHECKLIST.md`].
[`REVIEW-CHECKLIST.md`]: ./REVIEW-CHECKLIST.md
[`docs/review-checklist.md`].

View File

@ -9,14 +9,26 @@
`wgpu` is a cross-platform, safe, pure-rust graphics API. It runs natively on Vulkan, Metal, D3D12, and OpenGL; and on top of WebGL2 and WebGPU on wasm.
The API is based on the [WebGPU standard](https://gpuweb.github.io/gpuweb/). It serves as the core of the WebGPU integration in Firefox, Servo, and Deno.
The API is based on the [WebGPU standard][webgpu]. It serves as the core of the WebGPU integration in Firefox, Servo, and Deno.
[webgpu]: https://gpuweb.github.io/gpuweb/
## Quick Links
| Docs | Examples | Changelog |
|:------------------------------------:|:--------------------------------------------------------------------:|:----------------------------------------------------------------------------:|
| [v24](https://docs.rs/wgpu/) | [v24](https://github.com/gfx-rs/wgpu/tree/v24/examples#readme) | [v24](https://github.com/gfx-rs/wgpu/releases) |
| [`trunk`](https://wgpu.rs/doc/wgpu/) | [`trunk`](https://github.com/gfx-rs/wgpu/tree/trunk/examples#readme) | [`trunk`](https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md#unreleased) |
| Docs | Examples | Changelog |
|:---------------------:|:-------------------------:|:-----------------------:|
| [v24][rel-docs] | [v24][rel-examples] | [v24][rel-change] |
| [`trunk`][trunk-docs] | [`trunk`][trunk-examples] | [`trunk`][trunk-change] |
Contributors are welcome! See [CONTRIBUTING.md][contrib] for more information.
[rel-docs]: https://docs.rs/wgpu/
[rel-examples]: https://github.com/gfx-rs/wgpu/tree/v24/examples#readme
[rel-change]: https://github.com/gfx-rs/wgpu/releases
[trunk-docs]: https://wgpu.rs/doc/wgpu/
[trunk-examples]: https://github.com/gfx-rs/wgpu/tree/trunk/examples#readme
[trunk-change]: https://github.com/gfx-rs/wgpu/blob/trunk/CHANGELOG.md#unreleased
[contrib]: CONTRIBUTING.md
## Repo Overview

220
docs/testing.md Normal file
View File

@ -0,0 +1,220 @@
# Testing in `wgpu` and `naga`
There exist a large variety of tests within the `wgpu` repository
to make sure we can easily test all the aspects of our libraries.
This document serves as a guide to each class of test, and what
they are used for.
## Requirements
The tests require that the [Vulkan SDK](https://vulkan.lunarg.com/sdk/home)
is installed on the system and the `bin` folder of the SDK is in your `PATH`.
Without this some tests may fail to run, or report false negatives.
Additionally you require you run the tests with `cargo-nextest`.
This is what our xtask calls. You can install it with `cargo install cargo-nextest`.
## Run All Tests
To run all tests, run `cargo xtask test` from the root of the repository.
## Test Breakdown
This is a table of contents, in the form of the repository's directory structure.
- benches
- [benches](#benchmark-tests)
- examples
- [features](#example-tests)
- naga
- tests
- [example_wgsl](#naga-example-tests)
- [snapshot](#naga-snapshot-tests)
- [spirv-capabilities](#naga-spirv-capabilities-test)
- [validation](#naga-validation)
- [wgsl_errors](#naga-wgsl-error-tests)
- player
- [tests](#player-tests)
- tests
- [compile-tests](#wgpu-compile-tests)
- [gpu-tests](#wgpu-gpu-tests)
- [validation-tests](#wgpu-validation-tests)
And where applicable [unit-tests](#unit-tests)
are scatteredthroughout the codebase.
## Benchmark Tests
- Located in: `benches/benches`
- Run with `cargo nextest run --bench wgpu-benchmark`
- `wgpu` benchmarks for performance testing.
These are benchmarks that test the performance of `wgpu` in various
scenarios. When run as part of the test suite, they run a single
iteration of each benchmark to ensure they continue to function.
These tests only run on your system's default GPU.
The benchmarks should be very careful to avoid doing any significant
work (including connecting to a GPU) outside of the various `benchmark`
`criterion` functions. If this is done, the benchmarks will take a long
time to list available tests, slowing down the test suite.
To run the benchmarks for benchmarking purposes, use `cargo bench`.
## Example Tests
- Located in: `examples/features`
- Run with `cargo xtask test --bin wgpu-examples`
- Uses a custom `#[gpu_test]` harness.
- `wgpu` integration tests, with access to `wgpu_test` helpers.
These tests validate that the examples are functioning correctly
and do not have any regressions. They use the same harness as the
[gpu tests](#wgpu-gpu-tests), see that section for more information
on the harness.
These tests use `nv-flip`'s image comparison through the wgpu
example framework to validate that the images outputted by the
examples are within tolerance of the expected output.
Examples written in `examples/standalone` do not have tests, as
they should be easy to copy into a standalone project.
## `naga` Example Tests
- Located in: `naga/tests/example_wgsl`
- Run with `cargo nextest run --test naga-test example_wgsl`
This simple test ensures that all wgsl files in the `examples`
directory can be parsed by `naga`'s `wgsl` parser and validate correctly.
## `naga` Snapshot Tests
- Located in: `naga/tests/snapshot`, `naga/tests/in`, and `naga/tests/out`
- Run with `cargo nextest run --test naga-test snapshots`
- Data driven snapshot tests for `naga`'s input/output.
These tests are snapshot tests for `naga`s parsers and code generators.
There are inputs in `wgsl`, `spirv`, and `glsl`. There are outputs for
`hlsl`, `spirv`, `wgsl`, `msl`, `glsl`, and naga's internal IR. The tests
can be configured by a sidecar toml file of the same name as the input file.
This is the goto tool for testing all kinds of codegen and parsing features.
To avoid clutter we generally use the following pattern:
- `wgsl` tests generate output to all backends.
- `spirv`, `glsl` tests generate `wgsl` output
This "butterfly" pattern ensures we don't need to test the
full matrix of possibilities to get full coverage.
While we do not run the results of the code generators, we do
test that the generated code is valid. This is done by running
`cargo xtask validate <backend>` in the `naga` directory and
will use the respective tool to validate the generated code.
## `naga` SPIR-V Capabilities Tests
- Located in: `naga/tests/spirv_capabilities`
- Run with `cargo nextest run --test naga-test spirv_capabilities`
- Uses the standard `#[test]` harness.
These tests convert the given wgsl snippet to spirv and
then assert that the spirv has enabled the expected capabilities.
## `naga` Validation Tests
- Located in: `naga/tests/validation`
- Run with `cargo nextest run --test naga-test validation`
These are hand rolled tests against the naga's validator.
If you don't need to test the validator with a custom module,
and can use the `wgsl` frontend, you should put the test in
the [wgsl errors](#naga-wgsl-error-tests) tests.
## `naga` WGSL Error Tests
- Located in: `naga/tests/wgsl_errors`
- Run with `cargo nextest run --test naga-test wgsl_errors`
These are tests for the error messages that the `wgsl` frontend
produces. Additionally you can check that a given validation error
is produced by the validator from a given `wgsl` snippet.
## `player` Tests
- Located in: `player/tests`
- Run with `cargo nextest run --test player-test`
- Data driven tests using the `player`'s replay system.
- `wgpu` integration tests.
These are soft-deprecated tests which are another way to write
API tests. These use captures of the api calls and replay them
to assert on the behavior. They are very difficult to write, and
the trace capturing system is currently broken, so these
tests exist, but you should not write new ones.
These tests only run on your system's default GPU.
## `wgpu` Compile Tests
- Located in: `tests/compile-tests`
- Run with `cargo nextest run --test wgpu-compile-test`
- `trybuild` tests of all rust files in `tests/compile-tests/fail` directory.
These use the `trybuild` crate to test a few scenarios where
the `wgpu` crate is expected to fail to compile. This mainly
revolves around ensuring lifetimes are properly handled when
dropping passes, etc.
## `wgpu` GPU Tests
- Located in: `tests/gpu-tests`
- Run with `cargo xtask test --test wgpu-gpu-test`
- Uses a custom `#[gpu_test]` harness.
- `wgpu` integration tests, with access to `wgpu_test` helpers.
These tests use a custom harness to run each test on all GPUs
available on the system. They are general integration tests
that write code against the normal `wgpu` API and assert on the behavior.
These tests are useful to check the runtime behavior of a program,
validate that there are no validation errors coming from the
`vulkan`/`dx12`/`metal` validation layers, and ensure behavior
is the same across GPUs. If the test does not need to run on a
real GPU, it should be in the [validation tests](#wgpu-validation-tests) instead.
There is a special parameter system that deals with if a GPU
can support the given test, and dealing with expectation
management for tests that are expected to fail due to driver or wgpu bugs.
Normal `#[test]`s will not be found in this test crate, as we use a custom harness.
See also the [example tests](#example-tests) for additional GPU tests.
## `wgpu` Validation Tests
- Located in: `tests/validation-tests`
- Run with `cargo nextest run --test wgpu-validation-test`
- Use the standard `#[test]` harness.
- `wgpu` integration tests, with access to `wgpu_test` helpers.
These tests are focused on testing the validation inside of `wgpu-core`.
They are written against the `wgpu` API, but are targeting a special `noop`
backend which does not connect to a real GPU.
This is significantly faster and simpler than running on real hardware,
and allows any validation logic to be checked, even if real hardware
does not support those features.
## Unit Tests
- Located throughout the codebase.
- Run with `cargo nextest test -p <package>`
- Standard `#[test]`s.
Throughout the codebase we have standard `#[test]`s that test individual
functions or small parts of the codebase. These don't run on the gpu.