mockd 0.5.3

Fake data generator library with 130+ functions
Documentation
//!
//! Provides 3 functions to return mock person data.
//!
//! # Examples
//!
//! ```rust
//! use mockd::person;
//!
//!     let data = person::info(); // person::Info
//!     let data = person::ssn(); // ssn: 792671651
//!     let data = person::gender(); // gender: male
//! ```
//!
//! # Feature
//!
//! Requires the "person" feature.
//!

use crate::address;
use crate::contact;
use crate::image;
use crate::job;
use crate::misc;
use crate::name;
use crate::payment;
use std::ops::Add;

pub(crate) mod data;

/// A struct providing information about a person.
///
/// # Example
///
/// ```rust
/// let info = mockd::person::info();
///
/// println!("Credit card type: {:#?}", info);
/// ```
///
/// # Feature
///
/// Requires the "person" feature.
///
#[derive(Debug)]
pub struct Info {
    first_name: String,
    last_name: String,
    gender: String,
    ssn: String,
    image: String,
    job: job::Info,
    address: address::Info,
    contact: contact::Info,
    credit_card: payment::CreditCard,
}

/// Generate a random person info struct.
///
/// # Example
///
/// ```rust
/// let info = mockd::person::info();
///
/// println!("Credit card type: {:#?}", info);
/// ```
///
/// # Feature
///
/// Requires the "person" feature.
///
pub fn info() -> Info {
    Info {
        first_name: name::first(),
        last_name: name::last(),
        gender: gender(),
        ssn: ssn(),
        image: image::url(300, 300).add("/people"),
        job: job::info(),
        address: address::info(),
        contact: contact::info(),
        credit_card: payment::credit_card(),
    }
}

/// Generate a random number for SSN.
///
/// # Example
///
/// ```rust
/// let ssn = mockd::person::ssn();
///
/// println!("SSN: {}", ssn);
/// ```
///
/// # Feature
///
/// Requires the "person" feature.
///
pub fn ssn() -> String {
    format!("{}", misc::random(100000000, 999999999))
}

/// Generate a random gender.
///
/// # Example
///
/// ```rust
/// let gender = mockd::person::gender();
///
/// println!("SSN: {}", gender);
/// ```
///
/// # Feature
///
/// Requires the "person" feature.
///
pub fn gender() -> String {
    match misc::random(1, 2) {
        1 => "male".to_string(),
        _ => "female".to_string(),
    }
}

#[cfg(test)]
mod tests {
    use crate::person;
    use crate::testify::exec_mes;

    #[test]
    fn ssn() {
        exec_mes("person::ssn", person::ssn);
    }

    #[test]
    fn gender() {
        exec_mes("person::gender", person::gender);
    }
}