mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 17:25:51 +00:00
919af754df
The library currently performs a DNS lookup of the desired host, takes the first returned IP address and connects to that. Instead, we can just pass the hostname down to System.Net.Sockets which will do the right thing, potentially trying multiple addresses if needed. Co-authored-by: Wojciech Nagórski <wojtpl2@gmail.com>
128 lines
4.0 KiB
C#
128 lines
4.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Net;
|
|
using System.Net.Sockets;
|
|
using System.Text;
|
|
using System.Threading;
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
using Moq;
|
|
|
|
using Renci.SshNet.Common;
|
|
using Renci.SshNet.Tests.Common;
|
|
|
|
namespace Renci.SshNet.Tests.Classes.Connection
|
|
{
|
|
[TestClass]
|
|
public class HttpConnectorTest_Connect_ProxyResponseStatusIsNot200 : HttpConnectorTestBase
|
|
{
|
|
private ConnectionInfo _connectionInfo;
|
|
private AsyncSocketListener _proxyServer;
|
|
private Socket _clientSocket;
|
|
private List<byte> _bytesReceivedByProxy;
|
|
private bool _disconnected;
|
|
private ProxyException _actualException;
|
|
|
|
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(100)
|
|
};
|
|
_bytesReceivedByProxy = new List<byte>();
|
|
_actualException = null;
|
|
|
|
_clientSocket = SocketFactory.Create(SocketType.Stream, ProtocolType.Tcp);
|
|
|
|
_proxyServer = new AsyncSocketListener(new IPEndPoint(IPAddress.Loopback, _connectionInfo.ProxyPort));
|
|
_proxyServer.Disconnected += (socket) => _disconnected = true;
|
|
_proxyServer.BytesReceived += (bytesReceived, socket) =>
|
|
{
|
|
if (_bytesReceivedByProxy.Count == 0)
|
|
{
|
|
_ = socket.Send(Encoding.ASCII.GetBytes("HTTP/1.0 404 I searched everywhere, really...\r\n"));
|
|
|
|
socket.Shutdown(SocketShutdown.Send);
|
|
}
|
|
|
|
_bytesReceivedByProxy.AddRange(bytesReceived);
|
|
};
|
|
_proxyServer.Start();
|
|
}
|
|
|
|
protected override void SetupMocks()
|
|
{
|
|
_ = SocketFactoryMock.Setup(p => p.Create(SocketType.Stream, ProtocolType.Tcp))
|
|
.Returns(_clientSocket);
|
|
}
|
|
|
|
protected override void TearDown()
|
|
{
|
|
base.TearDown();
|
|
|
|
_proxyServer?.Dispose();
|
|
}
|
|
|
|
protected override void Act()
|
|
{
|
|
try
|
|
{
|
|
_ = Connector.Connect(_connectionInfo);
|
|
Assert.Fail();
|
|
}
|
|
catch (ProxyException ex)
|
|
{
|
|
_actualException = ex;
|
|
}
|
|
|
|
// Give some time to process all messages
|
|
Thread.Sleep(200);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ConnectShouldHaveThrownProxyException()
|
|
{
|
|
Assert.IsNotNull(_actualException);
|
|
Assert.IsNull(_actualException.InnerException);
|
|
Assert.AreEqual("HTTP: Status code 404, \"I searched everywhere, really...\"", _actualException.Message);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ConnectionToProxyShouldHaveBeenShutDown()
|
|
{
|
|
Assert.IsTrue(_disconnected);
|
|
}
|
|
|
|
[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());
|
|
}
|
|
}
|
|
}
|