A testing framework for managing the dangerous dance of shipping public APIs. Built by @CloudNimble.
Managing breakage in public APIs is a HUGE pain in the ass. With the current tools, you never really know when you're going to break someone. And with NuGet making weak references mainstream, even Microsoft breaks people... sometimes without realizing it for months.
It's time to change all that. Breakdance integrates surface testing into your build and deployment process, in just a few lines of code. Instead of waiting until GitHub issues break your inbox, Breakdance will break YOUR build first, forcing you to make critical decisions about how to keep your customers happy BEFORE they grab their pitchforks.
- Breakdance.AspNetCore: ASP.NET Core assemblies.
- Breakdance.Assemblies: .NET assemblies.
- Breakdance.Blazor: Blazor assemblies.
- Breakdance.WebApi: WebApi services.
- Breakdance.OData: OData services.
- Breakdance.Restier: Restier-based OData services.
Project | Release | Latest | Description |
---|---|---|---|
Breakdance.AspNetCore | ASP.NET Core assemblies. | ||
Breakdance.AspNetCore.SignalR | ASP.NET Core assemblies for SignalR | ||
Breakdance.Assemblies | .NET assemblies. | ||
Breakdance.Blazor | Blazor assemblies. | ||
Breakdance.Extensions.MSTest2 | Microsoft Test assemblies. | ||
Breakdance.Tools | CLI tools for Breakdance. | ||
Breakdance.WebApi | WebApi services. |
You can install Testier from NuGet by opening up Package Manager and typing install-package CloudNimble.Breakdance -pre
. Please note that the current version
requires CloudNimble's flavor of Restier, which we are currently shipping because Microsoft has not officially updated
their NuGet packages for quite some time.
[TBD]
[TBD]
[TBD]
[TBD]
Because Restier uses a set of built-in conventions to reflect over your API and automagically find the methods it needs, it can be difficult to know what methods the system is expecting to find.
Testier uses a copy of the same convention lookup code, and the same method naming patterns, to generate a list of all possible method names. It can also generate a "Visibility Matrix" for your API, showing you which ones it expected, and which ones it found. That matrix looks something like this:
--------------------------------------------------
Function Name | Found
--------------------------------------------------
CanInsertPlayers | False
CanUpdatePlayers | False
CanDeletePlayers | False
OnInsertingPlayers | False
OnUpdatingPlayers | False
OnDeletingPlayers | False
OnFilterPlayer | False
OnInsertedPlayers | False
OnUpdatedPlayers | False
OnDeletedPlayers | False
CanInsertSports | False
CanUpdateSports | False
CanDeleteSports | False
OnInsertingSports | False
OnUpdatingSports | False
OnDeletingSports | False
OnFilterSport | True
OnInsertedSports | True
OnUpdatedSports | False
OnDeletedSports | False
CanInsertTeams | False
CanUpdateTeams | False
CanDeleteTeams | False
OnInsertingTeams | False
OnUpdatingTeams | False
OnDeletingTeams | False
OnFilterTeam | False
OnInsertedTeams | False
OnUpdatedTeams | False
OnDeletedTeams | False
CanExecuteTestMethod | False
OnExecutingTestMethod | False
OnExecutedTestMethod | False
--------------------------------------------------
The included unit tests show how to take this information, and build tests that compare a baseline against your current version. That way, if something changes, your tests break, and you're forced to understand what changed.
[TBD]
- Testier can't currently map OData functions that are bound to datasets. If you know how to do this, please feel free to submit a PR.
Feel free to send us feedback on Twitter or file an issue. Feature requests are always welcome. If you wish to contribute, please take a quick look at the contribution guidelines.
Please adhere to our Code of Conduct during any interactions with CloudNimble team members and community members. It is strictly enforced on all official CloudNimble repositories, websites, and resources. If you encounter someone violating these terms, please let us know via DM on Twitter or via email at opensource@nimbleapps.cloud and we will address it as soon as possible.
Thank you to all the people who have contributed to the project: Source code Contributors
Please visit our Contribution document to start contributing to our project.