A .NET client library for interacting with mountebank (www.mbtest.org). This project aims to reduce the amount of mountebank knowledge required in order to create usable stubs.
A simple example:
var imposter = _client.CreateHttpImposter(4545, "My Imposter");
imposter.AddStub()
.OnPathAndMethodEqual("/customers/123", Method.Get)
.ReturnsXml(HttpStatusCode.OK, new Customer { Email = "customer@test.com" });
The project currently targets .NET Standard 1.3, which is compatible with .NET Framework 4.6. If you need to use it in a project targeting an older framework version, such as .NET Framework 4.5, please use version 3.X.X of the package.
To get started, see Usage Examples (v4).
The library is available for install as a NuGet package.
https://www.nuget.org/packages/MbDotNet
The following Mountebank functionality is not yet supported:
- SMTP imposters
- Stub behaviors
- The "inject" response
- The "exists" and "inject" predicates
Pull requests are always welcome.
The following items are necessary in order to build/test the project:
- .NET Core SDK 2.0
- .NET Core Runtime 2.0
- Mountebank
To build the project, run the following from the root directory:
dotnet build
To run unit tests, run the following from the root directory:
dotnet test ./MbDotNet.Tests/MbDotNet.Tests.csproj
The solution also includes a set of acceptance tests that run against an actual mountebank instance. Additional instructions for running mountebank can be found in the README file in that project.
In order to run the acceptance tests, run the following command from the root directory:
dotnet run --project ./MbDotNet.Acceptance.Tests