mirror of
https://github.com/evopro-ag/Sharp7Reactive.git
synced 2025-12-16 03:42:51 +00:00
52 lines
1.7 KiB
C#
52 lines
1.7 KiB
C#
using NUnit.Framework;
|
|
using Shouldly;
|
|
|
|
namespace Sharp7.Rx.Tests.ValueConverterTests;
|
|
|
|
[TestFixture]
|
|
internal class ReadFromBuffer : ConverterTestBase
|
|
{
|
|
[TestCaseSource(nameof(GetValidTestCases))]
|
|
[TestCaseSource(nameof(GetAdditinalReadTestCases))]
|
|
public void Read(ConverterTestCase tc)
|
|
{
|
|
//Arrange
|
|
var convert = CreateReadMethod(tc);
|
|
|
|
//Act
|
|
var result = convert.Invoke(null, [tc.Data, tc.VariableAddress]);
|
|
|
|
//Assert
|
|
result.ShouldBe(tc.Value);
|
|
}
|
|
|
|
public static IEnumerable<ConverterTestCase> GetAdditinalReadTestCases()
|
|
{
|
|
yield return new ConverterTestCase(true, "DB0.DBx0.4", [0x1F]);
|
|
yield return new ConverterTestCase(false, "DB0.DBx0.4", [0xEF]);
|
|
yield return new ConverterTestCase("ABCD", "DB0.string0.6", [0x04, 0x04, 0x41, 0x42, 0x43, 0x44, 0x00, 0x00]); // Length in address exceeds PLC string length
|
|
}
|
|
|
|
[TestCase((char) 18, "DB0.DBB0", new byte[] {0x12})]
|
|
public void UnsupportedType<T>(T template, string address, byte[] data)
|
|
{
|
|
//Arrange
|
|
var variableAddress = Parser.Parse(address);
|
|
|
|
//Act
|
|
Should.Throw<UnsupportedS7TypeException>(() => ValueConverter.ReadFromBuffer<T>(data, variableAddress));
|
|
}
|
|
|
|
[TestCase(123, "DB12.DINT3", new byte[] {0x01, 0x02, 0x03})]
|
|
[TestCase((short) 123, "DB12.INT3", new byte[] {0xF2})]
|
|
[TestCase("ABC", "DB0.string0.6", new byte[] {0x01, 0x02, 0x03})]
|
|
public void BufferTooSmall<T>(T template, string address, byte[] data)
|
|
{
|
|
//Arrange
|
|
var variableAddress = Parser.Parse(address);
|
|
|
|
//Act
|
|
Should.Throw<ArgumentException>(() => ValueConverter.ReadFromBuffer<T>(data, variableAddress));
|
|
}
|
|
}
|