From 8d011079f051abadabc4a78f311f8727fdd8b355 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 23 Feb 2024 13:16:55 -0600 Subject: [PATCH] docs(snap): Clarify how to use Harness --- crates/snapbox/src/harness.rs | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/crates/snapbox/src/harness.rs b/crates/snapbox/src/harness.rs index 24b2785d..506fd180 100644 --- a/crates/snapbox/src/harness.rs +++ b/crates/snapbox/src/harness.rs @@ -1,5 +1,8 @@ //! [`Harness`] for discovering test inputs and asserting against snapshot files //! +//! This is a custom test harness and should be put in its own test binary with +//! [`test.harness = false`](https://doc.rust-lang.org/stable/cargo/reference/cargo-targets.html#the-harness-field). +//! //! # Examples //! //! ```rust,no_run @@ -37,6 +40,9 @@ use crate::Action; use libtest_mimic::Trial; +/// [`Harness`] for discovering test inputs and asserting against snapshot files +/// +/// See [`harness`][crate::harness] for more details pub struct Harness { root: std::path::PathBuf, overrides: Option, @@ -52,9 +58,15 @@ where S: Fn(std::path::PathBuf) -> Case + Send + Sync + 'static, T: Fn(&std::path::Path) -> Result + Send + Sync + 'static + Clone, { - pub fn new(root: impl Into, setup: S, test: T) -> Self { + /// Specify where the test scenarios + /// + /// - `input_root`: where to find the files. See [`Self::select`] for restricting what files + /// are considered + /// - `setup`: Given a path, choose the test name and the output location + /// - `test`: Given a path, return the actual output value + pub fn new(input_root: impl Into, setup: S, test: T) -> Self { Self { - root: root.into(), + root: input_root.into(), overrides: None, setup, test, @@ -207,8 +219,14 @@ impl Default for Verifier { } } +/// A test case enumerated by the [`Harness`] with data from the `setup` function +/// +/// See [`harness`][crate::harness] for more details pub struct Case { + /// Display name pub name: String, + /// Input for the test pub fixture: std::path::PathBuf, + /// What the actual output should be compared against or updated pub expected: std::path::PathBuf, }