mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 09:15:47 +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>
100 lines
3.1 KiB
C#
100 lines
3.1 KiB
C#
using System;
|
|
using System.Linq;
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
using Moq;
|
|
|
|
namespace Renci.SshNet.Tests.Classes
|
|
{
|
|
[TestClass]
|
|
public class SshClientTest_Dispose_ForwardedPortStarted : BaseClientTestBase
|
|
{
|
|
private Mock<ForwardedPort> _forwardedPortMock;
|
|
private SshClient _sshClient;
|
|
private ConnectionInfo _connectionInfo;
|
|
|
|
protected override void CreateMocks()
|
|
{
|
|
base.CreateMocks();
|
|
|
|
_forwardedPortMock = new Mock<ForwardedPort>(MockBehavior.Strict);
|
|
}
|
|
|
|
protected override void SetupData()
|
|
{
|
|
_connectionInfo = new ConnectionInfo("host", "user", new NoneAuthenticationMethod("userauth"));
|
|
}
|
|
|
|
protected override void SetupMocks()
|
|
{
|
|
var sequence = new MockSequence();
|
|
|
|
ServiceFactoryMock.InSequence(sequence)
|
|
.Setup(p => p.CreateSocketFactory())
|
|
.Returns(SocketFactoryMock.Object);
|
|
ServiceFactoryMock.InSequence(sequence)
|
|
.Setup(p => p.CreateSession(_connectionInfo, SocketFactoryMock.Object))
|
|
.Returns(SessionMock.Object);
|
|
SessionMock.InSequence(sequence).Setup(p => p.Connect());
|
|
_forwardedPortMock.InSequence(sequence).Setup(p => p.Start());
|
|
SessionMock.InSequence(sequence).Setup(p => p.OnDisconnecting());
|
|
_forwardedPortMock.InSequence(sequence).Setup(p => p.Stop());
|
|
SessionMock.InSequence(sequence).Setup(p => p.Dispose());
|
|
}
|
|
|
|
protected override void Arrange()
|
|
{
|
|
base.Arrange();
|
|
|
|
_sshClient = new SshClient(_connectionInfo, false, ServiceFactoryMock.Object);
|
|
_sshClient.Connect();
|
|
_sshClient.AddForwardedPort(_forwardedPortMock.Object);
|
|
|
|
_forwardedPortMock.Object.Start();
|
|
}
|
|
|
|
protected override void Act()
|
|
{
|
|
_sshClient.Dispose();
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ForwardedPortShouldBeStopped()
|
|
{
|
|
_forwardedPortMock.Verify(p => p.Stop(), Times.Once);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ForwardedPortShouldBeRemovedFromSshClient()
|
|
{
|
|
Assert.IsFalse(_sshClient.ForwardedPorts.Any());
|
|
}
|
|
|
|
[TestMethod]
|
|
public void IsConnectedShouldThrowObjectDisposedException()
|
|
{
|
|
try
|
|
{
|
|
var connected = _sshClient.IsConnected;
|
|
Assert.Fail($"IsConnected should have thrown {typeof(ObjectDisposedException).FullName} but returned {connected}.");
|
|
}
|
|
catch (ObjectDisposedException)
|
|
{
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void DisconnectOnSessionShouldNeverBeInvoked()
|
|
{
|
|
SessionMock.Verify(p => p.Disconnect(), Times.Never);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void DisposeOnSessionShouldBeInvokedOnce()
|
|
{
|
|
SessionMock.Verify(p => p.Dispose(), Times.Once);
|
|
}
|
|
}
|
|
}
|