using System; using System.Collections.Generic; using Microsoft.VisualStudio.TestTools.UnitTesting; using Moq; using Renci.SshNet.Common; using Renci.SshNet.Messages.Connection; namespace Renci.SshNet.Tests.Classes.Channels { [TestClass] public class ChannelTest_OnSessionChannelEofReceived_Exception { private Mock _sessionMock; private uint _localWindowSize; private uint _localPacketSize; private uint _localChannelNumber; private uint _remoteChannelNumber; private uint _remoteWindowSize; private uint _remotePacketSize; private ChannelStub _channel; private IList _channelExceptionRegister; private Exception _onEofException; [TestInitialize] public void Initialize() { Arrange(); Act(); } private void Arrange() { var random = new Random(); _localWindowSize = (uint)random.Next(0, 1000); _localPacketSize = (uint)random.Next(1001, int.MaxValue); _localChannelNumber = (uint)random.Next(0, int.MaxValue); _remoteChannelNumber = (uint)random.Next(0, int.MaxValue); _remoteWindowSize = (uint)random.Next(0, int.MaxValue); _remotePacketSize = (uint)random.Next(0, int.MaxValue); _onEofException = new SystemException(); _channelExceptionRegister = new List(); _sessionMock = new Mock(MockBehavior.Strict); _channel = new ChannelStub(_sessionMock.Object, _localChannelNumber, _localWindowSize, _localPacketSize); _channel.Exception += (sender, args) => _channelExceptionRegister.Add(args); _channel.InitializeRemoteChannelInfo(_remoteChannelNumber, _remoteWindowSize, _remotePacketSize); _channel.SetIsOpen(true); _channel.OnEofException = _onEofException; } private void Act() { _sessionMock.Raise(s => s.ChannelEofReceived += null, new MessageEventArgs(new ChannelEofMessage(_localChannelNumber))); } [TestMethod] public void ExceptionEventShouldHaveFiredOnce() { Assert.AreEqual(1, _channelExceptionRegister.Count); Assert.AreSame(_onEofException, _channelExceptionRegister[0].Exception); } [TestMethod] public void OnErrorOccuredShouldBeInvokedOnce() { Assert.AreEqual(1, _channel.OnErrorOccurredInvocations.Count); Assert.AreSame(_onEofException, _channel.OnErrorOccurredInvocations[0]); } } }