| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 | using System;using System.Collections.Generic;using System.Globalization;using System.Linq;using System.Text;using Microsoft.VisualStudio.TestTools.UnitTesting;using Renci.SshNet.Common;using Renci.SshNet.Sftp;using Renci.SshNet.Sftp.Requests;using Renci.SshNet.Sftp.Responses;namespace Renci.SshNet.Tests.Classes.Sftp.Requests{    [TestClass]    public class SftpReadLinkRequestTest    {        private uint _protocolVersion;        private uint _requestId;        private Encoding _encoding;        private string _path;        private byte[] _pathBytes;        [TestInitialize]        public void Init()        {            var random = new Random();            _protocolVersion = (uint) random.Next(0, int.MaxValue);            _requestId = (uint) random.Next(0, int.MaxValue);            _encoding = Encoding.Unicode;            _path = random.Next().ToString(CultureInfo.InvariantCulture);            _pathBytes = _encoding.GetBytes(_path);        }        [TestMethod]        public void Constructor()        {            var request = new SftpReadLinkRequest(_protocolVersion, _requestId, _path, _encoding, null, null);            Assert.AreSame(_encoding, request.Encoding);            Assert.AreEqual(_path, request.Path);            Assert.AreEqual(_protocolVersion, request.ProtocolVersion);            Assert.AreEqual(_requestId, request.RequestId);            Assert.AreEqual(SftpMessageTypes.ReadLink, request.SftpMessageType);        }        [TestMethod]        public void Complete_SftpNameResponse()        {            var statusActionInvocations = new List<SftpStatusResponse>();            var nameActionInvocations = new List<SftpNameResponse>();            Action<SftpStatusResponse> statusAction = statusActionInvocations.Add;            Action<SftpNameResponse> nameAction = nameActionInvocations.Add;            var nameResponse = new SftpNameResponse(_protocolVersion, Encoding.Unicode);            var request = new SftpReadLinkRequest(                _protocolVersion,                _requestId,                _path,                _encoding,                nameAction,                statusAction);            request.Complete(nameResponse);            Assert.AreEqual(0, statusActionInvocations.Count);            Assert.AreEqual(1, nameActionInvocations.Count);            Assert.AreSame(nameResponse, nameActionInvocations[0]);        }        [TestMethod]        public void Complete_SftpStatusResponse()        {            var statusActionInvocations = new List<SftpStatusResponse>();            var nameActionInvocations = new List<SftpNameResponse>();            Action<SftpStatusResponse> statusAction = statusActionInvocations.Add;            Action<SftpNameResponse> nameAction = nameActionInvocations.Add;            var statusResponse = new SftpStatusResponse(_protocolVersion);            var request = new SftpReadLinkRequest(                _protocolVersion,                _requestId,                _path,                _encoding,                nameAction,                statusAction);            request.Complete(statusResponse);            Assert.AreEqual(1, statusActionInvocations.Count);            Assert.AreSame(statusResponse, statusActionInvocations[0]);            Assert.AreEqual(0, nameActionInvocations.Count);        }        [TestMethod]        public void GetBytes()        {            var request = new SftpReadLinkRequest(_protocolVersion, _requestId, _path, _encoding, null, null);            var bytes = request.GetBytes();            var expectedBytesLength = 0;            expectedBytesLength += 4; // Length            expectedBytesLength += 1; // Type            expectedBytesLength += 4; // RequestId            expectedBytesLength += 4; // Path length            expectedBytesLength += _pathBytes.Length; // Path            Assert.AreEqual(expectedBytesLength, bytes.Length);            var sshDataStream = new SshDataStream(bytes);            Assert.AreEqual((uint) bytes.Length - 4, sshDataStream.ReadUInt32());            Assert.AreEqual((byte) SftpMessageTypes.ReadLink, sshDataStream.ReadByte());            Assert.AreEqual(_requestId, sshDataStream.ReadUInt32());            Assert.AreEqual((uint) _pathBytes.Length, sshDataStream.ReadUInt32());            var actualPath = new byte[_pathBytes.Length];            sshDataStream.Read(actualPath, 0, actualPath.Length);            Assert.IsTrue(_pathBytes.SequenceEqual(actualPath));            Assert.IsTrue(sshDataStream.IsEndOfData);        }    }}
 |