-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8b43233
commit 839ba52
Showing
4 changed files
with
121 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
//! Strategies for generating [`PathBuf`] and related path types. | ||
//! | ||
//! [`PathParams`] in this module is used as the argument to the | ||
//! [`Arbitrary`](crate::arbitrary::Arbitrary) implementation for [`PathBuf`]. | ||
|
||
use crate::{collection::SizeRange, string::StringParam}; | ||
|
||
/// Parameters for the [`Arbitrary`] implementation for [`PathBuf`]. | ||
/// | ||
/// By default, this generates paths with 0 to 8 components uniformly at random, each of which is a | ||
/// default [`StringParam`]. | ||
#[derive(Clone, Debug, PartialEq, Eq, Hash)] | ||
pub struct PathParams { | ||
/// The number of components in the path. | ||
components: SizeRange, | ||
/// The regular expression to generate individual components. | ||
component_regex: StringParam, | ||
} | ||
|
||
impl PathParams { | ||
/// Gets the number of components in the path. | ||
pub fn components(&self) -> SizeRange { | ||
self.components.clone() | ||
} | ||
|
||
/// Sets the number of components in the path. | ||
pub fn with_components(mut self, components: impl Into<SizeRange>) -> Self { | ||
self.components = components.into(); | ||
self | ||
} | ||
|
||
/// Gets the regular expression to generate individual components. | ||
pub fn component_regex(&self) -> StringParam { | ||
self.component_regex | ||
} | ||
|
||
/// Sets the regular expression to generate individual components. | ||
pub fn with_component_regex( | ||
mut self, | ||
component_regex: impl Into<StringParam>, | ||
) -> Self { | ||
self.component_regex = component_regex.into(); | ||
self | ||
} | ||
} | ||
|
||
impl Default for PathParams { | ||
fn default() -> Self { | ||
Self { | ||
components: (0..8).into(), | ||
// This is the default regex for `any::<String>()`. | ||
component_regex: StringParam::default(), | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters