https://github.com/calder/rust-goldenfile
Simple goldenfile testing in Rust.
https://github.com/calder/rust-goldenfile
Last synced: 3 months ago
JSON representation
Simple goldenfile testing in Rust.
- Host: GitHub
- URL: https://github.com/calder/rust-goldenfile
- Owner: calder
- License: mit
- Created: 2016-12-01T19:14:43.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2025-02-06T15:02:10.000Z (about 1 year ago)
- Last Synced: 2025-03-09T19:46:22.081Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 84 KB
- Stars: 39
- Watchers: 1
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rust - goldenfile - A library providing a simple API for goldenfile testing. (Development tools / Testing)
- awesome-rust-cn - goldenfile - (开发工具 Development tools / 测试 Testing)
- awesome-rust - goldenfile - A library providing a simple API for goldenfile testing. (Development tools / Testing)
- fucking-awesome-rust - goldenfile - A library providing a simple API for goldenfile testing. (Development tools / Testing)
- awesome-rust-with-stars - goldenfile - A library providing a simple API for goldenfile testing. | 2025-10-18 | (Development tools / Testing)
README
# 👑 Rust Goldenfile
[](https://docs.rs/goldenfile) [](https://crates.io/crates/goldenfile) [](https://github.com/calder/rust-goldenfile/actions/workflows/test.yaml?query=branch%3Amain) [](https://app.codecov.io/gh/calder/rust-goldenfile)
**Simple goldenfile testing in Rust.**
[Goldenfile](https://softwareengineering.stackexchange.com/questions/358786/what-is-golden-files) tests generate one or more output files as they run. If any files differ from their checked-in "golden" version, the test fails. This ensures that behavioral changes are intentional, explicit, and version controlled.
You can use goldenfiles to test the output of a parser, the order of a graph traversal, the result of a simulation, or anything else that should only change with human review.
## Usage
```rust
use goldenfile::Mint;
use std::io::Write;
let mut mint = Mint::new("tests/goldenfiles");
let mut file1 = mint.new_goldenfile("file1.txt").unwrap();
let mut file2 = mint.new_goldenfile("file2.txt").unwrap();
writeln!(file1, "Hello world!").unwrap();
writeln!(file2, "Foo bar!").unwrap();
```
When the `Mint` goes out of scope, it compares the contents of each file to its checked-in golden version and fails the test if they differ. To update the checked-in versions, run:
```sh
UPDATE_GOLDENFILES=1 cargo test
```
## Contributing
Pull requests are welcome! This project follows the Rust community's [Code of Conduct](https://www.rust-lang.org/policies/code-of-conduct).