- DeploymentManager-008: revert IConfiguration overload (violated OptionsTests component-convention); Host now binds the ScadaLink:DeploymentManager section - SiteStreamGrpcServer: make test-only int ctor internal so DI sees one public ctor (resolves ambiguous-constructor failure in SiteCompositionRootTests) - Host site composition-root test config: supply Cluster:SeedNodes for the new ClusterOptionsValidator
60 lines
2.4 KiB
C#
60 lines
2.4 KiB
C#
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace ScadaLink.DeploymentManager.Tests;
|
|
|
|
/// <summary>
|
|
/// DeploymentManager-008: DeploymentManagerOptions must be resolvable via the
|
|
/// Options pattern and bindable to the "ScadaLink:DeploymentManager"
|
|
/// configuration section. The component itself does not depend on
|
|
/// IConfiguration (enforced by Host's OptionsTests) — the Host binds the
|
|
/// section; AddDeploymentManager only guarantees IOptions resolvability.
|
|
/// </summary>
|
|
public class ServiceCollectionExtensionsTests
|
|
{
|
|
[Fact]
|
|
public void AddDeploymentManager_RegistersResolvableOptions_WithDefaults()
|
|
{
|
|
var services = new ServiceCollection();
|
|
services.AddDeploymentManager();
|
|
|
|
using var provider = services.BuildServiceProvider();
|
|
var options = provider.GetRequiredService<IOptions<DeploymentManagerOptions>>().Value;
|
|
|
|
// No section bound -> the option-class defaults are retained.
|
|
Assert.Equal(TimeSpan.FromSeconds(5), options.OperationLockTimeout);
|
|
}
|
|
|
|
[Fact]
|
|
public void AddDeploymentManager_OptionsBindToConfigurationSection_AsTheHostWires()
|
|
{
|
|
// Mirrors the Host wiring: the Host calls Configure<DeploymentManagerOptions>
|
|
// against OptionsSection, then AddDeploymentManager().
|
|
var configuration = new ConfigurationBuilder()
|
|
.AddInMemoryCollection(new Dictionary<string, string?>
|
|
{
|
|
["ScadaLink:DeploymentManager:OperationLockTimeout"] = "00:00:09",
|
|
["ScadaLink:DeploymentManager:ArtifactDeploymentTimeoutPerSite"] = "00:03:00"
|
|
})
|
|
.Build();
|
|
|
|
var services = new ServiceCollection();
|
|
services.Configure<DeploymentManagerOptions>(
|
|
configuration.GetSection(ServiceCollectionExtensions.OptionsSection));
|
|
services.AddDeploymentManager();
|
|
|
|
using var provider = services.BuildServiceProvider();
|
|
var options = provider.GetRequiredService<IOptions<DeploymentManagerOptions>>().Value;
|
|
|
|
Assert.Equal(TimeSpan.FromSeconds(9), options.OperationLockTimeout);
|
|
Assert.Equal(TimeSpan.FromMinutes(3), options.ArtifactDeploymentTimeoutPerSite);
|
|
}
|
|
|
|
[Fact]
|
|
public void OptionsSection_MatchesTheConventionalComponentSectionPath()
|
|
{
|
|
Assert.Equal("ScadaLink:DeploymentManager", ServiceCollectionExtensions.OptionsSection);
|
|
}
|
|
}
|