-
-
Notifications
You must be signed in to change notification settings - Fork 938
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
26,309 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
119 changes: 119 additions & 0 deletions
119
...tocolVersionExchangeTest_ServerResponseValid_TerminatedByLineFeedWithoutCarriageReturn.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using Renci.SshNet.Common; | ||
using Renci.SshNet.Connection; | ||
using Renci.SshNet.Tests.Common; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Net; | ||
using System.Net.Sockets; | ||
using System.Text; | ||
|
||
namespace Renci.SshNet.Tests.Classes.Connection | ||
{ | ||
[TestClass] | ||
public class ProtocolVersionExchangeTest_ServerResponseValid_TerminatedByLineFeedWithoutCarriageReturn | ||
{ | ||
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 SshIdentification _actual; | ||
|
||
[TestInitialize] | ||
public void Setup() | ||
{ | ||
Arrange(); | ||
Act(); | ||
} | ||
|
||
[TestCleanup] | ||
public void Cleanup() | ||
{ | ||
if (_server != null) | ||
{ | ||
_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("Welcome stranger!\n\nSSH-Zero-OurSSHAppliance\n\0"); | ||
|
||
_server = new AsyncSocketListener(_serverEndPoint); | ||
_server.Start(); | ||
_server.BytesReceived += (bytes, socket) => | ||
{ | ||
_dataReceivedByServer.AddRange(bytes); | ||
socket.Send(_serverIdentification); | ||
socket.Shutdown(SocketShutdown.Send); | ||
}; | ||
_server.Disconnected += (socket) => _clientDisconnected = true; | ||
|
||
_client = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); | ||
_client.Connect(_serverEndPoint); | ||
|
||
_protocolVersionExchange = new ProtocolVersionExchange(); | ||
} | ||
|
||
protected void Act() | ||
{ | ||
_actual = _protocolVersionExchange.Start(_clientVersion, _client, _timeout); | ||
} | ||
|
||
[TestMethod] | ||
public void StartShouldReturnIdentificationOfServer() | ||
{ | ||
Assert.IsNotNull(_actual); | ||
Assert.AreEqual("Zero", _actual.ProtocolVersion); | ||
Assert.AreEqual("OurSSHAppliance", _actual.SoftwareVersion); | ||
Assert.IsNull(_actual.Comments); | ||
} | ||
|
||
[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 ClientDidNotReadPastIdentification() | ||
{ | ||
var buffer = new byte[1]; | ||
|
||
var bytesReceived = _client.Receive(buffer); | ||
Assert.AreEqual(1, bytesReceived); | ||
Assert.AreEqual(0x00, buffer[0]); | ||
} | ||
} | ||
} |
Oops, something went wrong.