KubeOps.Testing 7.6.1

dotnet add package KubeOps.Testing --version 7.6.1
NuGet\Install-Package KubeOps.Testing -Version 7.6.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="KubeOps.Testing" Version="7.6.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add KubeOps.Testing --version 7.6.1
#r "nuget: KubeOps.Testing, 7.6.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install KubeOps.Testing as a Cake Addin
#addin nuget:?package=KubeOps.Testing&version=7.6.1

// Install KubeOps.Testing as a Cake Tool
#tool nuget:?package=KubeOps.Testing&version=7.6.1

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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 2,653 9/29/2023
7.6.0 484 9/19/2023
7.5.0 194 9/13/2023
7.4.5 90 9/13/2023
7.4.4 158 8/28/2023
7.4.3 114 8/28/2023
7.4.2 1,665 7/17/2023
7.4.1 121 7/17/2023
7.4.0 219 6/26/2023
7.3.0 624 6/1/2023
7.2.0 261 4/14/2023
7.1.2 182 4/14/2023
7.1.1 387 3/1/2023
7.1.0 222 3/1/2023
7.0.10 229 2/27/2023
7.0.9 206 2/23/2023
7.0.8 212 2/23/2023
7.0.7 269 2/14/2023
7.0.6 245 2/6/2023
7.0.5 246 2/3/2023
7.0.4 270 1/30/2023
7.0.3 251 1/30/2023
7.0.2 273 1/26/2023
7.0.1 262 1/23/2023
7.0.0 256 1/19/2023
7.0.0-prerelease.2 151 6/4/2022
7.0.0-prerelease.1 127 6/2/2022
6.6.2 798 1/17/2023
6.6.1 1,059 10/27/2022
6.6.0 472 8/10/2022
6.5.4 488 7/23/2022
6.5.3 510 6/4/2022
6.5.2 503 6/4/2022
6.5.1 517 6/2/2022
6.5.0 499 5/25/2022
6.4.0 537 5/16/2022
6.3.1 1,857 5/11/2022
6.3.0 560 4/28/2022
6.2.13 599 2/21/2022
6.2.12 566 2/18/2022
6.2.11 591 2/16/2022
6.2.10 586 2/13/2022
6.2.9 590 2/9/2022
6.2.8 587 2/8/2022
6.2.7 632 2/2/2022
6.2.6 629 2/1/2022
6.2.5 603 1/30/2022
6.2.4 615 1/27/2022
6.2.3 598 1/27/2022
6.2.2 626 1/24/2022
6.2.1 643 1/12/2022
6.2.0 486 1/7/2022
6.1.2 367 1/2/2022
6.1.0 376 12/26/2021
6.0.18 387 12/15/2021
6.0.17 369 12/14/2021
6.0.16 375 12/5/2021
6.0.15 363 12/4/2021
6.0.14 835 11/19/2021
6.0.13 394 11/16/2021
6.0.12 452 11/13/2021
6.0.11 461 11/8/2021
6.0.10 484 11/3/2021
6.0.9 420 11/2/2021
6.0.8 508 10/28/2021
6.0.7 454 10/27/2021
6.0.6 536 10/25/2021
6.0.5 507 10/25/2021
6.0.4 525 10/21/2021
6.0.3 470 10/15/2021
6.0.2 471 10/12/2021
6.0.1 498 10/12/2021
6.0.0 457 10/11/2021
6.0.0-prerelease.5 189 9/20/2021
6.0.0-prerelease.4 143 9/20/2021
6.0.0-prerelease.3 169 9/20/2021
6.0.0-prerelease.2 169 9/20/2021
6.0.0-prerelease.1 156 9/20/2021
5.4.9 474 9/30/2021
5.4.8 413 9/29/2021
5.4.7 504 9/25/2021
5.4.6 579 9/24/2021
5.4.5 505 9/22/2021
5.4.4 452 9/17/2021
5.4.3 410 9/14/2021
5.4.2 495 9/14/2021
5.4.1 513 9/8/2021
5.4.0 457 9/8/2021
5.3.6 501 8/27/2021
5.3.5 492 8/27/2021
5.3.4 496 8/27/2021
5.3.3 448 8/26/2021
5.3.2 423 8/26/2021
5.3.1 473 8/26/2021
5.3.0 471 8/26/2021
5.2.0 488 8/24/2021
5.1.4 499 8/24/2021
5.1.3 502 8/20/2021
5.1.2 560 8/19/2021
5.1.1 498 8/19/2021
5.1.0 486 8/19/2021
5.1.0-prerelease.2 178 8/19/2021
5.1.0-prerelease.1 170 8/19/2021
5.0.2-prerelease.1 160 8/19/2021
5.0.1 508 8/18/2021
5.0.0 453 8/18/2021
4.3.2 500 8/14/2021
4.3.1 399 8/13/2021
4.3.0 450 8/13/2021
4.2.0 438 8/13/2021
4.1.12 445 8/10/2021
4.1.11 486 8/9/2021
4.1.10 478 8/6/2021
4.1.9 518 8/5/2021
4.1.8 489 8/4/2021
4.1.7 496 8/4/2021
4.1.6 508 7/22/2021
4.1.5 497 7/13/2021
4.1.4 525 7/6/2021
4.1.3 586 6/29/2021
4.1.2 614 6/27/2021
4.1.1 471 6/21/2021
4.1.0 540 6/20/2021
4.0.23 523 6/13/2021
4.0.22 479 6/8/2021
4.0.21 522 6/2/2021
4.0.20 521 5/24/2021
4.0.19 434 5/19/2021
4.0.17 490 5/7/2021
4.0.16 437 5/5/2021
4.0.15 498 5/4/2021
4.0.14 452 4/26/2021
4.0.13 481 4/10/2021
4.0.12 470 4/9/2021
4.0.11 506 4/8/2021
4.0.10 465 4/6/2021
4.0.9 444 4/6/2021
4.0.8 518 4/3/2021
4.0.7 476 4/1/2021
4.0.6 497 3/31/2021
4.0.5 559 3/27/2021
4.0.4 433 3/25/2021
4.0.3 501 3/20/2021
4.0.2 484 3/19/2021
4.0.1 523 3/15/2021
4.0.0 488 3/5/2021
4.0.0-prerelease.2 212 3/5/2021
4.0.0-prerelease.1 215 3/4/2021
3.1.1-prerelease.2 205 2/24/2021
3.1.1-prerelease.1 167 2/23/2021
3.1.0 460 2/23/2021
3.1.0-prerelease.4 168 2/23/2021
3.1.0-prerelease.3 162 2/22/2021
3.1.0-prerelease.2 179 2/22/2021
3.1.0-prerelease.1 179 2/22/2021
3.0.1-prerelease.2 165 2/21/2021
3.0.1-prerelease.1 199 2/9/2021
3.0.0 477 2/8/2021
3.0.0-prerelease.4 176 2/4/2021
3.0.0-prerelease.3 171 1/29/2021
3.0.0-prerelease.2 177 1/29/2021
3.0.0-prerelease.1 192 1/24/2021
2.5.0 500 12/28/2020
2.4.0 470 12/11/2020
2.3.0 465 10/26/2020
2.2.0 481 9/18/2020
2.1.1 425 9/10/2020
2.1.0 454 9/10/2020
2.0.0 461 9/1/2020