mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 17:25:51 +00:00
41dde35d74
* Initial plan * Replace TestMethodForPlatformAttribute with OSCondition attribute Co-authored-by: Rob-Hague <5132141+Rob-Hague@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Rob-Hague <5132141+Rob-Hague@users.noreply.github.com>
125 lines
4.0 KiB
C#
125 lines
4.0 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Globalization;
|
|
using System.Net;
|
|
using System.Net.Sockets;
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
using Moq;
|
|
|
|
using Renci.SshNet.Common;
|
|
|
|
namespace Renci.SshNet.Tests.Classes.Connection
|
|
{
|
|
[TestClass]
|
|
public class DirectConnectorTest_Connect_TimeoutConnectingToServer : DirectConnectorTestBase
|
|
{
|
|
private ConnectionInfo _connectionInfo;
|
|
private Exception _actualException;
|
|
private Socket _clientSocket;
|
|
private Stopwatch _stopWatch;
|
|
|
|
protected override void SetupData()
|
|
{
|
|
base.SetupData();
|
|
|
|
var random = new Random();
|
|
|
|
_connectionInfo = CreateConnectionInfo(IPAddress.Loopback.ToString());
|
|
_connectionInfo.Timeout = TimeSpan.FromMilliseconds(random.Next(50, 200));
|
|
_stopWatch = new Stopwatch();
|
|
_actualException = null;
|
|
|
|
_clientSocket = SocketFactory.Create(SocketType.Stream, ProtocolType.Tcp);
|
|
}
|
|
|
|
protected override void SetupMocks()
|
|
{
|
|
_ = SocketFactoryMock.Setup(p => p.Create(SocketType.Stream, ProtocolType.Tcp))
|
|
.Returns(_clientSocket);
|
|
}
|
|
|
|
protected override void TearDown()
|
|
{
|
|
base.TearDown();
|
|
|
|
_clientSocket?.Dispose();
|
|
}
|
|
|
|
protected override void Act()
|
|
{
|
|
_stopWatch.Start();
|
|
|
|
try
|
|
{
|
|
_ = Connector.Connect(_connectionInfo);
|
|
Assert.Fail();
|
|
}
|
|
catch (SshOperationTimeoutException ex)
|
|
{
|
|
_actualException = ex;
|
|
}
|
|
catch (SocketException ex)
|
|
{
|
|
_actualException = ex;
|
|
}
|
|
finally
|
|
{
|
|
_stopWatch.Stop();
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
[OSCondition(OperatingSystems.Windows)]
|
|
public void ConnectShouldHaveThrownSshOperationTimeoutExceptionOnWindows()
|
|
{
|
|
Assert.IsNull(_actualException.InnerException);
|
|
Assert.IsInstanceOfType<SshOperationTimeoutException>(_actualException);
|
|
Assert.AreEqual(string.Format(CultureInfo.InvariantCulture, "Connection failed to establish within {0} milliseconds.", _connectionInfo.Timeout.TotalMilliseconds), _actualException.Message);
|
|
}
|
|
|
|
[TestMethod]
|
|
[OSCondition(OperatingSystems.Linux)]
|
|
public void ConnectShouldHaveThrownSocketExceptionOnLinux()
|
|
{
|
|
Assert.IsNull(_actualException.InnerException);
|
|
Assert.IsInstanceOfType<SocketException>(_actualException);
|
|
Assert.AreEqual("Connection refused", _actualException.Message);
|
|
}
|
|
|
|
[TestMethod]
|
|
[OSCondition(OperatingSystems.Windows)]
|
|
public void ConnectShouldHaveRespectedTimeoutOnWindows()
|
|
{
|
|
var errorText = string.Format("Elapsed: {0}, Timeout: {1}",
|
|
_stopWatch.ElapsedMilliseconds,
|
|
_connectionInfo.Timeout.TotalMilliseconds);
|
|
|
|
// Compare elapsed time with configured timeout, allowing for a margin of error
|
|
Assert.IsGreaterThanOrEqualTo(_connectionInfo.Timeout.TotalMilliseconds - 10, _stopWatch.ElapsedMilliseconds, errorText);
|
|
Assert.IsLessThan(_connectionInfo.Timeout.TotalMilliseconds + 100, _stopWatch.ElapsedMilliseconds, errorText);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ClientSocketShouldHaveBeenDisposed()
|
|
{
|
|
try
|
|
{
|
|
_ = _clientSocket.Receive(new byte[0]);
|
|
Assert.Fail();
|
|
}
|
|
catch (ObjectDisposedException)
|
|
{
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void CreateOnSocketFactoryShouldHaveBeenInvokedOnce()
|
|
{
|
|
SocketFactoryMock.Verify(p => p.Create(SocketType.Stream, ProtocolType.Tcp),
|
|
Times.Once());
|
|
}
|
|
}
|
|
}
|