- .NET Core 3.1
- Visual Studio 2019 with the ASP.NET and Web development.
We strive for a complete test coverage in order to keep stuff from breaking and delivering a rock solid library. For every component that has C# logic we require a bUnit test that is checking that logic.
When you are making changes to any components and preparing a PR make sure you run the entire test suite to see if anything broke.
When you are writing non-trivial logic, please add a unit test for it. Basically, think of it like this: By adding a test for everything you fear could break you make sure your work is not undone by accident by future additions.
It is actually dead simple. Look at some of the simpler tests like
- StringExtensionTests.cs for normal C# tests
- CheckBoxTests.cs or RadioTests.cs for bUnit tests
Lets say we want to test whether a component's two-way bindable property works
In MudBlazor.UnitTests.Viewer create a razor file that instantiates your component and binds it to a public field.
In MudBlazor.UnitTests create another test (i.e. by copying CheckBoxTests.cs and renaming it) In the Test make sure to instantiate the razor file you just prepared above.
- Assert that the initial state is correct
- Make changes to the public field of the test component and assert that it changes what it should change in the component
- Call Click or other events on the componet and check that the public field was updated properly
You can print the components rendered HTML to the console at different locations of the test to see how state changes affect the HTML or the class attributes. Then write assertions that enforce those changes i.e. by checking that a certain html exists or a certain class is contained or not contained in the class attributes of an element.
var comp = ctx.RenderComponent<MudTextField<string>>();
// wrong - this will fail:
var textField = comp.Find("input");
textField.Change("Garfield");
textField.Blur();
comp.FindComponent<MudTextField<string>>().Instance.Value.NotBeNullOrEmpty();
As soon as you interact with html elements they are potentially re-rendered and your variable becomes stale.
var comp = ctx.RenderComponent<MudTextField<string>>();
// correct
comp.Find("input").Change("Garfield");
comp.Find("input").Blur();
comp.FindComponent<MudTextField<string>>().Instance.Value.NotBeNullOrEmpty();
So never save html element references in a variable in a bUnit test. Note: you can save component references in variables just fine, so don't confuse that.
The bUnit test logic is not running on the blazor UI-thread, so whenever directly interacting with a component's
parameters or methods you need to use await comp.InvokeAsync(()=> ... )
. That way the following test logic happens only after the
interaction with the component has been concluded.
var comp = ctx.RenderComponent<MudTextField<string>>();
var textField=comp.FindComponent<MudTextField<string>>().Instance;
// wrong!
textField.Value="Garfield";
// correct
await comp.InvokeAsync(()=>textField.Value="I love dogs");
We don't need to test the complete rendered HTML of a component, or the appearance of a component. Test the logic, not the HTML. When checking changes in the HTML do simple checks like "does the HTML element exist that depends on a state".
Two things.
- It holds all the test components which are required by the bUnit tests.
- You can run it and try your test components out if you need to debug them.
The documentation has lots of examples for every component. We use those examples as unit tests by instantiating them in a bUnit context and checking whether rendering them throws an error or not. While this is not comparable to a good hand-written unit test we can at least catch exceptions thrown by the render logic. These tests are generated automatically on build and their cs files start with a underscore.
We have an Azure DevOps pipeline which will automatically execute the entire test suite on all pushes and PRs. So if your commit or PR breaks the tests you'll be notified.