SftpFileStreamTest_SetLength_Closed.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System;
  2. using System.Globalization;
  3. using System.IO;
  4. using Microsoft.VisualStudio.TestTools.UnitTesting;
  5. using Moq;
  6. using Renci.SshNet.Sftp;
  7. namespace Renci.SshNet.Tests.Classes.Sftp
  8. {
  9. [TestClass]
  10. public class SftpFileStreamTest_SetLength_Closed
  11. {
  12. private Mock<ISftpSession> _sftpSessionMock;
  13. private string _path;
  14. private SftpFileStream _sftpFileStream;
  15. private byte[] _handle;
  16. private SftpFileAttributes _fileAttributes;
  17. private uint _bufferSize;
  18. private uint _readBufferSize;
  19. private uint _writeBufferSize;
  20. private ObjectDisposedException _actualException;
  21. [TestInitialize]
  22. public void Setup()
  23. {
  24. Arrange();
  25. Act();
  26. }
  27. protected void Arrange()
  28. {
  29. var random = new Random();
  30. _path = random.Next().ToString(CultureInfo.InvariantCulture);
  31. _handle = new[] { (byte)random.Next(byte.MinValue, byte.MaxValue) };
  32. _fileAttributes = SftpFileAttributes.Empty;
  33. _bufferSize = (uint)random.Next(1, 1000);
  34. _readBufferSize = (uint)random.Next(0, 1000);
  35. _writeBufferSize = (uint)random.Next(0, 1000);
  36. _sftpSessionMock = new Mock<ISftpSession>(MockBehavior.Strict);
  37. var sequence = new MockSequence();
  38. _sftpSessionMock.InSequence(sequence)
  39. .Setup(p => p.RequestOpen(_path, Flags.Write | Flags.Truncate, true))
  40. .Returns(_handle);
  41. _sftpSessionMock.InSequence(sequence).Setup(p => p.RequestFStat(_handle)).Returns(_fileAttributes);
  42. _sftpSessionMock.InSequence(sequence)
  43. .Setup(p => p.CalculateOptimalReadLength(_bufferSize))
  44. .Returns(_readBufferSize);
  45. _sftpSessionMock.InSequence(sequence)
  46. .Setup(p => p.CalculateOptimalWriteLength(_bufferSize, _handle))
  47. .Returns(_writeBufferSize);
  48. _sftpSessionMock.InSequence(sequence)
  49. .Setup(p => p.IsOpen)
  50. .Returns(true);
  51. _sftpSessionMock.InSequence(sequence)
  52. .Setup(p => p.RequestClose(_handle));
  53. _sftpFileStream = new SftpFileStream(_sftpSessionMock.Object, _path, FileMode.Create, FileAccess.Write, (int)_bufferSize);
  54. _sftpFileStream.Close();
  55. }
  56. protected void Act()
  57. {
  58. try
  59. {
  60. _sftpFileStream.SetLength(5);
  61. Assert.Fail();
  62. }
  63. catch (ObjectDisposedException ex)
  64. {
  65. _actualException = ex;
  66. }
  67. }
  68. [TestMethod]
  69. public void SetLengthShouldHaveThrownObjectDisposedException()
  70. {
  71. Assert.IsNotNull(_actualException);
  72. Assert.IsNull(_actualException.InnerException);
  73. Assert.AreEqual(
  74. string.Format(
  75. "Cannot access a disposed object.{0}Object name: '{1}'.",
  76. Environment.NewLine,
  77. _actualException.ObjectName),
  78. _actualException.Message);
  79. Assert.AreEqual(typeof(SftpFileStream).FullName, _actualException.ObjectName);
  80. }
  81. }
  82. }