mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 17:25:51 +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>
168 lines
7.1 KiB
C#
168 lines
7.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.Net;
|
|
using System.Threading;
|
|
|
|
using Microsoft.Extensions.Logging.Abstractions;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
using Moq;
|
|
|
|
using Renci.SshNet.Channels;
|
|
using Renci.SshNet.Common;
|
|
using Renci.SshNet.Messages.Connection;
|
|
|
|
namespace Renci.SshNet.Tests.Classes
|
|
{
|
|
[TestClass]
|
|
public class ForwardedPortRemoteTest_Start_PortStopped
|
|
{
|
|
private Mock<ISession> _sessionMock;
|
|
private Mock<IConnectionInfo> _connectionInfoMock;
|
|
private ForwardedPortRemote _forwardedPort;
|
|
private IList<EventArgs> _closingRegister;
|
|
private IList<ExceptionEventArgs> _exceptionRegister;
|
|
private IPEndPoint _bindEndpoint;
|
|
private IPEndPoint _remoteEndpoint;
|
|
|
|
[TestInitialize]
|
|
public void Setup()
|
|
{
|
|
Arrange();
|
|
Act();
|
|
}
|
|
|
|
[TestCleanup]
|
|
public void Cleanup()
|
|
{
|
|
if (_forwardedPort != null)
|
|
{
|
|
_sessionMock.Setup(
|
|
p =>
|
|
p.SendMessage(
|
|
It.Is<CancelTcpIpForwardGlobalRequestMessage>(
|
|
g =>
|
|
g.AddressToBind == _forwardedPort.BoundHost &&
|
|
g.PortToBind == _forwardedPort.BoundPort)));
|
|
_sessionMock.Setup(p => p.MessageListenerCompleted).Returns(new ManualResetEvent(true));
|
|
_forwardedPort.Dispose();
|
|
_forwardedPort = null;
|
|
}
|
|
}
|
|
|
|
protected void Arrange()
|
|
{
|
|
var random = new Random();
|
|
_closingRegister = new List<EventArgs>();
|
|
_exceptionRegister = new List<ExceptionEventArgs>();
|
|
_bindEndpoint = new IPEndPoint(IPAddress.Any, random.Next(IPEndPoint.MinPort, 1000));
|
|
_remoteEndpoint = new IPEndPoint(IPAddress.Parse("193.168.1.5"), random.Next(IPEndPoint.MinPort, IPEndPoint.MaxPort));
|
|
_forwardedPort = new ForwardedPortRemote(_bindEndpoint.Address, (uint)_bindEndpoint.Port, _remoteEndpoint.Address, (uint)_remoteEndpoint.Port);
|
|
|
|
_connectionInfoMock = new Mock<IConnectionInfo>(MockBehavior.Strict);
|
|
_sessionMock = new Mock<ISession>(MockBehavior.Strict);
|
|
_sessionMock.Setup(p => p.SessionLoggerFactory).Returns(NullLoggerFactory.Instance);
|
|
|
|
_connectionInfoMock.Setup(p => p.Timeout).Returns(TimeSpan.FromSeconds(15));
|
|
_sessionMock.Setup(p => p.IsConnected).Returns(true);
|
|
_sessionMock.Setup(p => p.ConnectionInfo).Returns(_connectionInfoMock.Object);
|
|
_sessionMock.Setup(p => p.RegisterMessage("SSH_MSG_REQUEST_FAILURE"));
|
|
_sessionMock.Setup(p => p.RegisterMessage("SSH_MSG_REQUEST_SUCCESS"));
|
|
_sessionMock.Setup(p => p.RegisterMessage("SSH_MSG_CHANNEL_OPEN"));
|
|
_sessionMock.Setup(
|
|
p =>
|
|
p.SendMessage(
|
|
It.Is<TcpIpForwardGlobalRequestMessage>(
|
|
g =>
|
|
g.AddressToBind == _forwardedPort.BoundHost &&
|
|
g.PortToBind == _forwardedPort.BoundPort)))
|
|
.Callback(
|
|
() =>
|
|
_sessionMock.Raise(s => s.RequestSuccessReceived += null,
|
|
new MessageEventArgs<RequestSuccessMessage>(new RequestSuccessMessage())));
|
|
_sessionMock.Setup(p => p.WaitOnHandle(It.IsAny<WaitHandle>()))
|
|
.Callback<WaitHandle>(handle => handle.WaitOne());
|
|
_sessionMock.Setup(
|
|
p =>
|
|
p.SendMessage(
|
|
It.Is<CancelTcpIpForwardGlobalRequestMessage>(
|
|
g =>
|
|
g.AddressToBind == _forwardedPort.BoundHost &&
|
|
g.PortToBind == _forwardedPort.BoundPort)))
|
|
.Callback(
|
|
() =>
|
|
_sessionMock.Raise(s => s.RequestSuccessReceived += null,
|
|
new MessageEventArgs<RequestSuccessMessage>(new RequestSuccessMessage())));
|
|
_sessionMock.Setup(p => p.MessageListenerCompleted).Returns(new ManualResetEvent(false));
|
|
|
|
_forwardedPort.Closing += (sender, args) => _closingRegister.Add(args);
|
|
_forwardedPort.Exception += (sender, args) => _exceptionRegister.Add(args);
|
|
_forwardedPort.Session = _sessionMock.Object;
|
|
_forwardedPort.Start();
|
|
_forwardedPort.Stop();
|
|
|
|
_closingRegister.Clear();
|
|
}
|
|
|
|
protected void Act()
|
|
{
|
|
_forwardedPort.Start();
|
|
}
|
|
|
|
[TestMethod]
|
|
public void IsStartedShouldReturnTrue()
|
|
{
|
|
Assert.IsTrue(_forwardedPort.IsStarted);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ForwardedPortShouldAcceptNewConnections()
|
|
{
|
|
var channelNumber = (uint)new Random().Next(1001, int.MaxValue);
|
|
var initialWindowSize = (uint)new Random().Next(0, int.MaxValue);
|
|
var maximumPacketSize = (uint)new Random().Next(0, int.MaxValue);
|
|
var originatorAddress = new Random().Next().ToString(CultureInfo.InvariantCulture);
|
|
var originatorPort = (uint)new Random().Next(0, int.MaxValue);
|
|
var channelMock = new Mock<IChannelForwardedTcpip>(MockBehavior.Strict);
|
|
var channelDisposed = new ManualResetEvent(false);
|
|
|
|
_sessionMock.Setup(
|
|
p =>
|
|
p.CreateChannelForwardedTcpip(channelNumber, initialWindowSize, maximumPacketSize)).Returns(channelMock.Object);
|
|
channelMock.Setup(
|
|
p =>
|
|
p.Bind(
|
|
It.Is<IPEndPoint>(
|
|
ep => ep.Address.Equals(_remoteEndpoint.Address) && ep.Port == _remoteEndpoint.Port),
|
|
_forwardedPort));
|
|
channelMock.Setup(p => p.Dispose()).Callback(() => channelDisposed.Set());
|
|
|
|
_sessionMock.Raise(p => p.ChannelOpenReceived += null,
|
|
new MessageEventArgs<ChannelOpenMessage>(new ChannelOpenMessage(channelNumber, initialWindowSize,
|
|
maximumPacketSize,
|
|
new ForwardedTcpipChannelInfo(_forwardedPort.BoundHost, _forwardedPort.BoundPort, originatorAddress,
|
|
originatorPort))));
|
|
|
|
// wait for channel to be disposed
|
|
channelDisposed.WaitOne(TimeSpan.FromMilliseconds(200));
|
|
|
|
_sessionMock.Verify(p => p.CreateChannelForwardedTcpip(channelNumber, initialWindowSize, maximumPacketSize), Times.Once);
|
|
channelMock.Verify(p => p.Bind(It.Is<IPEndPoint>(ep => ep.Address.Equals(_remoteEndpoint.Address) && ep.Port == _remoteEndpoint.Port), _forwardedPort), Times.Once);
|
|
channelMock.Verify(p => p.Dispose(), Times.Once);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ClosingShouldNeverHaveFired()
|
|
{
|
|
Assert.IsEmpty(_closingRegister);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ExceptionShouldNotHaveFired()
|
|
{
|
|
Assert.IsEmpty(_exceptionRegister);
|
|
}
|
|
}
|
|
}
|