| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 | using System;using System.Collections.Generic;using System.Globalization;using System.Net;using System.Threading;using Microsoft.Extensions.Logging.Abstractions;using Microsoft.VisualStudio.TestTools.UnitTesting;using Moq;using Renci.SshNet.Channels;using Renci.SshNet.Common;using Renci.SshNet.Messages.Connection;namespace Renci.SshNet.Tests.Classes{    [TestClass]    public class ForwardedPortRemoteTest_Dispose_PortStarted_ChannelBound    {        private Mock<ISession> _sessionMock;        private Mock<IConnectionInfo> _connectionInfoMock;        private Mock<IChannelForwardedTcpip> _channelMock;        private IList<EventArgs> _closingRegister;        private IList<ExceptionEventArgs> _exceptionRegister;        private IPEndPoint _bindEndpoint;        private IPEndPoint _remoteEndpoint;        private TimeSpan _bindSleepTime;        private uint _remoteChannelNumberWhileClosing;        private uint _remoteWindowSizeWhileClosing;        private uint _remotePacketSizeWhileClosing;        private uint _remoteChannelNumberStarted;        private uint _remoteWindowSizeStarted;        private uint _remotePacketSizeStarted;        private string _originatorAddress;        private uint _originatorPort;        private ManualResetEvent _channelBindStarted;        private ManualResetEvent _channelBindCompleted;        protected ForwardedPortRemote ForwardedPort { get; private set; }        [TestInitialize]        public void Setup()        {            Arrange();            Act();        }        [TestCleanup]        public void Cleanup()        {            if (ForwardedPort != null)            {                ForwardedPort.Dispose();                ForwardedPort = null;            }            if (_channelBindStarted != null)            {                _channelBindStarted.Dispose();                _channelBindStarted = null;            }            if (_channelBindCompleted != null)            {                _channelBindCompleted.Dispose();                _channelBindCompleted = null;            }        }        private void CreateMocks()        {            _connectionInfoMock = new Mock<IConnectionInfo>(MockBehavior.Strict);            _sessionMock = new Mock<ISession>(MockBehavior.Strict);            _sessionMock.Setup(p => p.SessionLoggerFactory).Returns(NullLoggerFactory.Instance);            _channelMock = new Mock<IChannelForwardedTcpip>(MockBehavior.Strict);        }        private void SetUpData()        {            var random = new Random();            _closingRegister = new List<EventArgs>();            _exceptionRegister = new List<ExceptionEventArgs>();            _bindEndpoint = new IPEndPoint(IPAddress.Any, random.Next(IPEndPoint.MinPort, IPEndPoint.MaxPort));            _remoteEndpoint = new IPEndPoint(IPAddress.Parse("193.168.1.5"), random.Next(IPEndPoint.MinPort, IPEndPoint.MaxPort));            _bindSleepTime = TimeSpan.FromMilliseconds(random.Next(100, 500));            _remoteChannelNumberWhileClosing = (uint)random.Next(0, 1000);            _remoteWindowSizeWhileClosing = (uint)random.Next(0, int.MaxValue);            _remotePacketSizeWhileClosing = (uint)random.Next(0, int.MaxValue);            _remoteChannelNumberStarted = (uint)random.Next(0, 1000);            _remoteWindowSizeStarted = (uint)random.Next(0, int.MaxValue);            _remotePacketSizeStarted = (uint)random.Next(0, int.MaxValue);            _originatorAddress = random.Next().ToString(CultureInfo.InvariantCulture);            _originatorPort = (uint)random.Next(0, int.MaxValue);            _channelBindStarted = new ManualResetEvent(false);            _channelBindCompleted = new ManualResetEvent(false);            ForwardedPort = new ForwardedPortRemote(_bindEndpoint.Address, (uint)_bindEndpoint.Port, _remoteEndpoint.Address, (uint)_remoteEndpoint.Port);            ForwardedPort.Closing += (sender, args) =>                {                    _closingRegister.Add(args);                    _sessionMock.Raise(p => p.ChannelOpenReceived += null, new MessageEventArgs<ChannelOpenMessage>(new ChannelOpenMessage(_remoteChannelNumberWhileClosing, _remoteWindowSizeWhileClosing, _remotePacketSizeWhileClosing, new ForwardedTcpipChannelInfo(ForwardedPort.BoundHost, ForwardedPort.BoundPort, _originatorAddress, _originatorPort))));                };            ForwardedPort.Exception += (sender, args) => _exceptionRegister.Add(args);            ForwardedPort.Session = _sessionMock.Object;        }        private void SetupMocks()        {            _connectionInfoMock.Setup(p => p.Timeout).Returns(TimeSpan.FromSeconds(15));            _sessionMock.Setup(p => p.IsConnected).Returns(true);            _sessionMock.Setup(p => p.ConnectionInfo).Returns(_connectionInfoMock.Object);            _sessionMock.Setup(p => p.RegisterMessage("SSH_MSG_REQUEST_FAILURE"));            _sessionMock.Setup(p => p.RegisterMessage("SSH_MSG_REQUEST_SUCCESS"));            _sessionMock.Setup(p => p.RegisterMessage("SSH_MSG_CHANNEL_OPEN"));            _sessionMock.Setup(                p =>                    p.SendMessage(                        It.Is<TcpIpForwardGlobalRequestMessage>(                            g =>                                g.AddressToBind == ForwardedPort.BoundHost &&                                g.PortToBind == ForwardedPort.BoundPort)))                .Callback(                    () =>                        _sessionMock.Raise(s => s.RequestSuccessReceived += null,                            new MessageEventArgs<RequestSuccessMessage>(new RequestSuccessMessage())));            _sessionMock.Setup(p => p.WaitOnHandle(It.IsAny<WaitHandle>()));            _sessionMock.Setup(p => p.SendMessage(It.Is<ChannelOpenFailureMessage>(c => c.LocalChannelNumber == _remoteChannelNumberWhileClosing && c.ReasonCode == ChannelOpenFailureMessage.AdministrativelyProhibited && c.Description == string.Empty && c.Language == "en")));            _sessionMock.Setup(p => p.CreateChannelForwardedTcpip(_remoteChannelNumberStarted, _remoteWindowSizeStarted, _remotePacketSizeStarted)).Returns(_channelMock.Object);            _channelMock.Setup(                p =>                    p.Bind(                        It.Is<IPEndPoint>(                            ep => ep.Address.Equals(_remoteEndpoint.Address) && ep.Port == _remoteEndpoint.Port),                        ForwardedPort)).Callback(() =>                            {                                _channelBindStarted.Set();                                Thread.Sleep(_bindSleepTime);                                _channelBindCompleted.Set();                            });            _channelMock.Setup(p => p.Dispose());            _sessionMock.Setup(                p =>                    p.SendMessage(                        It.Is<CancelTcpIpForwardGlobalRequestMessage>(                            g =>                                g.AddressToBind == ForwardedPort.BoundHost && g.PortToBind == ForwardedPort.BoundPort))).Callback(                                    () =>                                        {                                            // raise event confirming that forwarded port was cancelled                                            _sessionMock.Raise(p => p.RequestSuccessReceived += null, new MessageEventArgs<RequestSuccessMessage>(new RequestSuccessMessage()));                                        });            _sessionMock.Setup(p => p.MessageListenerCompleted).Returns(new ManualResetEvent(false));        }        protected void Arrange()        {            CreateMocks();            SetUpData();            SetupMocks();            ForwardedPort.Start();            _sessionMock.Raise(p => p.ChannelOpenReceived += null, new MessageEventArgs<ChannelOpenMessage>(new ChannelOpenMessage(_remoteChannelNumberStarted, _remoteWindowSizeStarted, _remotePacketSizeStarted, new ForwardedTcpipChannelInfo(ForwardedPort.BoundHost, ForwardedPort.BoundPort, _originatorAddress, _originatorPort))));            // wait until channel is bound            Assert.IsTrue(_channelBindStarted.WaitOne(TimeSpan.FromMilliseconds(200)));        }        protected virtual void Act()        {            ForwardedPort.Dispose();        }        [TestMethod]        public void ShouldBlockUntilBindHasCompleted()        {            Assert.IsTrue(_channelBindCompleted.WaitOne(0));        }        [TestMethod]        public void IsStartedShouldReturnFalse()        {            Assert.IsFalse(ForwardedPort.IsStarted);        }        [TestMethod]        public void ForwardedPortShouldRejectChannelOpenMessagesThatAreReceivedWhileTheSuccessMessageForTheCancelOfTheForwardedPortIsNotReceived()        {            _sessionMock.Verify(p => p.SendMessage(new ChannelOpenFailureMessage(_remoteChannelNumberWhileClosing, string.Empty,                        ChannelOpenFailureMessage.AdministrativelyProhibited)), Times.Never);        }        [TestMethod]        public void ForwardedPortShouldIgnoreChannelOpenMessagesWhenDisposed()        {            var channelNumberDisposed = (uint)new Random().Next(1001, int.MaxValue);            var initialWindowSizeDisposed = (uint)new Random().Next(0, int.MaxValue);            var maximumPacketSizeDisposed = (uint)new Random().Next(0, int.MaxValue);            var originatorAddressDisposed = new Random().Next().ToString(CultureInfo.InvariantCulture);            var originatorPortDisposed = (uint)new Random().Next(0, int.MaxValue);            var channelMock = new Mock<IChannelForwardedTcpip>(MockBehavior.Strict);            _sessionMock.Setup(                p =>                    p.CreateChannelForwardedTcpip(channelNumberDisposed, initialWindowSizeDisposed, maximumPacketSizeDisposed)).Returns(channelMock.Object);            _sessionMock.Setup(                p =>                    p.SendMessage(new ChannelOpenFailureMessage(channelNumberDisposed, string.Empty,                        ChannelOpenFailureMessage.AdministrativelyProhibited)));            _sessionMock.Raise(p => p.ChannelOpenReceived += null,                new MessageEventArgs<ChannelOpenMessage>(new ChannelOpenMessage(channelNumberDisposed,                    initialWindowSizeDisposed, maximumPacketSizeDisposed,                    new ForwardedTcpipChannelInfo(ForwardedPort.BoundHost, ForwardedPort.BoundPort,                        originatorAddressDisposed, originatorPortDisposed))));            _sessionMock.Verify(p => p.CreateChannelForwardedTcpip(channelNumberDisposed, initialWindowSizeDisposed, maximumPacketSizeDisposed), Times.Never);            _sessionMock.Verify(p => p.SendMessage(It.Is<ChannelOpenFailureMessage>(c => c.LocalChannelNumber == channelNumberDisposed && c.ReasonCode == ChannelOpenFailureMessage.AdministrativelyProhibited && c.Description == string.Empty && c.Language == null)), Times.Never);        }        [TestMethod]        public void ClosingShouldHaveFiredOnce()        {            Assert.AreEqual(1, _closingRegister.Count);        }        [TestMethod]        public void ExceptionShouldNotHaveFired()        {            Assert.AreEqual(0, _exceptionRegister.Count);        }        [TestMethod]        public void BindOnChannelShouldBeInvokedOnceForChannelOpenedWhileStarted()        {            _channelMock.Verify(                c =>                    c.Bind(                        It.Is<IPEndPoint>(                            ep => ep.Address.Equals(_remoteEndpoint.Address) && ep.Port == _remoteEndpoint.Port),                        ForwardedPort), Times.Once);        }        [TestMethod]        public void DisposeOnChannelShouldBeInvokedOnce()        {            _channelMock.Verify(p => p.Dispose(), Times.Once);        }    }}
 |