KubeOps.Testing
7.4.3
See the version list below for details.
dotnet add package KubeOps.Testing --version 7.4.3
NuGet\Install-Package KubeOps.Testing -Version 7.4.3
<PackageReference Include="KubeOps.Testing" Version="7.4.3" />
paket add KubeOps.Testing --version 7.4.3
#r "nuget: KubeOps.Testing, 7.4.3"
// Install KubeOps.Testing as a Cake Addin #addin nuget:?package=KubeOps.Testing&version=7.4.3 // Install KubeOps.Testing as a Cake Tool #tool nuget:?package=KubeOps.Testing&version=7.4.3
KubeOps Testing Utilities
The KubeOps.Testing
package provides tools to test the custom operator.
To have an example for integration testing a custom operator have a look at the test code in the repository: Integration Tests
The tools provided aid with Integration testing. For normal unit testing, you can just mock all the things.
The main entry point for testing your custom operator is the
KubernetesOperatorFactory
class. It is meant to be
injected into your test.
The following documentation assumes you are using xUnit as a testing framework. The techniques used should be present with other testing frameworks as well.
The following steps are needed for integration testing the controller:
- Create a
TestStartup.cs
file (or any other name you want) - Inject the
KubernetesOperatorFactory
- Use the mocked client and helper functions to test your operator
Test Startup
This file is very similar to a "normal" Startup.cs
file of an
asp.net application. Either you subclass it and replace your test mocked
services, or you create a new one.
Mocked elements
The main part of this operator factory does mock the used Kubernetes client and helper functions to enqueue events and finalizer events.
Both mocked elements can be retrieved via the operator factory with:
- "MockedKubernetesClient"
- "KubernetesOperatorFactory.EnqueueEvent"
- "KubernetesOperatorFactory.EnqueueFinalization"
Mocked events
With the mentioned factory functions one can fire events for entities. This can be used to test your controllers.
The controllers are normally instantiated via the scope of the DI system.
Mocked IKubernetesClient
The client is essentially an empty implementation of the interface.
All methods do return null
or the object that was passed
into the mocked class. There are five different object
references that can be set to return certain results upon calling the client.
The mocked client is injected as singleton, this means the used "result" references can vary. Be aware of that and don't run your tests in parallel if you rely on those results.
Writing a test
Now with all parts in place, we can write a test. You probably need to set the solution relative content root for asp.net testing. But then you can run the factory and create a test.
// Constructor
public TestControllerTest(KubernetesOperatorFactory<TestStartup> factory)
{
_factory = factory.WithSolutionRelativeContentRoot("tests/KubeOps.TestOperator");
_controller = _factory.Services
.GetRequiredService<IControllerInstanceBuilder>()
.BuildControllers<V1TestEntity>()
.First();
_managerMock = _factory.Services.GetRequiredService<Mock<IManager>>();
_managerMock.Reset();
}
// snip
[Fact]
public async Task Test_If_Manager_Created_Is_Called()
{
_factory.Run();
_managerMock.Setup(o => o.Reconciled(It.IsAny<V1TestEntity>()));
_managerMock.Verify(o => o.Reconciled(It.IsAny<V1TestEntity>()), Times.Never);
await _controller.StartAsync();
await _factory.EnqueueEvent(ResourceEventType.Reconcile, new V1TestEntity());
await _controller.StopAsync();
_managerMock.Verify(o => o.Reconciled(It.IsAny<V1TestEntity>()), Times.Once);
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net6.0
- KubeOps (>= 7.4.3)
- Microsoft.AspNetCore.Mvc.Testing (>= 6.0.14)
-
net7.0
- KubeOps (>= 7.4.3)
- Microsoft.AspNetCore.Mvc.Testing (>= 7.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
7.6.1 | 3,914 | 9/29/2023 |
7.6.0 | 544 | 9/19/2023 |
7.5.0 | 308 | 9/13/2023 |
7.4.5 | 125 | 9/13/2023 |
7.4.4 | 186 | 8/28/2023 |
7.4.3 | 144 | 8/28/2023 |
7.4.2 | 1,696 | 7/17/2023 |
7.4.1 | 151 | 7/17/2023 |
7.4.0 | 250 | 6/26/2023 |
7.3.0 | 664 | 6/1/2023 |
7.2.0 | 291 | 4/14/2023 |
7.1.2 | 216 | 4/14/2023 |
7.1.1 | 416 | 3/1/2023 |
7.1.0 | 247 | 3/1/2023 |
7.0.10 | 257 | 2/27/2023 |
7.0.9 | 236 | 2/23/2023 |
7.0.8 | 246 | 2/23/2023 |
7.0.7 | 297 | 2/14/2023 |
7.0.6 | 280 | 2/6/2023 |
7.0.5 | 280 | 2/3/2023 |
7.0.4 | 299 | 1/30/2023 |
7.0.3 | 288 | 1/30/2023 |
7.0.2 | 325 | 1/26/2023 |
7.0.1 | 292 | 1/23/2023 |
7.0.0 | 295 | 1/19/2023 |
7.0.0-prerelease.2 | 171 | 6/4/2022 |
7.0.0-prerelease.1 | 137 | 6/2/2022 |
6.6.2 | 855 | 1/17/2023 |
6.6.1 | 1,243 | 10/27/2022 |
6.6.0 | 500 | 8/10/2022 |
6.5.4 | 518 | 7/23/2022 |
6.5.3 | 539 | 6/4/2022 |
6.5.2 | 529 | 6/4/2022 |
6.5.1 | 549 | 6/2/2022 |
6.5.0 | 533 | 5/25/2022 |
6.4.0 | 561 | 5/16/2022 |
6.3.1 | 1,893 | 5/11/2022 |
6.3.0 | 586 | 4/28/2022 |
6.2.13 | 624 | 2/21/2022 |
6.2.12 | 589 | 2/18/2022 |
6.2.11 | 615 | 2/16/2022 |
6.2.10 | 609 | 2/13/2022 |
6.2.9 | 614 | 2/9/2022 |
6.2.8 | 609 | 2/8/2022 |
6.2.7 | 659 | 2/2/2022 |
6.2.6 | 656 | 2/1/2022 |
6.2.5 | 633 | 1/30/2022 |
6.2.4 | 645 | 1/27/2022 |
6.2.3 | 620 | 1/27/2022 |
6.2.2 | 656 | 1/24/2022 |
6.2.1 | 672 | 1/12/2022 |
6.2.0 | 513 | 1/7/2022 |
6.1.2 | 395 | 1/2/2022 |
6.1.0 | 399 | 12/26/2021 |
6.0.18 | 408 | 12/15/2021 |
6.0.17 | 395 | 12/14/2021 |
6.0.16 | 397 | 12/5/2021 |
6.0.15 | 384 | 12/4/2021 |
6.0.14 | 861 | 11/19/2021 |
6.0.13 | 416 | 11/16/2021 |
6.0.12 | 487 | 11/13/2021 |
6.0.11 | 481 | 11/8/2021 |
6.0.10 | 510 | 11/3/2021 |
6.0.9 | 441 | 11/2/2021 |
6.0.8 | 535 | 10/28/2021 |
6.0.7 | 483 | 10/27/2021 |
6.0.6 | 579 | 10/25/2021 |
6.0.5 | 526 | 10/25/2021 |
6.0.4 | 548 | 10/21/2021 |
6.0.3 | 504 | 10/15/2021 |
6.0.2 | 493 | 10/12/2021 |
6.0.1 | 523 | 10/12/2021 |
6.0.0 | 479 | 10/11/2021 |
6.0.0-prerelease.5 | 204 | 9/20/2021 |
6.0.0-prerelease.4 | 150 | 9/20/2021 |
6.0.0-prerelease.3 | 182 | 9/20/2021 |
6.0.0-prerelease.2 | 175 | 9/20/2021 |
6.0.0-prerelease.1 | 162 | 9/20/2021 |
5.4.9 | 498 | 9/30/2021 |
5.4.8 | 436 | 9/29/2021 |
5.4.7 | 557 | 9/25/2021 |
5.4.6 | 603 | 9/24/2021 |
5.4.5 | 526 | 9/22/2021 |
5.4.4 | 478 | 9/17/2021 |
5.4.3 | 432 | 9/14/2021 |
5.4.2 | 518 | 9/14/2021 |
5.4.1 | 533 | 9/8/2021 |
5.4.0 | 480 | 9/8/2021 |
5.3.6 | 525 | 8/27/2021 |
5.3.5 | 513 | 8/27/2021 |
5.3.4 | 522 | 8/27/2021 |
5.3.3 | 476 | 8/26/2021 |
5.3.2 | 458 | 8/26/2021 |
5.3.1 | 496 | 8/26/2021 |
5.3.0 | 503 | 8/26/2021 |
5.2.0 | 527 | 8/24/2021 |
5.1.4 | 521 | 8/24/2021 |
5.1.3 | 531 | 8/20/2021 |
5.1.2 | 584 | 8/19/2021 |
5.1.1 | 543 | 8/19/2021 |
5.1.0 | 518 | 8/19/2021 |
5.1.0-prerelease.2 | 187 | 8/19/2021 |
5.1.0-prerelease.1 | 178 | 8/19/2021 |
5.0.2-prerelease.1 | 175 | 8/19/2021 |
5.0.1 | 540 | 8/18/2021 |
5.0.0 | 476 | 8/18/2021 |
4.3.2 | 525 | 8/14/2021 |
4.3.1 | 423 | 8/13/2021 |
4.3.0 | 476 | 8/13/2021 |
4.2.0 | 465 | 8/13/2021 |
4.1.12 | 479 | 8/10/2021 |
4.1.11 | 514 | 8/9/2021 |
4.1.10 | 499 | 8/6/2021 |
4.1.9 | 547 | 8/5/2021 |
4.1.8 | 498 | 8/4/2021 |
4.1.7 | 524 | 8/4/2021 |
4.1.6 | 533 | 7/22/2021 |
4.1.5 | 524 | 7/13/2021 |
4.1.4 | 550 | 7/6/2021 |
4.1.3 | 608 | 6/29/2021 |
4.1.2 | 653 | 6/27/2021 |
4.1.1 | 503 | 6/21/2021 |
4.1.0 | 566 | 6/20/2021 |
4.0.23 | 553 | 6/13/2021 |
4.0.22 | 506 | 6/8/2021 |
4.0.21 | 552 | 6/2/2021 |
4.0.20 | 560 | 5/24/2021 |
4.0.19 | 467 | 5/19/2021 |
4.0.17 | 518 | 5/7/2021 |
4.0.16 | 473 | 5/5/2021 |
4.0.15 | 522 | 5/4/2021 |
4.0.14 | 487 | 4/26/2021 |
4.0.13 | 507 | 4/10/2021 |
4.0.12 | 498 | 4/9/2021 |
4.0.11 | 532 | 4/8/2021 |
4.0.10 | 490 | 4/6/2021 |
4.0.9 | 480 | 4/6/2021 |
4.0.8 | 545 | 4/3/2021 |
4.0.7 | 505 | 4/1/2021 |
4.0.6 | 521 | 3/31/2021 |
4.0.5 | 587 | 3/27/2021 |
4.0.4 | 456 | 3/25/2021 |
4.0.3 | 533 | 3/20/2021 |
4.0.2 | 519 | 3/19/2021 |
4.0.1 | 565 | 3/15/2021 |
4.0.0 | 519 | 3/5/2021 |
4.0.0-prerelease.2 | 222 | 3/5/2021 |
4.0.0-prerelease.1 | 224 | 3/4/2021 |
3.1.1-prerelease.2 | 218 | 2/24/2021 |
3.1.1-prerelease.1 | 175 | 2/23/2021 |
3.1.0 | 483 | 2/23/2021 |
3.1.0-prerelease.4 | 177 | 2/23/2021 |
3.1.0-prerelease.3 | 172 | 2/22/2021 |
3.1.0-prerelease.2 | 188 | 2/22/2021 |
3.1.0-prerelease.1 | 189 | 2/22/2021 |
3.0.1-prerelease.2 | 183 | 2/21/2021 |
3.0.1-prerelease.1 | 209 | 2/9/2021 |
3.0.0 | 505 | 2/8/2021 |
3.0.0-prerelease.4 | 185 | 2/4/2021 |
3.0.0-prerelease.3 | 179 | 1/29/2021 |
3.0.0-prerelease.2 | 186 | 1/29/2021 |
3.0.0-prerelease.1 | 203 | 1/24/2021 |
2.5.0 | 527 | 12/28/2020 |
2.4.0 | 505 | 12/11/2020 |
2.3.0 | 490 | 10/26/2020 |
2.2.0 | 505 | 9/18/2020 |
2.1.1 | 454 | 9/10/2020 |
2.1.0 | 481 | 9/10/2020 |
2.0.0 | 488 | 9/1/2020 |
'## [7.4.3](https://github.com/buehler/dotnet-operator-sdk/compare/v7.4.2...v7.4.3) (2023-08-28)
### Bug Fixes
* version command ([#591](https://github.com/buehler/dotnet-operator-sdk/issues/591)) ([4495781](https://github.com/buehler/dotnet-operator-sdk/commit/4495781a42571f43d53ec89a37ff31af9e296b69))
'