Files
ssh.net/test/Renci.SshNet.Tests/Classes/SessionTest_Connected_ConnectionReset.cs
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

180 lines
5.4 KiB
C#

using System.Diagnostics;
using System.Threading;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Renci.SshNet.Common;
using Renci.SshNet.Messages.Transport;
using Renci.SshNet.Tests.Common;
namespace Renci.SshNet.Tests.Classes
{
[TestClass]
public class SessionTest_Connected_ConnectionReset : SessionTest_ConnectedBase
{
protected override void Act()
{
ServerSocket.Close();
// give session some time to react to connection reset
Thread.Sleep(300);
}
[TestMethod]
public void IsConnectedShouldReturnFalse()
{
Assert.IsFalse(Session.IsConnected);
}
[TestMethod]
public void DisconnectShouldFinishImmediately()
{
var stopwatch = new Stopwatch();
stopwatch.Start();
Session.Disconnect();
stopwatch.Stop();
Assert.IsLessThan(500, stopwatch.ElapsedMilliseconds);
}
[TestMethod]
public void DisconnectedIsNeverRaised()
{
Assert.IsEmpty(DisconnectedRegister);
}
[TestMethod]
public void DisconnectReceivedIsNeverRaised()
{
Assert.IsEmpty(DisconnectReceivedRegister);
}
[TestMethod]
public void ErrorOccurredIsRaisedOnce()
{
Assert.HasCount(1, ErrorOccurredRegister, ErrorOccurredRegister.AsString());
var errorOccurred = ErrorOccurredRegister[0];
Assert.IsNotNull(errorOccurred);
var exception = errorOccurred.Exception;
Assert.IsNotNull(exception);
Assert.AreEqual(typeof(SshConnectionException), exception.GetType());
var connectionException = (SshConnectionException)exception;
Assert.AreEqual(DisconnectReason.ConnectionLost, connectionException.DisconnectReason);
}
[TestMethod]
public void DisposeShouldFinishImmediately()
{
var stopwatch = new Stopwatch();
stopwatch.Start();
Session.Dispose();
stopwatch.Stop();
Assert.IsLessThan(500, stopwatch.ElapsedMilliseconds);
}
[TestMethod]
public void SendMessageShouldThrowSshConnectionException()
{
try
{
Session.SendMessage(new IgnoreMessage());
Assert.Fail();
}
catch (SshConnectionException ex)
{
Assert.AreEqual(DisconnectReason.None, ex.DisconnectReason);
Assert.IsNull(ex.InnerException);
Assert.AreEqual("Client not connected.", ex.Message);
}
}
[TestMethod]
public void ISession_MessageListenerCompletedShouldBeSignaled()
{
var session = (ISession)Session;
Assert.IsNotNull(session.MessageListenerCompleted);
Assert.IsTrue(session.MessageListenerCompleted.WaitOne());
}
[TestMethod]
public void ISession_SendMessageShouldThrowSshConnectionException()
{
var session = (ISession)Session;
try
{
session.SendMessage(new IgnoreMessage());
Assert.Fail();
}
catch (SshConnectionException ex)
{
Assert.AreEqual(DisconnectReason.None, ex.DisconnectReason);
Assert.IsNull(ex.InnerException);
Assert.AreEqual("Client not connected.", ex.Message);
}
}
[TestMethod]
public void ISession_TrySendMessageShouldReturnFalse()
{
var session = (ISession)Session;
var actual = session.TrySendMessage(new IgnoreMessage());
Assert.IsFalse(actual);
}
[TestMethod]
public void ISession_WaitOnHandle_WaitHandle_ShouldThrowSshConnectionException()
{
var session = (ISession)Session;
using var waitHandle = new ManualResetEvent(false);
var ex = Assert.ThrowsExactly<SshConnectionException>(() => session.WaitOnHandle(waitHandle));
Assert.AreEqual(DisconnectReason.ConnectionLost, ex.DisconnectReason);
}
[TestMethod]
public void ISession_WaitOnHandle_WaitHandleAndTimeout_ShouldThrowSshConnectionException()
{
var session = (ISession)Session;
using var waitHandle = new ManualResetEvent(false);
var ex = Assert.ThrowsExactly<SshConnectionException>(() => session.WaitOnHandle(waitHandle));
Assert.AreEqual(DisconnectReason.ConnectionLost, ex.DisconnectReason);
}
[TestMethod]
public void ISession_TryWait_WaitHandleAndTimeout_ShouldReturnDisconnected()
{
var session = (ISession)Session;
using var waitHandle = new ManualResetEvent(false);
var result = session.TryWait(waitHandle, Timeout.InfiniteTimeSpan);
Assert.AreEqual(WaitResult.Disconnected, result);
}
[TestMethod]
public void ISession_TryWait_WaitHandleAndTimeoutAndException_ShouldReturnDisconnected()
{
var session = (ISession)Session;
using var waitHandle = new ManualResetEvent(false);
var result = session.TryWait(waitHandle, Timeout.InfiniteTimeSpan, out var exception);
Assert.AreEqual(WaitResult.Disconnected, result);
Assert.IsNull(exception);
}
}
}