DEV Community

Captain Iminza
Captain Iminza

Posted on • Updated on

Creating Mock Data in C# .NET with Bogus

Introduction
When developing applications, especially for testing and prototyping, generating realistic and consistent mock data can be invaluable. The Bogus library for .NET is a powerful and flexible tool for this purpose. This article will guide you through the process of using Bogus to create fake data for your .NET applications.

What is Bogus?
Bogus is a simple and easy-to-use .NET library that helps you generate fake data. It supports a wide variety of data types, such as names, addresses, phone numbers, dates, and even complex objects. It's particularly useful for seeding databases, generating random test data, or creating realistic mock objects for unit tests. It is based on the faker.js library, which is very popular in the JS world, and it is widely used for generating massive amounts of fake data.

Why Use Bogus?
Bogus allows developers to create realistic data models for testing purposes without the hassle of manually curating data. It supports a wide range of data types and is highly customizable, making it an ideal tool for:

Unit Testing: Generate consistent and controlled data sets for repeatable tests.

Database Seeding: Populate databases with realistic data for development and testing.

Mocking Data: Create mock objects for UI prototypes or API endpoints.

Getting Started with Bogus
To get started with Bogus, you need to install the library. You can do this via NuGet Package Manager or the .NET CLI.

Installation
Using the .NET CLI, you can install Bogus with the following command:
dotnet add package Bogus

Alternatively, if you are using the NuGet Package Manager, you can search for "Bogus" and install it from there.

Basic Usage
Once installed, you can start generating fake data. The first step is to create a _Faker _object. Here’s an example of generating a fake person with a name, email, and date of birth:

using Bogus;

public class Program
{
    public static void Main()
    {
        // Create a new Faker instance for a person
        var personFaker = new Faker<Person>()
            .RuleFor(p => p.FirstName, f => f.Name.FirstName())
            .RuleFor(p => p.LastName, f => f.Name.LastName())
            .RuleFor(p => p.Email, f => f.Internet.Email())
            .RuleFor(p => p.DateOfBirth, f => f.Date.Past(30));

        // Generate a single fake person
        var fakePerson = personFaker.Generate();

        // Output the fake person's details
        Console.WriteLine($"Name: {fakePerson.FirstName} {fakePerson.LastName}");
        Console.WriteLine($"Email: {fakePerson.Email}");
        Console.WriteLine($"Date of Birth: {fakePerson.DateOfBirth.ToShortDateString()}");
    }
}
public class Person
{
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public string Email { get; set; }
    public DateTime DateOfBirth { get; set; }
}
Enter fullscreen mode Exit fullscreen mode

Bogus uses fluent syntax, making the configuration easy to read and write.

Generating Multiple Items
You can also generate multiple items at once. For example, if you want to create a list of fake people:

var fakePeople = personFaker.Generate(10);

foreach (var person in fakePeople)
{
    Console.WriteLine($"Name: {person.FirstName} {person.LastName}");
    Console.WriteLine($"Email: {person.Email}");
    Console.WriteLine($"Date of Birth: {person.DateOfBirth.ToShortDateString()}");
    Console.WriteLine();
}

Enter fullscreen mode Exit fullscreen mode

Custom Data Sets
Bogus allows you to create custom data sets. This is particularly useful if you need to generate data that isn't covered by the built-in generators. For example, suppose you need a custom property like a "UserStatus":

var customFaker = new Faker<Person>()
    .RuleFor(p => p.FirstName, f => f.Name.FirstName())
    .RuleFor(p => p.LastName, f => f.Name.LastName())
    .RuleFor(p => p.Email, f => f.Internet.Email())
    .RuleFor(p => p.DateOfBirth, f => f.Date.Past(30))
    .RuleFor(p => p.UserStatus, f => f.PickRandom<UserStatus>());

public enum UserStatus
{
    Active,
    Inactive,
    Banned
}

Enter fullscreen mode Exit fullscreen mode

Complex Object Generation
Bogus can handle nested objects, which is useful for generating more complex data structures. For example, if a Person has an Address:

public class Address
{
    public string Street { get; set; }
    public string City { get; set; }
    public string State { get; set; }
    public string ZipCode { get; set; }
}

var addressFaker = new Faker<Address>()
    .RuleFor(a => a.Street, f => f.Address.StreetAddress())
    .RuleFor(a => a.City, f => f.Address.City())
    .RuleFor(a => a.State, f => f.Address.State())
    .RuleFor(a => a.ZipCode, f => f.Address.ZipCode());

var complexPersonFaker = new Faker<Person>()
    .RuleFor(p => p.FirstName, f => f.Name.FirstName())
    .RuleFor(p => p.LastName, f => f.Name.LastName())
    .RuleFor(p => p.Email, f => f.Internet.Email())
    .RuleFor(p => p.DateOfBirth, f => f.Date.Past(30))
    .RuleFor(p => p.Address, f => addressFaker.Generate());

var fakePersonWithAddress = complexPersonFaker.Generate();

Console.WriteLine($"Name: {fakePersonWithAddress.FirstName} {fakePersonWithAddress.LastName}");
Console.WriteLine($"Email: {fakePersonWithAddress.Email}");
Console.WriteLine($"Date of Birth: {fakePersonWithAddress.DateOfBirth.ToShortDateString()}");
Console.WriteLine($"Address: {fakePersonWithAddress.Address.Street}, {fakePersonWithAddress.Address.City}, {fakePersonWithAddress.Address.State} {fakePersonWithAddress.Address.ZipCode}");

Enter fullscreen mode Exit fullscreen mode

Conclusion
Bogus is a versatile and easy-to-use library for generating fake data in .NET. Whether you need simple strings and numbers or complex nested objects, Bogus provides a robust solution for creating realistic mock data for your applications. This makes it an essential tool for testing, development, and prototyping.

By leveraging Bogus, you can ensure your tests have diverse and realistic data, which helps in catching edge cases and improving the reliability of your code. Happy coding!

Top comments (2)

Collapse
 
andersonpull profile image
Anderson Oliveira Bezerra

Very cool content, I will test the library!

Collapse
 
tom_lokas_6ce3fea91ec0a46 profile image
Tom Lokas