Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improves the docs on derive #142

Merged
merged 4 commits into from
Aug 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 119 additions & 3 deletions fake/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@
//! let words: Vec<String> = Words(3..5).fake();
//! println!("words {:?}", words);
//!
//! // Using a tuple config list to generate a vector with a length range and a specific faker for the element
//! let name_vec: Vec<String> = (Name(EN), 3..5).fake();
//!
//! // Using a macro as an alternative method for the tuple config list
//! let name_vec = fake::vec![String as Name(EN); 3..5];
//!
//! // using macro to generate nested collection
//! let name_vec = fake::vec![String as Name(EN); 4, 3..5, 2];
//! println!("random nested vec {:?}", name_vec);
Expand All @@ -64,6 +70,13 @@
//! let v: usize = Faker.fake_with_rng(r);
//! println!("value from fixed seed {}", v);
//! }
//!
//! // Use an always true RNG so that optional types are always `Some` values. (Requires
//! // always-true-rng feature).
//! use fake::utils::AlwaysTrueRng;
//! let mut rng = AlwaysTrueRng::default();
//! let result: Option<i64> = Faker.fake_with_rng(&mut rng);
//! println!("Always Some: {}", result.unwrap());
//! ```
use rand::Rng;

Expand Down Expand Up @@ -271,10 +284,21 @@ pub mod faker;
/// Locales used for custom [`Dummy`] implementations within [`faker`] module.
pub mod locales;

/// Derive macro generating an impl of the trait [`Dummy`].
/// Derive macro generating an impl of the trait [`Dummy`]. This works for both structs and enums.
///
/// # Attributes
///
/// For any fields in the type there are a number of keys that can be used to control the code generation.
/// All of these go within the dummy attribute.
///
/// 1. `faker` key can be used to provide a specific faker for a field provided it implements [`Fake`].
/// 2. `expr` key can be used to provide a rust expression as a fixed value.
/// 3. `default` key sets the value to the types [`Default`] implementation.
///
/// # Examples
///
/// A simple example for deriving [`Dummy`] on a struct:
///
/// ```
/// use fake::{Dummy, Fake, Faker};
/// use fake::faker::name::en::Name;
Expand All @@ -286,13 +310,105 @@ pub mod locales;
/// #[dummy(faker = "Name()")]
/// customer: String,
/// paid: bool,
/// #[dummy(expr = "\"Fixed\".into()")]
/// fixed_value: String,
/// #[dummy(default)]
/// other: String,
/// }
///
/// let f: Foo = Faker.fake();
/// ```
///
/// This would generate code roughly equivalent to:
///
/// ```
/// use fake::{Dummy, Fake, Faker};
/// use fake::faker::name::en::Name;
/// use rand::Rng;
///
/// pub struct Foo {
/// order_id: usize,
/// customer: String,
/// paid: bool,
/// fixed_value: String,
/// other: String,
/// }
///
/// impl Dummy<Faker> for Foo {
/// fn dummy_with_rng<R: Rng + ?Sized>(_: &Faker, rng: &mut R) -> Self {
/// let order_id = Fake::fake_with_rng::<usize, _>(&(1000..2000), rng);
/// let customer = Fake::fake_with_rng::<String, _>(&(Name()), rng);
/// let paid = Fake::fake_with_rng::<bool, _>(&Faker, rng);
/// let fixed_value = "Fixed".into();
/// let other = Default::default();
/// Self {
/// order_id,
/// customer,
/// paid,
/// fixed_value,
/// other,
/// }
/// }
/// }
///
/// let f: Foo = Faker.fake();
/// ```
///
/// `faker` key in `dummy` attribute could be used on any type that implements
/// [`Fake`].
/// A simple example for deriving [`Dummy`] on an enum. For enum tuple variants the faker attribute
/// is applied directly to the types in the tuple, for struct variants it is applied on each struct
/// field.
///
/// ```
/// use fake::{Dummy, Fake, Faker};
/// use fake::faker::name::en::Name;
///
/// #[derive(Dummy)]
/// pub enum Bar {
/// Simple,
/// Tuple(#[dummy(faker="0..5")] i32),
/// Structure {
/// #[dummy(faker = "1000..2000")]
/// i: usize,
/// j: String,
/// }
/// }
///
/// let b: Bar = Faker.fake();
/// ```
///
/// This will generate code roughly equivalent to:
///
/// ```
/// use fake::{Dummy, Fake, Faker};
/// use fake::faker::name::en::Name;
/// use rand::Rng;
///
/// pub enum Bar {
/// Simple,
/// Tuple(i32),
/// Structure {
/// i: usize,
/// j: String,
/// }
/// }
///
/// impl Dummy<Faker> for Bar {
/// fn dummy_with_rng<R: Rng + ?Sized>(_: &Faker, rng: &mut R) -> Self {
/// match rng.gen_range(0..3usize) {
/// 0 => Self::Simple,
/// 1 => Self::Tuple(Fake::fake_with_rng::<i32, _>(&(0..5), rng)),
/// 2 => {
/// let i = Fake::fake_with_rng::<usize, _>(&(1000..2000), rng);
/// let j = Fake::fake_with_rng::<String, _>(&Faker, rng);
/// Self::Structure { i, j }
/// },
/// _ => unreachable!(),
/// }
/// }
/// }
///
/// let b: Bar = Faker.fake();
/// ```
#[cfg(feature = "derive")]
pub use dummy::Dummy;

Expand Down