| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | using Renci.SshNet.Common;namespace Renci.SshNet.IntegrationTests.OldIntegrationTests{    /// <summary>    /// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.    /// </summary>    public partial class SftpClientTest : IntegrationTestBase    {        [TestMethod]        [TestCategory("Sftp")]        public void Test_Sftp_Download_Forbidden()        {            using (var sftp = new SftpClient(SshServerHostName, SshServerPort, AdminUser.UserName, AdminUser.Password))            {                sftp.Connect();                Assert.ThrowsException<SftpPermissionDeniedException>(() => sftp.DownloadFile("/root/.profile", Stream.Null));            }        }        [TestMethod]        [TestCategory("Sftp")]        public void Test_Sftp_Download_File_Not_Exists()        {            using (var sftp = new SftpClient(SshServerHostName, SshServerPort, User.UserName, User.Password))            {                sftp.Connect();                Assert.ThrowsException<SftpPathNotFoundException>(() => sftp.DownloadFile("/xxx/eee/yyy", Stream.Null));            }        }        [TestMethod]        [TestCategory("Sftp")]        [Description("Test passing null to BeginDownloadFile")]        public void Test_Sftp_BeginDownloadFile_StreamIsNull()        {            using (var sftp = new SftpClient(SshServerHostName, SshServerPort, User.UserName, User.Password))            {                sftp.Connect();                Assert.ThrowsException<ArgumentNullException>(() => sftp.BeginDownloadFile("aaaa", null, null, null));            }        }        [TestMethod]        [TestCategory("Sftp")]        [Description("Test passing null to BeginDownloadFile")]        public void Test_Sftp_BeginDownloadFile_FileNameIsWhiteSpace()        {            using (var sftp = new SftpClient(SshServerHostName, SshServerPort, User.UserName, User.Password))            {                sftp.Connect();                Assert.ThrowsException<ArgumentException>(() => sftp.BeginDownloadFile("   ", Stream.Null, null, null));            }        }        [TestMethod]        [TestCategory("Sftp")]        [Description("Test passing null to BeginDownloadFile")]        public void Test_Sftp_BeginDownloadFile_FileNameIsNull()        {            using (var sftp = new SftpClient(SshServerHostName, SshServerPort, User.UserName, User.Password))            {                sftp.Connect();                Assert.ThrowsException<ArgumentNullException>(() => sftp.BeginDownloadFile(null, Stream.Null, null, null));            }        }        [TestMethod]        [TestCategory("Sftp")]        public void Test_Sftp_EndDownloadFile_Invalid_Async_Handle()        {            using (var sftp = new SftpClient(SshServerHostName, SshServerPort, User.UserName, User.Password))            {                sftp.Connect();                var filename = Path.GetTempFileName();                CreateTestFile(filename, 1);                sftp.UploadFile(File.OpenRead(filename), "test123");                var async1 = sftp.BeginListDirectory("/", null, null);                var async2 = sftp.BeginDownloadFile("test123", new MemoryStream(), null, null);                Assert.ThrowsException<ArgumentException>(() => sftp.EndDownloadFile(async1));            }        }    }}
 |