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>
113 lines
3.5 KiB
C#
113 lines
3.5 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Net;
|
|
using System.Net.Sockets;
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
using Moq;
|
|
|
|
namespace Renci.SshNet.Tests.Classes.Connection
|
|
{
|
|
[TestClass]
|
|
public class HttpConnectorTest_Connect_ConnectionToProxyRefused : HttpConnectorTestBase
|
|
{
|
|
private ConnectionInfo _connectionInfo;
|
|
private SocketException _actualException;
|
|
private Socket _clientSocket;
|
|
private Stopwatch _stopWatch;
|
|
|
|
protected override void SetupData()
|
|
{
|
|
base.SetupData();
|
|
|
|
_connectionInfo = new ConnectionInfo(IPAddress.Loopback.ToString(),
|
|
777,
|
|
"user",
|
|
ProxyTypes.Http,
|
|
IPAddress.Loopback.ToString(),
|
|
8122,
|
|
"proxyUser",
|
|
"proxyPwd",
|
|
new KeyboardInteractiveAuthenticationMethod("user"))
|
|
{
|
|
Timeout = TimeSpan.FromMilliseconds(5000)
|
|
};
|
|
_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 (SocketException ex)
|
|
{
|
|
_actualException = ex;
|
|
}
|
|
finally
|
|
{
|
|
_stopWatch.Stop();
|
|
}
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ConnectShouldHaveThrownSocketException()
|
|
{
|
|
Assert.IsNull(_actualException.InnerException);
|
|
Assert.AreEqual(SocketError.ConnectionRefused, _actualException.SocketErrorCode);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ConnectShouldHaveRespectedTimeout()
|
|
{
|
|
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.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());
|
|
}
|
|
}
|
|
}
|