Awesome
About BddPipe
This project was created to describe test steps. It has been developed to replace similar existing libraries as a more succinct and simpler to use alternative.
See full details on the Wiki
Goals
- Implement tests via a series of steps, providing a title and function for each step.
- Step functions can be plugged in and reused. These are standalone or composed together and useful for test setup (see Recipes).
- Let each step define and return to the next step all the state it needs to proceed.
- Avoid needing to declare variables outside test step functions as a way to store/retreive data between steps.
- Have better control of output if desired - the outcome is detailed and the default console output can be captured or replaced.
- Output describing the scenario and step outcomes can be useful when diagnosing remote server test run failures.
- Support for async step functions and recipes.
- The steps are documented in greater detail than regular tests due to the step type and title. Tests with documented steps can be easier to understand and maintain.
Getting started
Install NuGet package:
https://www.nuget.org/packages/BddPipe/
Add the using statement:
using BddPipe;
using static BddPipe.Runner;
Basic example:
Scenario()
.Given("two numbers", () => new { A = 5, B = 10 })
.When("the numbers are summed", setup => setup.A + setup.B)
.Then("sum should be as expected", result =>
{
Assert.AreEqual(15, result);
})
.Run();
Integration Test example:
[Test]
public Task AddAsync_DefaultAdd_Successful() =>
Scenario()
.GivenRecipe(WithFeeType())
.AndRecipe(WithMembershipType())
.AndRecipe(WithDivision())
.AndRecipe(WithTitleOrSalutation())
.And("with default add record", scenarioInfo => MemberSetup.CreateDefaultAdd(
divisionId: scenarioInfo.Divisions[0].Id,
titleOrSalutationId: scenarioInfo.TitleOrSalutations[0].Id,
membershipTypeId: scenarioInfo.MembershipTypes[0].Id)
)
.When("AddAsync is called with the record", async record =>
{
var repo = GetRepo();
return await repo.AddAsync(record).ConfigureAwait(false);
})
.Then("the new record id is returned", id =>
{
id.Should().NotBe(default);
})
.RunAsync();
Steps must end with a call to .Run() or .RunAsync(), otherwise the result is not evaluated.
Scenario:
It is optional to start with Scenario()
for a scenario describing your method name, or Scenario("Your scenario title")
// This example will use the method name in the output
Scenario()
.Given(...)
// This example will use "Your scenario title" in the output
Scenario("Your scenario title")
.Given(...)
The scenario will then be at the top of the test output:
Scenario: Your scenario title
Given two numbers [Passed]
When the numbers are summed [Passed]
Then sum should be as expected [Passed]
There are a number of overloads for the method steps: Given, When, Then, And, But.
When implementing steps, you can return from them whatever you like - including anonymous types or tuples. If something is returned from one of these steps then all following steps using a parameter will have a parameter of this instance, until a different instance is returned from a step. This also allows Action steps to be placed between the step returning something and the step that will later make use of it.
Async:
Async steps can be provided via an async delegate implementation - you can provide a method returning Task
or Task<T>
:
When("The numbers are summed", async args =>
{
await Task.Delay(10);
return new { Result = args.A + args.B };
})
Output:
By default the output is written to console. Each step will be marked as passed, failed, inconclusive or not run. Steps after a failed or inconclusive step will not be run.
Given two numbers [Passed]
When the numbers are summed [Passed]
Then sum should be as expected [Passed]
You can instead be given this output by supplying an action to the final Run() call. This will no longer console write the output by default and will give the result to your implementation.
.Run(output => { /*handle output*/ });
It's still possible to call Runner.WriteLogsToConsole(...)
from your implementation to use the default console logging.
You can also get the details of the output from the result of the final Run() call as an instance of BddPipeResult<T>
.