| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 | using Microsoft.VisualStudio.TestTools.UnitTesting;using Renci.SshNet.Tests.Common;using Renci.SshNet.Tests.Properties;using System;using System.IO;using System.Linq;using System.Security.Cryptography;using System.Text;namespace Renci.SshNet.Tests.Classes{    /// <summary>    /// Provides SCP client functionality.    /// </summary>    [TestClass]    public partial class ScpClientTest : TestBase    {        [TestMethod]        [TestCategory("Scp")]        public void Test_Scp_File_Upload_Download()        {            RemoveAllFiles();            using (var scp = new ScpClient(Resources.HOST, Resources.USERNAME, Resources.PASSWORD))            {                scp.Connect();                string uploadedFileName = Path.GetTempFileName();                string downloadedFileName = Path.GetTempFileName();                this.CreateTestFile(uploadedFileName, 1);                scp.Upload(new FileInfo(uploadedFileName), Path.GetFileName(uploadedFileName));                scp.Download(Path.GetFileName(uploadedFileName), new FileInfo(downloadedFileName));                //  Calculate MD5 value                var uploadedHash = CalculateMD5(uploadedFileName);                var downloadedHash = CalculateMD5(downloadedFileName);                File.Delete(uploadedFileName);                File.Delete(downloadedFileName);                scp.Disconnect();                Assert.AreEqual(uploadedHash, downloadedHash);            }        }        [TestMethod]        [TestCategory("Scp")]        public void Test_Scp_Stream_Upload_Download()        {            RemoveAllFiles();            using (var scp = new ScpClient(Resources.HOST, Resources.USERNAME, Resources.PASSWORD))            {                scp.Connect();                string uploadedFileName = Path.GetTempFileName();                string downloadedFileName = Path.GetTempFileName();                this.CreateTestFile(uploadedFileName, 1);                //  Calculate has value                using (var stream = File.OpenRead(uploadedFileName))                {                    scp.Upload(stream, Path.GetFileName(uploadedFileName));                }                using (var stream = File.OpenWrite(downloadedFileName))                {                    scp.Download(Path.GetFileName(uploadedFileName), stream);                }                //  Calculate MD5 value                var uploadedHash = CalculateMD5(uploadedFileName);                var downloadedHash = CalculateMD5(downloadedFileName);                File.Delete(uploadedFileName);                File.Delete(downloadedFileName);                scp.Disconnect();                Assert.AreEqual(uploadedHash, downloadedHash);            }        }        [TestMethod]        [TestCategory("Scp")]        public void Test_Scp_10MB_File_Upload_Download()        {            RemoveAllFiles();            using (var scp = new ScpClient(Resources.HOST, Resources.USERNAME, Resources.PASSWORD))            {                scp.Connect();                string uploadedFileName = Path.GetTempFileName();                string downloadedFileName = Path.GetTempFileName();                this.CreateTestFile(uploadedFileName, 10);                scp.Upload(new FileInfo(uploadedFileName), Path.GetFileName(uploadedFileName));                scp.Download(Path.GetFileName(uploadedFileName), new FileInfo(downloadedFileName));                //  Calculate MD5 value                var uploadedHash = CalculateMD5(uploadedFileName);                var downloadedHash = CalculateMD5(downloadedFileName);                File.Delete(uploadedFileName);                File.Delete(downloadedFileName);                scp.Disconnect();                Assert.AreEqual(uploadedHash, downloadedHash);            }        }        [TestMethod]        [TestCategory("Scp")]        public void Test_Scp_10MB_Stream_Upload_Download()        {            RemoveAllFiles();            using (var scp = new ScpClient(Resources.HOST, Resources.USERNAME, Resources.PASSWORD))            {                scp.Connect();                string uploadedFileName = Path.GetTempFileName();                string downloadedFileName = Path.GetTempFileName();                this.CreateTestFile(uploadedFileName, 10);                //  Calculate has value                using (var stream = File.OpenRead(uploadedFileName))                {                    scp.Upload(stream, Path.GetFileName(uploadedFileName));                }                using (var stream = File.OpenWrite(downloadedFileName))                {                    scp.Download(Path.GetFileName(uploadedFileName), stream);                }                //  Calculate MD5 value                var uploadedHash = CalculateMD5(uploadedFileName);                var downloadedHash = CalculateMD5(downloadedFileName);                File.Delete(uploadedFileName);                File.Delete(downloadedFileName);                scp.Disconnect();                Assert.AreEqual(uploadedHash, downloadedHash);            }        }        [TestMethod]        [TestCategory("Scp")]        public void Test_Scp_Directory_Upload_Download()        {            RemoveAllFiles();            using (var scp = new ScpClient(Resources.HOST, Resources.USERNAME, Resources.PASSWORD))            {                scp.Connect();                var uploadDirectory = Directory.CreateDirectory(string.Format("{0}\\{1}", Path.GetTempPath(), Path.GetRandomFileName()));                for (int i = 0; i < 3; i++)                {                    var subfolder = Directory.CreateDirectory(string.Format(@"{0}\folder_{1}", uploadDirectory.FullName, i));                    for (int j = 0; j < 5; j++)                    {                        this.CreateTestFile(string.Format(@"{0}\file_{1}", subfolder.FullName, j), 1);                    }                    this.CreateTestFile(string.Format(@"{0}\file_{1}", uploadDirectory.FullName, i), 1);                }                scp.Upload(uploadDirectory, "uploaded_dir");                var downloadDirectory = Directory.CreateDirectory(string.Format("{0}\\{1}", Path.GetTempPath(), Path.GetRandomFileName()));                scp.Download("uploaded_dir", downloadDirectory);                var uploadedFiles = uploadDirectory.GetFiles("*.*", System.IO.SearchOption.AllDirectories);                var downloadFiles = downloadDirectory.GetFiles("*.*", System.IO.SearchOption.AllDirectories);                var result = from f1 in uploadedFiles                             from f2 in downloadFiles                             where                                f1.FullName.Substring(uploadDirectory.FullName.Length) == f2.FullName.Substring(downloadDirectory.FullName.Length)                                && CalculateMD5(f1.FullName) == CalculateMD5(f2.FullName)                             select f1;                var counter = result.Count();                scp.Disconnect();                Assert.IsTrue(counter == uploadedFiles.Length && uploadedFiles.Length == downloadFiles.Length);            }        }        /// <summary>        ///A test for OperationTimeout        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void OperationTimeoutTest()        {            ConnectionInfo connectionInfo = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(connectionInfo); // TODO: Initialize to an appropriate value            TimeSpan expected = new TimeSpan(); // TODO: Initialize to an appropriate value            TimeSpan actual;            target.OperationTimeout = expected;            actual = target.OperationTimeout;            Assert.AreEqual(expected, actual);            Assert.Inconclusive("Verify the correctness of this test method.");        }        /// <summary>        ///A test for BufferSize        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void BufferSizeTest()        {            ConnectionInfo connectionInfo = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(connectionInfo); // TODO: Initialize to an appropriate value            uint expected = 0; // TODO: Initialize to an appropriate value            uint actual;            target.BufferSize = expected;            actual = target.BufferSize;            Assert.AreEqual(expected, actual);            Assert.Inconclusive("Verify the correctness of this test method.");        }        /// <summary>        ///A test for Upload        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void UploadTest()        {            ConnectionInfo connectionInfo = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(connectionInfo); // TODO: Initialize to an appropriate value            DirectoryInfo directoryInfo = null; // TODO: Initialize to an appropriate value            string filename = string.Empty; // TODO: Initialize to an appropriate value            target.Upload(directoryInfo, filename);            Assert.Inconclusive("A method that does not return a value cannot be verified.");        }        /// <summary>        ///A test for Upload        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void UploadTest1()        {            ConnectionInfo connectionInfo = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(connectionInfo); // TODO: Initialize to an appropriate value            FileInfo fileInfo = null; // TODO: Initialize to an appropriate value            string filename = string.Empty; // TODO: Initialize to an appropriate value            target.Upload(fileInfo, filename);            Assert.Inconclusive("A method that does not return a value cannot be verified.");        }        /// <summary>        ///A test for Upload        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void UploadTest2()        {            ConnectionInfo connectionInfo = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(connectionInfo); // TODO: Initialize to an appropriate value            Stream source = null; // TODO: Initialize to an appropriate value            string filename = string.Empty; // TODO: Initialize to an appropriate value            target.Upload(source, filename);            Assert.Inconclusive("A method that does not return a value cannot be verified.");        }        /// <summary>        ///A test for Download        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void DownloadTest()        {            ConnectionInfo connectionInfo = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(connectionInfo); // TODO: Initialize to an appropriate value            string directoryName = string.Empty; // TODO: Initialize to an appropriate value            DirectoryInfo directoryInfo = null; // TODO: Initialize to an appropriate value            target.Download(directoryName, directoryInfo);            Assert.Inconclusive("A method that does not return a value cannot be verified.");        }        /// <summary>        ///A test for Download        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void DownloadTest1()        {            ConnectionInfo connectionInfo = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(connectionInfo); // TODO: Initialize to an appropriate value            string filename = string.Empty; // TODO: Initialize to an appropriate value            FileInfo fileInfo = null; // TODO: Initialize to an appropriate value            target.Download(filename, fileInfo);            Assert.Inconclusive("A method that does not return a value cannot be verified.");        }        /// <summary>        ///A test for Download        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void DownloadTest2()        {            ConnectionInfo connectionInfo = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(connectionInfo); // TODO: Initialize to an appropriate value            string filename = string.Empty; // TODO: Initialize to an appropriate value            Stream destination = null; // TODO: Initialize to an appropriate value            target.Download(filename, destination);            Assert.Inconclusive("A method that does not return a value cannot be verified.");        }        /// <summary>        ///A test for ScpClient Constructor        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void ScpClientConstructorTest()        {            string host = string.Empty; // TODO: Initialize to an appropriate value            string username = string.Empty; // TODO: Initialize to an appropriate value            PrivateKeyFile[] keyFiles = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(host, username, keyFiles);            Assert.Inconclusive("TODO: Implement code to verify target");        }        /// <summary>        ///A test for ScpClient Constructor        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void ScpClientConstructorTest1()        {            string host = string.Empty; // TODO: Initialize to an appropriate value            int port = 0; // TODO: Initialize to an appropriate value            string username = string.Empty; // TODO: Initialize to an appropriate value            PrivateKeyFile[] keyFiles = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(host, port, username, keyFiles);            Assert.Inconclusive("TODO: Implement code to verify target");        }        /// <summary>        ///A test for ScpClient Constructor        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void ScpClientConstructorTest2()        {            string host = string.Empty; // TODO: Initialize to an appropriate value            string username = string.Empty; // TODO: Initialize to an appropriate value            string password = string.Empty; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(host, username, password);            Assert.Inconclusive("TODO: Implement code to verify target");        }        /// <summary>        ///A test for ScpClient Constructor        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void ScpClientConstructorTest3()        {            string host = string.Empty; // TODO: Initialize to an appropriate value            int port = 0; // TODO: Initialize to an appropriate value            string username = string.Empty; // TODO: Initialize to an appropriate value            string password = string.Empty; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(host, port, username, password);            Assert.Inconclusive("TODO: Implement code to verify target");        }        /// <summary>        ///A test for ScpClient Constructor        ///</summary>        [TestMethod]        [Ignore] // placeholder for actual test        public void ScpClientConstructorTest4()        {            ConnectionInfo connectionInfo = null; // TODO: Initialize to an appropriate value            ScpClient target = new ScpClient(connectionInfo);            Assert.Inconclusive("TODO: Implement code to verify target");        }        protected static string CalculateMD5(string fileName)        {            using (var file = new FileStream(fileName, FileMode.Open))            {                var md5 = new MD5CryptoServiceProvider();                byte[] retVal = md5.ComputeHash(file);                file.Close();                var sb = new StringBuilder();                for (var i = 0; i < retVal.Length; i++)                {                    sb.Append(i.ToString("x2"));                }                return sb.ToString();            }        }        private static void RemoveAllFiles()        {            using (var client = new SshClient(Resources.HOST, Resources.USERNAME, Resources.PASSWORD))            {                client.Connect();                client.RunCommand("rm -rf *");                client.Disconnect();            }        }    }}
 |