Simple goldenfile testing in Rust.
Goldenfile tests generate one or more output files as they run. At the end of the test, the generated files are compared to checked-in "golden" files produced by previous runs. This ensures that:
```rust extern crate goldenfile;
use std::io::Write;
use goldenfile::Mint;
fn test() { let mut mint = Mint::new("tests/goldenfiles"); let mut file1 = mint.newgoldenfile("file1.txt").unwrap(); let mut file2 = mint.newgoldenfile("file2.txt").unwrap();
write!(file1, "Hello ").unwrap(); write!(file1, "World!").unwrap(); write!(file2, "Foo").unwrap(); write!(file2, "Bar").unwrap();
// When the Mint goes out of scope, it will check the new contents of file1 // and file2 against their old (golden) contents and fail the test if they // differ. The original contents will not be modified unless you run: // // env REGENERATE_GOLDENFILES=1 cargo test // } ```
Goldenfiles often get a bad rap. Used properly, they provide low overhead, insightful tests of a program's operation. "Properly" just means being explicit and selective about what gets written to the goldenfile. You can use them to test the output of a parser, the order of a graph traversal, the results of a simulation, or anything else that shouldn't change without a human's approval.
Feel free to submit pull requests for new content differs or anything else.