| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 | using System;using System.IO;using Microsoft.VisualStudio.TestTools.UnitTesting;using Moq;using Renci.SshNet.Sftp;namespace Renci.SshNet.Tests.Classes.Sftp{    [TestClass]    public class SftpFileStreamTest_SetLength_Disposed    {        private Mock<ISftpSession> _sftpSessionMock;        private string _path;        private SftpFileStream _sftpFileStream;        private byte[] _handle;        private uint _bufferSize;        private uint _readBufferSize;        private uint _writeBufferSize;        private ObjectDisposedException _actualException;        [TestInitialize]        public void Setup()        {            Arrange();            Act();        }        protected void Arrange()        {            var random = new Random();            _path = random.Next().ToString();            _handle = new[] { (byte)random.Next(byte.MinValue, byte.MaxValue) };            _bufferSize = (uint)random.Next(1, 1000);            _readBufferSize = (uint)random.Next(1, 1000);            _writeBufferSize = (uint)random.Next(1, 1000);            _sftpSessionMock = new Mock<ISftpSession>(MockBehavior.Strict);            var sequence = new MockSequence();            _sftpSessionMock.InSequence(sequence)                .Setup(p => p.RequestOpen(_path, Flags.Write | Flags.Truncate, true))                .Returns(_handle);            _sftpSessionMock.InSequence(sequence)                .Setup(p => p.CalculateOptimalReadLength(_bufferSize))                .Returns(_readBufferSize);            _sftpSessionMock.InSequence(sequence)                .Setup(p => p.CalculateOptimalWriteLength(_bufferSize, _handle))                .Returns(_writeBufferSize);            _sftpSessionMock.InSequence(sequence)                .Setup(p => p.IsOpen)                .Returns(true);            _sftpSessionMock.InSequence(sequence)                .Setup(p => p.RequestClose(_handle));            _sftpFileStream = new SftpFileStream(_sftpSessionMock.Object, _path, FileMode.Create, FileAccess.Write, (int)_bufferSize);            _sftpFileStream.Dispose();        }        protected void Act()        {            try            {                _sftpFileStream.SetLength(5);                Assert.Fail();            }            catch (ObjectDisposedException ex)            {                _actualException = ex;            }        }        [TestMethod]        public void SetLengthShouldHaveThrownObjectDisposedException()        {            Assert.IsNotNull(_actualException);            Assert.IsNull(_actualException.InnerException);            Assert.AreEqual(                string.Format(                    "Cannot access a disposed object.{0}Object name: '{1}'.",                    Environment.NewLine,                    _actualException.ObjectName),                _actualException.Message);            Assert.AreEqual(typeof(SftpFileStream).FullName, _actualException.ObjectName);        }    }}
 |