LmxProxy is no longer needed. Moved the entire lmxproxy/ workspace, DCL adapter files, and related docs to deprecated/. Removed LmxProxy registration from DataConnectionFactory, project reference from DCL, protocol option from UI, and cleaned up all requirement docs.
56 lines
1.7 KiB
C#
56 lines
1.7 KiB
C#
using Microsoft.Extensions.Logging.Abstractions;
|
|
using ScadaLink.DataConnectionLayer.Adapters;
|
|
|
|
namespace ScadaLink.DataConnectionLayer.Tests;
|
|
|
|
/// <summary>
|
|
/// WP-34: Tests for protocol extensibility via DataConnectionFactory.
|
|
/// </summary>
|
|
public class DataConnectionFactoryTests
|
|
{
|
|
[Fact]
|
|
public void Create_OpcUa_ReturnsOpcUaAdapter()
|
|
{
|
|
var factory = new DataConnectionFactory(NullLoggerFactory.Instance);
|
|
|
|
var connection = factory.Create("OpcUa", new Dictionary<string, string>());
|
|
|
|
Assert.IsType<OpcUaDataConnection>(connection);
|
|
}
|
|
|
|
[Fact]
|
|
public void Create_CaseInsensitive()
|
|
{
|
|
var factory = new DataConnectionFactory(NullLoggerFactory.Instance);
|
|
|
|
var connection = factory.Create("opcua", new Dictionary<string, string>());
|
|
|
|
Assert.IsType<OpcUaDataConnection>(connection);
|
|
}
|
|
|
|
[Fact]
|
|
public void Create_UnknownProtocol_Throws()
|
|
{
|
|
var factory = new DataConnectionFactory(NullLoggerFactory.Instance);
|
|
|
|
var ex = Assert.Throws<ArgumentException>(() =>
|
|
factory.Create("UnknownProtocol", new Dictionary<string, string>()));
|
|
|
|
Assert.Contains("Unknown protocol type", ex.Message);
|
|
Assert.Contains("OpcUa", ex.Message);
|
|
}
|
|
|
|
[Fact]
|
|
public void RegisterAdapter_ExtendsFactory()
|
|
{
|
|
var factory = new DataConnectionFactory(NullLoggerFactory.Instance);
|
|
|
|
// WP-34: Adding new protocol = register adapter
|
|
factory.RegisterAdapter("Custom", _ => new OpcUaDataConnection(
|
|
new DefaultOpcUaClientFactory(), NullLogger<OpcUaDataConnection>.Instance));
|
|
|
|
var connection = factory.Create("Custom", new Dictionary<string, string>());
|
|
Assert.NotNull(connection);
|
|
}
|
|
}
|