64e3fbe035
v2-ci / build (push) Failing after 1m43s
v2-ci / unit-tests (tests/Core/ZB.MOM.WW.OtOpcUa.Cluster.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.ControlPlane.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Runtime.Tests) (push) Has been skipped
v2-ci / unit-tests (tests/Server/ZB.MOM.WW.OtOpcUa.Security.Tests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.Host.IntegrationTests) (push) Has been skipped
v2-ci / integration (tests/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer.IntegrationTests) (push) Has been skipped
Adds <summary>, <param>, <typeparam>, and <inheritdoc/> tags to public members surfaced by commentchecker — resolves 5,847 of 5,869 issues (99.6%) across three /fixdocs passes.
44 lines
1.6 KiB
C#
44 lines
1.6 KiB
C#
using Opc.Ua;
|
|
using ZB.MOM.WW.OtOpcUa.Client.Shared.Adapters;
|
|
using ZB.MOM.WW.OtOpcUa.Client.Shared.Models;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Client.Shared.Tests.Fakes;
|
|
|
|
internal sealed class FakeApplicationConfigurationFactory : IApplicationConfigurationFactory
|
|
{
|
|
/// <summary>Gets or sets a value indicating whether to throw when Create is called.</summary>
|
|
public bool ThrowOnCreate { get; set; }
|
|
|
|
/// <summary>Gets the number of times CreateAsync has been called.</summary>
|
|
public int CreateCallCount { get; private set; }
|
|
|
|
/// <summary>Gets the last connection settings passed to CreateAsync.</summary>
|
|
public ConnectionSettings? LastSettings { get; private set; }
|
|
|
|
/// <inheritdoc />
|
|
public Task<ApplicationConfiguration> CreateAsync(ConnectionSettings settings, CancellationToken ct)
|
|
{
|
|
CreateCallCount++;
|
|
LastSettings = settings;
|
|
|
|
if (ThrowOnCreate)
|
|
throw new InvalidOperationException("FakeApplicationConfigurationFactory configured to fail.");
|
|
|
|
var config = new ApplicationConfiguration
|
|
{
|
|
ApplicationName = "FakeClient",
|
|
ApplicationUri = "urn:localhost:FakeClient",
|
|
ApplicationType = ApplicationType.Client,
|
|
SecurityConfiguration = new SecurityConfiguration
|
|
{
|
|
AutoAcceptUntrustedCertificates = true
|
|
},
|
|
ClientConfiguration = new ClientConfiguration
|
|
{
|
|
DefaultSessionTimeout = settings.SessionTimeoutSeconds * 1000
|
|
}
|
|
};
|
|
|
|
return Task.FromResult(config);
|
|
}
|
|
} |