JBrown88 / faker-cxx

C++ Faker library for generating fake (but realistic) data for testing and development.

Home Page:https://cieslarmichal.github.io/faker-cxx/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

C++ Faker, a powerful tool for generating realistic and randomized fake data in C++ programming, enhancing data testing and development workflows

Faker C++

Generate fake (but realistic) data for testing and development

clang++ apple clang++ g++ msvc codecov PRs Welcome Chat on Discord

๐ŸŽฏ Goal

The goal of Faker C++ is to provide a library similar to Faker.js for C++ community. Faker C++ is a powerful library designed to streamline the creation of realistic and customizable fake data for testing and development purposes within C++ applications. The use of this library will provide a quick and user-friendly experience for developers, offering a wide variety of modules that cover everything from generating random names and addresses to crafting realistic financial and internet related data.

Usage and Documentation

To properly use Faker C++ you must first assimilate the Faker library (see Consuming Library with CMake). Once that is done, you need to include the proper header files depending on the module you wish to generate data from. The module header file names can be found by looking in the directory include/faker-cxx. A list of the functions, their descriptions, and how to use them can be found in docs. Make sure to include the proper header file that corresponds to the data and subsequent functions you are trying to generate.

Below is an example of how to use Faker C++ in your code.

#include <iostream>

#include "faker-cxx/Date.h"
#include "faker-cxx/Internet.h"
#include "faker-cxx/Location.h"
#include "faker-cxx/String.h"

int main()
{
    const auto id = faker::String::uuid();
    const auto email = faker::Internet::email();
    const auto password = faker::Internet::password();
    const auto city = faker::Location::city();
    const auto streetAddress = faker::Location::streetAddress();

    std::cout << id << std::endl;               // 58018063-ce5a-4fa7-adfd-327eb2e2d9a5
    std::cout << email << std::endl;            // Lois_Hauck@hotmail.com
    std::cout << password << std::endl;         // @cWLwgM#Knalxeb
    std::cout << city << std::endl;             // Sayreville
    std::cout << streetAddress << std::endl;    // 1716 Harriet Alley

    return 0;
}

This example generates basic personal information including id, email, password, city, and street address. Users can tailor their data generation by exploring other modules and functions within the library.

๐Ÿ’Ž Modules

  • ๐Ÿ›ฉ Airline - aircraft types, airlines, airports, flight numbers
  • ๐Ÿผ Animal - animal types and species
  • ๐Ÿ“– Book - book title, genre, author, publisher, ISBN
  • ๐ŸŽจ Color - color names, rgb, hex, hcl
  • ๐Ÿ›’ Commerce - commerce department, product name, sku, price
  • ๐Ÿข Company - company name, type, industry, catch phrase, buzz phrase
  • ๐Ÿ–ฅ๏ธ Computer - type, manufacturer, model, CPU info, GPU info
  • ๐Ÿ’พ Database - column names, column types, database engines
  • โ„น๏ธ Datatype - booleans
  • ๐Ÿ“… Date - past, future dates
  • ๐Ÿฆ Finance - currency, IBAN, BIC, account name, account number, pin, credit card numbers
  • ๐Ÿ Food - food category, vegetables, fruits, meats, dishes
  • ๐Ÿ“ Git - branch names, commit messages, commit hash
  • ๐Ÿ‘จโ€๐Ÿ’ป Hacker - hacker words
  • โœ‹ Helper - random element from container
  • ๐ŸŒ Internet - emails, usernames, passwords, IP, HTTP
  • ๐Ÿ–ผ๏ธ Image - images urls, github avatar urls, image dimensions
  • ๐ŸŒ Location - countries, cities, zip codes, street addresses
  • ๐Ÿ“š Lorem - lorem words, sentences, paragraphs
  • ๐Ÿฅ Medicine - conditions, medical tests, specialties
  • ๐ŸŽฅ Movie - actors, actresses, genres, movie titles
  • ๐ŸŽถ Music - artists, song names, genres
  • ๐Ÿ”ข Number - random integers, floating point numbers
  • ๐Ÿง‘ Person - first, last names, job titles, hobby, genders, sex, nationalitiy, language
  • ๐Ÿ“ž Phone - phone number, IMEI
  • โšฝ Sport - sport names, athletes, events
  • ๐Ÿ”ข String - uuids, alphanumeric, numeric, hexadecimal
  • ๐Ÿ’ป System - file paths, file extensions, file names, directories, semantic version
  • ๐ŸŽฎ Video game - title, genre, platform, studio
  • ๐ŸŒค๏ธ Weather - temperature, pressure, humidity, weather description
  • ๐Ÿ’ฌ Word - sample words, nouns, verbs

Consuming library with CMake (CMake 3.22 or newer)

  1. Add faker to git submodules (execute in project root):

    mkdir externals && cd externals
    git submodule add https://github.com/cieslarmichal/faker-cxx.git
    git submodule update --init --recursive
    
  2. Link with library:

    set(BUILD_FAKER_TESTS OFF)
    
    add_subdirectory(externals/faker-cxx)
    
    add_executable(main Main.cpp)
    
    target_link_libraries(main faker-cxx)

Compiler support

Use one of these compilers when working with Faker C++.

If you have any confusion please refer to the respective guides.

Dependencies

  • GTest (set BUILD_CONFIG_CXX_TESTS=OFF CMake flag to disable this dependency)
  • fmt (only for Apple Clang++ compiler)

โœจ Contributing

We would love it if you contributed to Faker C++! ๐Ÿš€

Whether you are interested in fixing bugs, implementing new features, or improving documentation, your input is welcome and valuable. Before contributing, please review our CONTRIBUTING guide for guidelines on coding standards, making changes, and creating Pull Requests (PRs). Your engagement helps maintain the project's vitality and ensures Faker C++ remains a useful tool for the C++ community.

Additionally, we encourage you to join our Discord Channel for contributors, where you can engage in discussions, seek assistance, and collaborate with fellow developers. Your contributions play a crucial role in the development and furthering of Faker C++. We look forward to your involvement and appreciate your commitment to the project's growth!

About

C++ Faker library for generating fake (but realistic) data for testing and development.

https://cieslarmichal.github.io/faker-cxx/

License:MIT License


Languages

Language:C++ 99.2%Language:CMake 0.8%Language:Shell 0.0%Language:Dockerfile 0.0%