Files
mus65 933613e31c Update to MSTest 4 (#1721)
* Update to MSTest 4

* fix TestMethodForPlatformAttribute

replace Execute with ExecuteAsync and fix MSTEST0057

https://learn.microsoft.com/en-us/dotnet/core/testing/mstest-analyzers/mstest0057 (link currently dead)

* fix compilation error

* fix MSTEST0037

https://learn.microsoft.com/en-us/dotnet/core/testing/mstest-analyzers/mstest0037

* fix MSTEST0052

https://learn.microsoft.com/en-us/dotnet/core/testing/mstest-analyzers/mstest0052

* fix MSTEST0045

Fixing this properly would require the tests to respect
testContext.CancellationToken. I'm not sure this is worth fixing
or how to even do it for the sync methods.

https://learn.microsoft.com/en-us/dotnet/core/testing/mstest-analyzers/mstest0045

* fix MSTEST0001

I assume that parallelization would break a lot of stuff.

https://learn.microsoft.com/en-us/dotnet/core/testing/mstest-analyzers/mstest0001

* Workaround for new Sonar warnings because of MSTest4

* revert analyzer fixes in OrderedDictionaryTest

* use custom sync console logger for MSTest

to work around https://github.com/microsoft/testfx/issues/6457

* remove redundant args

---------

Co-authored-by: Wojciech Nagórski <wojtpl2@gmail.com>
Co-authored-by: Rob Hague <rob.hague00@gmail.com>
2025-11-14 22:09:13 +01:00

103 lines
2.6 KiB
C#

using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Renci.SshNet.Common;
namespace Renci.SshNet.Tests.Classes.Common
{
[TestClass]
public class ExtensionsTest_Take_Count
{
private Random _random;
[TestInitialize]
public void Init()
{
_random = new Random();
}
[TestMethod]
public void ShouldThrowArgumentNullExceptionWhenValueIsNull()
{
const byte[] value = null;
const int count = 0;
try
{
Extensions.Take(value, count);
Assert.Fail();
}
catch (ArgumentNullException ex)
{
Assert.IsNull(ex.InnerException);
Assert.AreEqual("value", ex.ParamName);
}
}
[TestMethod]
public void ShouldReturnEmptyByteArrayWhenCountIsZero()
{
var value = CreateBuffer(16);
const int count = 0;
var actual = Extensions.Take(value, count);
Assert.IsNotNull(actual);
Assert.IsEmpty(actual);
}
[TestMethod]
public void ShouldReturnValueWhenCountIsEqualToLengthOfValue()
{
var value = CreateBuffer(16);
var count = value.Length;
var actual = Extensions.Take(value, count);
Assert.IsNotNull(actual);
Assert.AreSame(value, actual);
}
[TestMethod]
public void ShouldReturnLeadingBytesWhenCountIsLessThanLengthOfValue()
{
var value = CreateBuffer(16);
const int count = 5;
var actual = Extensions.Take(value, count);
Assert.IsNotNull(actual);
Assert.HasCount(count, actual);
Assert.AreEqual(value[0], actual[0]);
Assert.AreEqual(value[1], actual[1]);
Assert.AreEqual(value[2], actual[2]);
Assert.AreEqual(value[3], actual[3]);
Assert.AreEqual(value[4], actual[4]);
}
[TestMethod]
public void ShouldThrowArgumentExceptionWhenCountIsGreaterThanLengthOfValue()
{
var value = CreateBuffer(16);
var count = value.Length + 1;
try
{
Extensions.Take(value, count);
Assert.Fail();
}
catch (ArgumentException)
{
}
}
private byte[] CreateBuffer(int length)
{
var buffer = new byte[length];
_random.NextBytes(buffer);
return buffer;
}
}
}