fakedata_generator

A rust library to generate fake data

"data generator for Rust"

Build Status Crates.io Documentation at docs.rs

Table of contents

About

⬆️ Back to Top

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

⬆️ Back to Top

Add the library as dependency to your Cargo.toml.

[dependencies] fakedata_generator = "0.1.0"

Now the the library can be loaded with use fakedata_generator::*.

```rust extern crate fakedatagenerator; use fakedatagenerator::*;

fn main() { let randomword = genenum("some,random,words".tostring()); println!("Random word is: {}", randomword); } ```

A full list of available generators and their function signature is shown below.

Generators

Generators without arguments

⬆️ Back to Top

email

Return a random e-Mail address which is a combination of the username and domain generator.

Function signature rust gen_email() -> String

Example call shell let email: String = gen_email(); // email = shaneIxD@we.net

username

Return a random username.

Note: predefined list as of v0.2.

Function signature rust gen_username() -> String

Example call rust 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 rust gen_domain() -> String

Example call rust let domain: String = gen_domain(); // domain = "names.us"

genhttpmethod

Return a random HTTP method from a defined list.

Possible values: "DELETE", "GET", "HEAD", "OPTION", "PATCH", "POST", "PUT"

Function signature rust gen_http_method() -> String

Example call rust let method: String = gen_http_method(); // method = "GET"

gen_ipv4

Returns a random IP address. Generates four numbers in the range of 0 - 255 which are written out in the format {}.{}.{}.{}.

Function signature rust gen_ipv4() -> String

Example call rust let ip: String = gen_ipv4(); // ip = "168.11.40.75"

Generators with arguments

⬆️ Back to Top

enum

Return random string from set of specified strings. Specify a comma separated list as argument.

Function signature rust gen_enum(input: String) -> String

Example call rust let word: String = gen_enum("hello,hola,hallo".to_string()); // 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 rust gen_int(input: String) -> String

Example call rust let num: String = gen_enum("1,100".to_string()); // num = "42"

Corpora generator

⬆️ Back to Top

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: - cat - dog - horse - dinosaur - gemstone - mood - fabric

Each of these will return a random word from the list.

Function signature rust gen_corpora_switch(input: String) -> String

Example call ```rust let word: String = gencorporaswitch("cat".to_string()); // word = "European Shorthair"

let fabric: String = gencorporaswitch("fabric".to_string()); // word = "longcloth" ```

Example

⬆️ Back to Top

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

⬆️ Back to Top

We love and welcome every form of contribution.

Where to start?

Here are some good places to start:

Code of Conduct

⬆️ Back to Top

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

⬆️ Back to Top

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.