mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-11 13:39:09 +00:00
136 lines
4.7 KiB
C#
136 lines
4.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Net.Sockets;
|
|
using System.Text;
|
|
using System.Threading;
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
using Renci.SshNet.Common;
|
|
using Renci.SshNet.Connection;
|
|
using Renci.SshNet.Tests.Common;
|
|
|
|
namespace Renci.SshNet.Tests.Classes.Connection
|
|
{
|
|
[TestClass]
|
|
public class ProtocolVersionExchangeTest_ServerResponseContainsNullCharacter
|
|
{
|
|
private AsyncSocketListener _server;
|
|
private ProtocolVersionExchange _protocolVersionExchange;
|
|
private string _clientVersion;
|
|
private TimeSpan _timeout;
|
|
private IPEndPoint _serverEndPoint;
|
|
private List<byte> _dataReceivedByServer;
|
|
private byte[] _serverIdentification;
|
|
private bool _clientDisconnected;
|
|
private Socket _client;
|
|
private SshConnectionException _actualException;
|
|
|
|
[TestInitialize]
|
|
public void Setup()
|
|
{
|
|
Arrange();
|
|
Act();
|
|
}
|
|
|
|
[TestCleanup]
|
|
public void Cleanup()
|
|
{
|
|
_server?.Dispose();
|
|
_server = null;
|
|
|
|
if (_client != null)
|
|
{
|
|
_client.Shutdown(SocketShutdown.Both);
|
|
_client.Close();
|
|
_client = null;
|
|
}
|
|
}
|
|
|
|
protected void Arrange()
|
|
{
|
|
_clientVersion = "SSH-2.0-Renci.SshNet.SshClient.0.0.1";
|
|
_timeout = TimeSpan.FromSeconds(5);
|
|
_serverEndPoint = new IPEndPoint(IPAddress.Loopback, 8122);
|
|
_dataReceivedByServer = new List<byte>();
|
|
_serverIdentification = Encoding.UTF8.GetBytes("\uD55C!\0\uD55CSSH -2.0-Renci.SshNet.SshClient.0.0.1");
|
|
|
|
_server = new AsyncSocketListener(_serverEndPoint);
|
|
_server.Start();
|
|
_server.Connected += socket => socket.Send(_serverIdentification);
|
|
_server.BytesReceived += (bytes, socket) =>
|
|
{
|
|
_dataReceivedByServer.AddRange(bytes);
|
|
};
|
|
_server.Disconnected += (socket) => _clientDisconnected = true;
|
|
|
|
_client = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
|
|
_client.Connect(_serverEndPoint);
|
|
|
|
_protocolVersionExchange = new ProtocolVersionExchange();
|
|
}
|
|
|
|
protected void Act()
|
|
{
|
|
try
|
|
{
|
|
_protocolVersionExchange.Start(_clientVersion, _client, _timeout);
|
|
Assert.Fail();
|
|
}
|
|
catch (SshConnectionException ex)
|
|
{
|
|
_actualException = ex;
|
|
}
|
|
|
|
// Give some time to process all messages
|
|
Thread.Sleep(200);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void StartShouldHaveThrownSshConnectionException()
|
|
{
|
|
var expectedMessage = string.Format("The server response contains a null character at position 0x00000005:{0}{0}" +
|
|
" 00000000 ED 95 9C 21 00 ...!.{0}{0}" +
|
|
"A server must not send a null character before the Protocol Version Exchange is complete.{0}{0}" +
|
|
"More information is available here:{0}" +
|
|
"https://tools.ietf.org/html/rfc4253#section-4.2",
|
|
Environment.NewLine);
|
|
|
|
Assert.IsNotNull(_actualException);
|
|
Assert.IsNull(_actualException.InnerException);
|
|
Assert.AreEqual(expectedMessage, _actualException.Message);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ClientIdentificationWasSentToServer()
|
|
{
|
|
var expected = Encoding.UTF8.GetBytes(_clientVersion);
|
|
|
|
Assert.AreEqual(expected.Length + 2, _dataReceivedByServer.Count);
|
|
|
|
Assert.IsTrue(expected.SequenceEqual(_dataReceivedByServer.Take(expected.Length)));
|
|
Assert.AreEqual(Session.CarriageReturn, _dataReceivedByServer[_dataReceivedByServer.Count - 2]);
|
|
Assert.AreEqual(Session.LineFeed, _dataReceivedByServer[_dataReceivedByServer.Count - 1]);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ClientRemainsConnected()
|
|
{
|
|
Assert.IsTrue(_client.Connected);
|
|
Assert.IsFalse(_clientDisconnected);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void ClientHasNotReadPastNullCharacter()
|
|
{
|
|
var buffer = new byte[1];
|
|
|
|
var bytesReceived = _client.Receive(buffer);
|
|
Assert.AreEqual(1, bytesReceived);
|
|
Assert.AreEqual(0xed, buffer[0]);
|
|
}
|
|
}
|
|
}
|