| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- 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 SftpCloseRequestTest
- {
- private uint _protocolVersion;
- private uint _requestId;
- private byte[] _handle;
- [TestInitialize]
- public void Init()
- {
- var random = new Random();
- _protocolVersion = (uint)random.Next(0, int.MaxValue);
- _requestId = (uint)random.Next(0, int.MaxValue);
- _handle = new byte[random.Next(1, 10)];
- random.NextBytes(_handle);
- }
- [TestMethod]
- public void Constructor()
- {
- var request = new SftpCloseRequest(_protocolVersion, _requestId, _handle, null);
- Assert.AreSame(_handle, request.Handle);
- Assert.AreEqual(_protocolVersion, request.ProtocolVersion);
- Assert.AreEqual(_requestId, request.RequestId);
- Assert.AreEqual(SftpMessageTypes.Close, request.SftpMessageType);
- }
- [TestMethod]
- public void Complete_SftpStatusResponse()
- {
- IList<SftpStatusResponse> statusActionInvocations = new List<SftpStatusResponse>();
- Action<SftpStatusResponse> statusAction = statusActionInvocations.Add;
- var statusResponse = new SftpStatusResponse(_protocolVersion);
- var request = new SftpCloseRequest(_protocolVersion, _requestId, _handle, statusAction);
- request.Complete(statusResponse);
- Assert.AreEqual(1, statusActionInvocations.Count);
- Assert.AreSame(statusResponse, statusActionInvocations[0]);
- }
- [TestMethod]
- public void GetBytes()
- {
- var request = new SftpCloseRequest(_protocolVersion, _requestId, _handle, null);
- var bytes = request.GetBytes();
- var expectedBytesLength = 0;
- #if TUNING
- expectedBytesLength += 4; // Length
- #endif
- expectedBytesLength += 1; // Type
- expectedBytesLength += 4; // RequestId
- expectedBytesLength += 4; // Handle length
- expectedBytesLength += _handle.Length; // Handle
- Assert.AreEqual(expectedBytesLength, bytes.Length);
- var sshDataStream = new SshDataStream(bytes);
- #if TUNING
- Assert.AreEqual((uint)bytes.Length - 4, sshDataStream.ReadUInt32());
- #endif
- Assert.AreEqual((byte)SftpMessageTypes.Close, sshDataStream.ReadByte());
- Assert.AreEqual(_requestId, sshDataStream.ReadUInt32());
- Assert.AreEqual((uint)_handle.Length, sshDataStream.ReadUInt32());
- var actualHandle = new byte[_handle.Length];
- sshDataStream.Read(actualHandle, 0, actualHandle.Length);
- Assert.IsTrue(_handle.SequenceEqual(actualHandle));
- Assert.IsTrue(sshDataStream.IsEndOfData);
- }
- }
- }
|