mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-11 01:36:39 +00:00
933613e31c
* 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>
74 lines
2.7 KiB
C#
74 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using Microsoft.Extensions.Logging.Abstractions;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
using Moq;
|
|
|
|
using Renci.SshNet.Common;
|
|
using Renci.SshNet.Messages.Connection;
|
|
|
|
namespace Renci.SshNet.Tests.Classes.Channels
|
|
{
|
|
[TestClass]
|
|
public class ClientChannelTest_OnSessionChannelOpenConfirmationReceived_OnOpenConfirmation_Exception
|
|
{
|
|
private Mock<ISession> _sessionMock;
|
|
private uint _localChannelNumber;
|
|
private uint _localWindowSize;
|
|
private uint _localPacketSize;
|
|
private uint _remoteChannelNumber;
|
|
private ClientChannelStub _channel;
|
|
private IList<ExceptionEventArgs> _channelExceptionRegister;
|
|
private Exception _onOpenConfirmationException;
|
|
|
|
[TestInitialize]
|
|
public void Initialize()
|
|
{
|
|
Arrange();
|
|
Act();
|
|
}
|
|
|
|
private void Arrange()
|
|
{
|
|
var random = new Random();
|
|
_localChannelNumber = (uint)random.Next(0, int.MaxValue);
|
|
_localWindowSize = (uint)random.Next(1000, int.MaxValue);
|
|
_localPacketSize = _localWindowSize - 1;
|
|
_remoteChannelNumber = (uint)random.Next(0, int.MaxValue);
|
|
_onOpenConfirmationException = new SystemException();
|
|
_channelExceptionRegister = new List<ExceptionEventArgs>();
|
|
|
|
_sessionMock = new Mock<ISession>(MockBehavior.Strict);
|
|
_sessionMock.Setup(p => p.SessionLoggerFactory).Returns(NullLoggerFactory.Instance);
|
|
|
|
_channel = new ClientChannelStub(_sessionMock.Object, _localChannelNumber, _localWindowSize, _localPacketSize);
|
|
_channel.Exception += (sender, args) => _channelExceptionRegister.Add(args);
|
|
_channel.OnOpenConfirmationException = _onOpenConfirmationException;
|
|
}
|
|
|
|
private void Act()
|
|
{
|
|
_sessionMock.Raise(s => s.ChannelOpenConfirmationReceived += null,
|
|
new MessageEventArgs<ChannelOpenConfirmationMessage>(
|
|
new ChannelOpenConfirmationMessage(_localChannelNumber, _localWindowSize, _localPacketSize,
|
|
_remoteChannelNumber)));
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ExceptionEventShouldHaveFiredOnce()
|
|
{
|
|
Assert.HasCount(1, _channelExceptionRegister);
|
|
Assert.AreSame(_onOpenConfirmationException, _channelExceptionRegister[0].Exception);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void OnErrorOccurredShouldBeInvokedOnce()
|
|
{
|
|
Assert.HasCount(1, _channel.OnErrorOccurredInvocations);
|
|
Assert.AreSame(_onOpenConfirmationException, _channel.OnErrorOccurredInvocations[0]);
|
|
}
|
|
}
|
|
}
|