fakedata_generator
A rust library to generate fake data

Table of contents
About
This library provides functions to generate random values ("fake data"). It is in its early stages and some values are not yet fully random. Basic documentation is provided below and on https://docs.rs/fakedata_generator/.
Usage
Add the library as dependency to your Cargo.toml.
[dependencies]
fakedata_generator = "0.3"
Now the the library can be loaded with use fakedata_generator::*.
extern crate fakedata_generator;
use *;
A full list of available generators and their function signature is shown below.
Generators
Generators without arguments
Return a random e-Mail address which is a combination of the username and domain generator.
Function signature
gen_email
Example call
let email: String = gen_email();
// email = shaneIxD@we.net
username
Return a random username.
Note: predefined list as of v0.2.
Function signature
gen_username
Example call
let user: String = gen_username;
// user = ahmadajmi
domain
Return a random domain name.
Note: Does not yet support all TDLs and true random host names - it's created by a predefined list.
Function signature
gen_domain
Example call
let domain: String = gen_domain;
// domain = "names.us"
http method
Return a random HTTP method from a defined list.
Possible values: "DELETE", "GET", "HEAD", "OPTION", "PATCH", "POST", "PUT"
Function signature
gen_http_method
Example call
let method: String = gen_http_method;
// method = "GET"
ipv4
Returns a random IP address. Generates four numbers in the range of 0 - 255 which are written out in the format {}.{}.{}.{}.
Function signature
gen_ipv4
Example call
let ip: String = gen_ipv4;
// ip = "168.11.40.75"
Generators with arguments
enum
Return random string from set of specified strings. Specify a comma separated list as argument.
Function signature
gen_enum
Example call
let word: String = gen_enum;
// word = "hola"
int
Return random integer in range. Must specify 1 or 2 numbers separated by comma. If 1 argument is specified it is handled as "highest" value and 0 is used as lowest value.
Function signature
gen_int
Example call
let num: String = gen_enum;
// num = "42"
private ipv4
Creates a private IPv4 address in one of these 3 ranges:
- 10.0.0.0 – 10.255.255.255
- 172.16.0.0 – 172.31.255.255
- 192.168.0.0 – 192.168.255.255
The input is the number of the first block and can be 10, 172, or 192. If an invalid value is specified it defaults to 10.
Function signature
gen_private_ip
Example call
let private_ipv4: String = gen_private_ipv4;
// num = 10.64.197.255
passwords
Without special chars
Creates a random string.
The input is the number of characters the password should consist of.
Function signature
gen_password
Example call
let pw: String = gen_password;
// pw = "bNNpAmShvQYbKbMdhByK17lqaFcgarrF"
With special chars
Creates a random string with special chars.
The input is the number of characters the password should consist of.
Function signature
gen_password_with_special_chars
Example call
let pw: String = gen_password_with_special_chars;
// pw = "F=>:e+KX;Uu/Zg#i*MQN//6r%a^K?K°0"
Corpora generator
gen_corpora_switch is a special generator that gets its data in JSON format taken from the Corpora Project. A copy of the entire Corpora project is included in the data directory.
Not all data sets are available as of now. See the src/corpora/data.rs file for all available sets.
Possible input values:
catdoghorsedinosaurgemstonemoodfabric
Each of these will return a random word from the list.
Function signature
gen_corpora_switch
Example call
let word: String = gen_corpora_switch;
// word = "European Shorthair"
let fabric: String = gen_corpora_switch;
// word = "longcloth"
Example
The following examples show how fakedata_generator can be used in a Rust project.
| Name | Description | Repository |
|---|---|---|
fakedata_server |
A HTTP API providing random values based on fakedata_generator data. |
View code |
Contributing
We love and welcome every form of contribution.
Where to start?
Here are some good places to start:
- Issues with label Good first issue
- Issues with label Documentation
- Providing example implementations or usage demos
Tooling
- mktoc is used for table of content generation in the README.md
- grcov is used to generate the coverage badge
- this is currently done by hand and not by CI, run
helpers/coverage.shto update the badge
- this is currently done by hand and not by CI, run
Code of Conduct
You are expected to follow our code of conduct when interacting with the project via issues, pull requests or in any other form. Many thanks to the awesome contributor covenant initiative!
License
MIT License Copyright (c) 2019 Kevin Gimbel
Special Thanks to the Rust Community, Rust Language Maintainers, and JetBrains for IntelliJ IDEA. See NOTICE for full list.