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.
<PackageVersion Include="KubeOps.Testing" Version="7.6.1" />
                    
Directory.Packages.props
<PackageReference Include="KubeOps.Testing" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version 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.
#:package KubeOps.Testing@7.6.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=KubeOps.Testing&version=7.6.1
                    
Install as a Cake Addin
#tool nuget:?package=KubeOps.Testing&version=7.6.1
                    
Install as a Cake Tool

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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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 4,142 9/29/2023
7.6.0 610 9/19/2023
7.5.0 344 9/13/2023
7.4.5 156 9/13/2023
7.4.4 224 8/28/2023
7.4.3 184 8/28/2023
7.4.2 1,738 7/17/2023
7.4.1 192 7/17/2023
7.4.0 288 6/26/2023
7.3.0 710 6/1/2023
7.2.0 339 4/14/2023
7.1.2 261 4/14/2023
7.1.1 460 3/1/2023
7.1.0 302 3/1/2023
7.0.10 307 2/27/2023
7.0.9 281 2/23/2023
7.0.8 295 2/23/2023
7.0.7 341 2/14/2023
7.0.6 328 2/6/2023
7.0.5 327 2/3/2023
7.0.4 343 1/30/2023
7.0.3 344 1/30/2023
7.0.2 379 1/26/2023
7.0.1 342 1/23/2023
7.0.0 347 1/19/2023
7.0.0-prerelease.2 239 6/4/2022
7.0.0-prerelease.1 198 6/2/2022
6.6.2 907 1/17/2023
6.6.1 1,432 10/27/2022
6.6.0 567 8/10/2022
6.5.4 579 7/23/2022
6.5.3 606 6/4/2022
6.5.2 595 6/4/2022
6.5.1 613 6/2/2022
6.5.0 596 5/25/2022
6.4.0 626 5/16/2022
6.3.1 1,957 5/11/2022
6.3.0 656 4/28/2022
6.2.13 695 2/21/2022
6.2.12 661 2/18/2022
6.2.11 686 2/16/2022
6.2.10 681 2/13/2022
6.2.9 686 2/9/2022
6.2.8 684 2/8/2022
6.2.7 726 2/2/2022
6.2.6 727 2/1/2022
6.2.5 707 1/30/2022
6.2.4 719 1/27/2022
6.2.3 689 1/27/2022
6.2.2 726 1/24/2022
6.2.1 746 1/12/2022
6.2.0 594 1/7/2022
6.1.2 468 1/2/2022
6.1.0 472 12/26/2021
6.0.18 489 12/15/2021
6.0.17 466 12/14/2021
6.0.16 476 12/5/2021
6.0.15 464 12/4/2021
6.0.14 940 11/19/2021
6.0.13 492 11/16/2021
6.0.12 565 11/13/2021
6.0.11 564 11/8/2021
6.0.10 587 11/3/2021
6.0.9 518 11/2/2021
6.0.8 610 10/28/2021
6.0.7 561 10/27/2021
6.0.6 654 10/25/2021
6.0.5 601 10/25/2021
6.0.4 621 10/21/2021
6.0.3 580 10/15/2021
6.0.2 571 10/12/2021
6.0.1 598 10/12/2021
6.0.0 558 10/11/2021
6.0.0-prerelease.5 271 9/20/2021
6.0.0-prerelease.4 220 9/20/2021
6.0.0-prerelease.3 248 9/20/2021
6.0.0-prerelease.2 247 9/20/2021
6.0.0-prerelease.1 236 9/20/2021
5.4.9 573 9/30/2021
5.4.8 510 9/29/2021
5.4.7 630 9/25/2021
5.4.6 676 9/24/2021
5.4.5 602 9/22/2021
5.4.4 555 9/17/2021
5.4.3 510 9/14/2021
5.4.2 597 9/14/2021
5.4.1 609 9/8/2021
5.4.0 556 9/8/2021
5.3.6 597 8/27/2021
5.3.5 587 8/27/2021
5.3.4 597 8/27/2021
5.3.3 551 8/26/2021
5.3.2 532 8/26/2021
5.3.1 570 8/26/2021
5.3.0 576 8/26/2021
5.2.0 606 8/24/2021
5.1.4 596 8/24/2021
5.1.3 605 8/20/2021
5.1.2 661 8/19/2021
5.1.1 621 8/19/2021
5.1.0 592 8/19/2021
5.1.0-prerelease.2 256 8/19/2021
5.1.0-prerelease.1 253 8/19/2021
5.0.2-prerelease.1 244 8/19/2021
5.0.1 617 8/18/2021
5.0.0 551 8/18/2021
4.3.2 600 8/14/2021
4.3.1 496 8/13/2021
4.3.0 550 8/13/2021
4.2.0 542 8/13/2021
4.1.12 559 8/10/2021
4.1.11 585 8/9/2021
4.1.10 574 8/6/2021
4.1.9 620 8/5/2021
4.1.8 579 8/4/2021
4.1.7 604 8/4/2021
4.1.6 614 7/22/2021
4.1.5 596 7/13/2021
4.1.4 622 7/6/2021
4.1.3 686 6/29/2021
4.1.2 725 6/27/2021
4.1.1 572 6/21/2021
4.1.0 638 6/20/2021
4.0.23 629 6/13/2021
4.0.22 580 6/8/2021
4.0.21 626 6/2/2021
4.0.20 634 5/24/2021
4.0.19 541 5/19/2021
4.0.17 597 5/7/2021
4.0.16 553 5/5/2021
4.0.15 601 5/4/2021
4.0.14 563 4/26/2021
4.0.13 586 4/10/2021
4.0.12 576 4/9/2021
4.0.11 617 4/8/2021
4.0.10 571 4/6/2021
4.0.9 563 4/6/2021
4.0.8 622 4/3/2021
4.0.7 596 4/1/2021
4.0.6 603 3/31/2021
4.0.5 666 3/27/2021
4.0.4 535 3/25/2021
4.0.3 615 3/20/2021
4.0.2 597 3/19/2021
4.0.1 644 3/15/2021
4.0.0 603 3/5/2021
4.0.0-prerelease.2 300 3/5/2021
4.0.0-prerelease.1 302 3/4/2021
3.1.1-prerelease.2 296 2/24/2021
3.1.1-prerelease.1 252 2/23/2021
3.1.0 568 2/23/2021
3.1.0-prerelease.4 255 2/23/2021
3.1.0-prerelease.3 251 2/22/2021
3.1.0-prerelease.2 266 2/22/2021
3.1.0-prerelease.1 264 2/22/2021
3.0.1-prerelease.2 258 2/21/2021
3.0.1-prerelease.1 289 2/9/2021
3.0.0 594 2/8/2021
3.0.0-prerelease.4 260 2/4/2021
3.0.0-prerelease.3 255 1/29/2021
3.0.0-prerelease.2 265 1/29/2021
3.0.0-prerelease.1 278 1/24/2021
2.5.0 608 12/28/2020
2.4.0 590 12/11/2020
2.3.0 576 10/26/2020
2.2.0 588 9/18/2020
2.1.1 537 9/10/2020
2.1.0 565 9/10/2020
2.0.0 573 9/1/2020