Skip to content

Commit

Permalink
Merge pull request #209 from akhildevelops/master
Browse files Browse the repository at this point in the history
CLI Interface for fake-rs
  • Loading branch information
cksac authored Dec 22, 2024
2 parents 06ee4a6 + c600f54 commit 1fd56e0
Show file tree
Hide file tree
Showing 6 changed files with 364 additions and 4 deletions.
25 changes: 24 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,16 @@ name: Rust
on:
push:
branches: [ master ]
paths:
- "**.rs"
- "**/Cargo.toml"
- ".github/workflows/**"
pull_request:
branches: [ master ]
paths:
- "**.rs"
- "**/Cargo.toml"
- ".github/workflows/**"

jobs:
build:
Expand Down Expand Up @@ -53,4 +61,19 @@ jobs:
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --tests --examples -- -D warnings
args: --workspace --tests --examples -- -D warnings
cli:
name: Fake-CLI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/cargo@v1
with:
command: build
args: --release --bin fake --features cli
- name: Upload Bin Artifact
uses: actions/upload-artifact@v4
with:
name: fake
path: target/release/fake

23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![Docs Status](https://docs.rs/fake/badge.svg)](https://docs.rs/fake)
[![Latest Version](https://img.shields.io/crates/v/fake.svg)](https://crates.io/crates/fake)

A Rust library for generating fake data.
A Rust library and command line tool for generating fake data.

## Installation

Expand All @@ -15,7 +15,7 @@ Default:
fake = { version = "3.0.1", features = ["derive"] }
```

Available features:
Available library features:

- `derive`: if you want to use `#[derive(Dummy)]`
- supported crates feature flags:
Expand All @@ -40,6 +40,7 @@ Available features:

## Usage

### In rust code
```rust
use fake::{Dummy, Fake, Faker};
use rand::rngs::StdRng;
Expand Down Expand Up @@ -107,6 +108,24 @@ fn main() {
}
```

## Command line
```shell
Usage: cli [OPTIONS] [COMMAND]

Commands:
Name
FirstName
CityPrefix
Password
help

Options:
-r, --repeat <repeat> [default: 1]
-l, --locale <locale> [default: EN]
-h, --help Print help
-V, --version Print version
```

# Fakers with locale

## Lorem
Expand Down
11 changes: 10 additions & 1 deletion fake/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "fake"
version = "3.0.1"
authors = ["cksac <[email protected]>"]
description = "An easy to use library for generating fake data like name, number, address, lorem, dates, etc."
description = "An easy to use library and command line for generating fake data like name, number, address, lorem, dates, etc."
keywords = ["faker", "data", "generator", "random"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -41,6 +41,7 @@ url-escape = { version = "0.1", optional = true }
bson = { version = "2", optional = true }
url = { version = "2", optional = true }
indexmap = { version = "2", optional = true}
clap = { version = "4.0.32", optional = true, features=["cargo"] }

[dev-dependencies]
chrono = { version = "0.4", features = ["clock"], default-features = false }
Expand All @@ -60,6 +61,7 @@ bigdecimal = ["bigdecimal-rs", "rust_decimal"]
geo = ["geo-types", "num-traits"]
http = ["dep:http", "url-escape"]
bson_oid = ["bson"]
cli = ["dep:clap"]

[[example]]
name = "basic"
Expand All @@ -82,3 +84,10 @@ required-features = [
name = "usage"
path = "examples/usage.rs"
required-features = ["derive"]

[[bin]]
name = "fake"
path = "src/bin/cli/main.rs"
required-features = [
"cli"
]
227 changes: 227 additions & 0 deletions fake/src/bin/cli/fake_gen.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,227 @@
use clap::{builder::StyledStr, ArgMatches};
use fake::{faker, Fake};
use rand::Rng;
#[derive(Clone, Copy, Debug)]
#[allow(non_camel_case_types)]
pub enum AVAILABLE_LOCALES {
EN,
FR_FR,
ZH_TW,
ZH_CN,
JA_JP,
AR_SA,
PT_BR,
}

macro_rules! fake_gen_on_return_type {
($s:ident,$rng:ident,Vec) => {
format!("{:?}", $s.fake_with_rng::<Vec<String>, _>($rng))
};
($s:ident,$rng:ident) => {
$s.fake_with_rng($rng)
};
}

macro_rules! some_rules {
($locale:expr, $module:ident, $fake:ident($($arg:ident)?)$(,$return_type:ident)?) => {

match $locale {
AVAILABLE_LOCALES::EN => {
let s = faker::$module::en::$fake($($arg)?);
Box::new(move |rng: &mut R| fake_gen_on_return_type!(s,rng$(,$return_type)?))

}
AVAILABLE_LOCALES::FR_FR => {
let s = faker::$module::fr_fr::$fake($($arg)?);
Box::new(move |rng: &mut R| fake_gen_on_return_type!(s,rng$(,$return_type)?))

}
AVAILABLE_LOCALES::ZH_TW => {
let s = faker::$module::zh_tw::$fake($($arg)?);
Box::new(move |rng: &mut R| fake_gen_on_return_type!(s,rng$(,$return_type)?))

}
AVAILABLE_LOCALES::ZH_CN => {
let s = faker::$module::zh_cn::$fake($($arg)?);
Box::new(move |rng: &mut R| fake_gen_on_return_type!(s,rng$(,$return_type)?))

}
AVAILABLE_LOCALES::AR_SA => {
let s = faker::$module::ar_sa::$fake($($arg)?);
Box::new(move |rng: &mut R| fake_gen_on_return_type!(s,rng$(,$return_type)?))

}
AVAILABLE_LOCALES::JA_JP => {
let s = faker::$module::ja_jp::$fake($($arg)?);
Box::new(move |rng: &mut R| fake_gen_on_return_type!(s,rng$(,$return_type)?))

}
AVAILABLE_LOCALES::PT_BR => {
let s = faker::$module::pt_br::$fake($($arg)?);
Box::new(move |rng: &mut R| fake_gen_on_return_type!(s,rng$(,$return_type)?))

}
}
};
}

use clap::{value_parser, Arg, Command};
macro_rules! generate_command {
($fake:literal) => {
Command::new($fake)
};
($fake:ident) => {
Command::new(stringify!($fake))
};
($fake:ident($($arg:ident: $type:ty=$default:literal),+)) => {
Command::new(stringify!($fake))$(.arg(
Arg::new(stringify!($arg))
.long(stringify!($arg))
.default_value(stringify!($default))
.value_parser(value_parser!($type))))+

};
}

macro_rules! right_arm {
($locale:ident, $module:ident, $fake:ident) => {
some_rules!($locale, $module, $fake())
};
($locale:ident, $module:ident, $fake:ident($arg:ident: u8),$sub_matches:ident) => {{
let value = *$sub_matches.get_one::<u8>(stringify!($arg)).unwrap();
some_rules!($locale, $module, $fake(value))
}};

($locale:ident, $module:ident, $fake:ident(min: usize, max: usize),$sub_matches:ident$(,$return_type:ident)?) => {{
let min = *$sub_matches.get_one::<usize>("min").unwrap();
let max = *$sub_matches.get_one::<usize>("max").unwrap();
let range = min..max;
some_rules!($locale, $module, $fake(range)$(,$return_type)?)
}};
}

macro_rules! fakegen_commands {
($(($fake:ident$(($($arg:ident: $arg_type:tt=$arg_default:literal),+))?$(->$return_type:ident)?,$module:ident)),+) => {
(
vec![$(generate_command!($fake$(($($arg:$arg_type=$arg_default),+))?)),+],
|arg_matches:ArgMatches, locale:AVAILABLE_LOCALES, help_message:StyledStr| {
match arg_matches.subcommand(){
$(Some((stringify!($fake),_sub_matches))=>{
right_arm!(locale, $module, $fake$(($($arg: $arg_type),+),_sub_matches)?$(,$return_type)?)
})+
_ => {
println!("Didn't receive subcommand\n {}", help_message);
std::process::exit(0)
}
}
}

)
};
}

pub fn all_fakegen_commands<R: Rng>() -> (
Vec<Command>,
impl Fn(ArgMatches, AVAILABLE_LOCALES, StyledStr) -> Box<dyn Fn(&mut R) -> String>,
) {
fakegen_commands!(
//address
(CityPrefix, address),
(CitySuffix, address),
(CityName, address),
(CountryName, address),
(CountryCode, address),
(StreetSuffix, address),
(StreetName, address),
(TimeZone, address),
(StateName, address),
(StateAbbr, address),
(SecondaryAddressType, address),
(SecondaryAddress, address),
(ZipCode, address),
(PostCode, address),
(BuildingNumber, address),
(Latitude, address),
(Longitude, address),
(Geohash(precision:u8=1),address),

//barcode
(Isbn,barcode),
(Isbn10,barcode),
(Isbn13,barcode),

//creditcard
(CreditCardNumber,creditcard),

//company
(CompanySuffix, company),
(CompanyName, company),
(Buzzword, company),
(BuzzwordMiddle, company),
(BuzzwordTail, company),
(CatchPhrase, company),
(BsVerb, company),
(BsAdj, company),
(BsNoun, company),
(Bs, company),
(Profession, company),
(Industry, company),

//internet
(FreeEmailProvider,internet),
(DomainSuffix,internet),
(FreeEmail,internet),
(SafeEmail,internet),
(Username,internet),
(Password(min:usize=10, max:usize=20),internet),
(IPv4,internet),
(IPv6,internet),
(IP,internet),
(MACAddress,internet),
(UserAgent,internet),

//job
(Seniority,job),
(Field,job),
(Position,job),

//lorem
(Word,lorem),
(Words(min:usize=5, max:usize=10)->Vec,lorem),
(Sentence(min:usize=5, max:usize=10),lorem),
(Sentences(min:usize=5, max:usize=10)->Vec,lorem),
(Paragraph(min:usize=5, max:usize=10),lorem),
(Paragraphs(min:usize=5, max:usize=10)->Vec,lorem),

//name
(FirstName,name),
(LastName,name),
(Title,name),
(Suffix,name),
(Name,name),
(NameWithTitle,name),

//phone_number
(PhoneNumber,phone_number),
(CellNumber,phone_number),

//filesystem
(FilePath,filesystem),
(FileName,filesystem),
(FileExtension,filesystem),
(DirPath,filesystem),
(MimeType,filesystem),
(Semver,filesystem),
(SemverStable,filesystem),
(SemverUnstable,filesystem),

//currency
(CurrencyCode,currency),
(CurrencyName,currency),
(CurrencySymbol,currency),

//finance
(Bic,finance),
(Isin,finance)
)
}
Loading

0 comments on commit 1fd56e0

Please sign in to comment.