| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 | using System;using System.Text;using Microsoft.VisualStudio.TestTools.UnitTesting;using Renci.SshNet.Common;using Renci.SshNet.Tests.Common;namespace Renci.SshNet.Tests.Classes{    /// <summary>    /// Provides SCP client functionality.    /// </summary>    [TestClass]    public partial class ScpClientTest : TestBase    {        private Random _random;        [TestInitialize]        public void SetUp()        {            _random = new Random();        }        [TestMethod]        public void Ctor_ConnectionInfo_Null()        {            const ConnectionInfo connectionInfo = null;            try            {                _ = new ScpClient(connectionInfo);                Assert.Fail();            }            catch (ArgumentNullException ex)            {                Assert.IsNull(ex.InnerException);                Assert.AreEqual("connectionInfo", ex.ParamName);            }        }        [TestMethod]        public void Ctor_ConnectionInfo_NotNull()        {            var connectionInfo = new ConnectionInfo("HOST", "USER", new PasswordAuthenticationMethod("USER", "PWD"));            var client = new ScpClient(connectionInfo);            Assert.AreEqual(16 * 1024U, client.BufferSize);            Assert.AreSame(connectionInfo, client.ConnectionInfo);            Assert.IsFalse(client.IsConnected);            Assert.AreEqual(new TimeSpan(0, 0, 0, 0, -1), client.KeepAliveInterval);            Assert.AreEqual(new TimeSpan(0, 0, 0, 0, -1), client.OperationTimeout);            Assert.AreSame(RemotePathTransformation.DoubleQuote, client.RemotePathTransformation);            Assert.IsNull(client.Session);        }        [TestMethod]        public void Ctor_HostAndPortAndUsernameAndPassword()        {            var host = _random.Next().ToString();            var port = _random.Next(1, 100);            var userName = _random.Next().ToString();            var password = _random.Next().ToString();            var client = new ScpClient(host, port, userName, password);            Assert.AreEqual(16 * 1024U, client.BufferSize);            Assert.IsNotNull(client.ConnectionInfo);            Assert.IsFalse(client.IsConnected);            Assert.AreEqual(new TimeSpan(0, 0, 0, 0, -1), client.KeepAliveInterval);            Assert.AreEqual(new TimeSpan(0, 0, 0, 0, -1), client.OperationTimeout);            Assert.AreSame(RemotePathTransformation.DoubleQuote, client.RemotePathTransformation);            Assert.IsNull(client.Session);            var passwordConnectionInfo = client.ConnectionInfo as PasswordConnectionInfo;            Assert.IsNotNull(passwordConnectionInfo);            Assert.AreEqual(host, passwordConnectionInfo.Host);            Assert.AreEqual(port, passwordConnectionInfo.Port);            Assert.AreSame(userName, passwordConnectionInfo.Username);            Assert.IsNotNull(passwordConnectionInfo.AuthenticationMethods);            Assert.AreEqual(1, passwordConnectionInfo.AuthenticationMethods.Count);            var passwordAuthentication = passwordConnectionInfo.AuthenticationMethods[0] as PasswordAuthenticationMethod;            Assert.IsNotNull(passwordAuthentication);            Assert.AreEqual(userName, passwordAuthentication.Username);            Assert.IsTrue(Encoding.UTF8.GetBytes(password).IsEqualTo(passwordAuthentication.Password));        }        [TestMethod]        public void Ctor_HostAndUsernameAndPassword()        {            var host = _random.Next().ToString();            var userName = _random.Next().ToString();            var password = _random.Next().ToString();            var client = new ScpClient(host, userName, password);            Assert.AreEqual(16 * 1024U, client.BufferSize);            Assert.IsNotNull(client.ConnectionInfo);            Assert.IsFalse(client.IsConnected);            Assert.AreEqual(new TimeSpan(0, 0, 0, 0, -1), client.KeepAliveInterval);            Assert.AreEqual(new TimeSpan(0, 0, 0, 0, -1), client.OperationTimeout);            Assert.AreSame(RemotePathTransformation.DoubleQuote, client.RemotePathTransformation);            Assert.IsNull(client.Session);            var passwordConnectionInfo = client.ConnectionInfo as PasswordConnectionInfo;            Assert.IsNotNull(passwordConnectionInfo);            Assert.AreEqual(host, passwordConnectionInfo.Host);            Assert.AreEqual(22, passwordConnectionInfo.Port);            Assert.AreSame(userName, passwordConnectionInfo.Username);            Assert.IsNotNull(passwordConnectionInfo.AuthenticationMethods);            Assert.AreEqual(1, passwordConnectionInfo.AuthenticationMethods.Count);            var passwordAuthentication = passwordConnectionInfo.AuthenticationMethods[0] as PasswordAuthenticationMethod;            Assert.IsNotNull(passwordAuthentication);            Assert.AreEqual(userName, passwordAuthentication.Username);            Assert.IsTrue(Encoding.UTF8.GetBytes(password).IsEqualTo(passwordAuthentication.Password));        }        [TestMethod]        public void Ctor_HostAndPortAndUsernameAndPrivateKeys()        {            var host = _random.Next().ToString();            var port = _random.Next(1, 100);            var userName = _random.Next().ToString();            var privateKeys = new[] {GetRsaKey(), GetDsaKey()};            var client = new ScpClient(host, port, userName, privateKeys);            Assert.AreEqual(16 * 1024U, client.BufferSize);            Assert.IsNotNull(client.ConnectionInfo);            Assert.IsFalse(client.IsConnected);            Assert.AreEqual(new TimeSpan(0, 0, 0, 0, -1), client.KeepAliveInterval);            Assert.AreEqual(new TimeSpan(0, 0, 0, 0, -1), client.OperationTimeout);            Assert.AreSame(RemotePathTransformation.DoubleQuote, client.RemotePathTransformation);            Assert.IsNull(client.Session);            var privateKeyConnectionInfo = client.ConnectionInfo as PrivateKeyConnectionInfo;            Assert.IsNotNull(privateKeyConnectionInfo);            Assert.AreEqual(host, privateKeyConnectionInfo.Host);            Assert.AreEqual(port, privateKeyConnectionInfo.Port);            Assert.AreSame(userName, privateKeyConnectionInfo.Username);            Assert.IsNotNull(privateKeyConnectionInfo.AuthenticationMethods);            Assert.AreEqual(1, privateKeyConnectionInfo.AuthenticationMethods.Count);            var privateKeyAuthentication = privateKeyConnectionInfo.AuthenticationMethods[0] as PrivateKeyAuthenticationMethod;            Assert.IsNotNull(privateKeyAuthentication);            Assert.AreEqual(userName, privateKeyAuthentication.Username);            Assert.IsNotNull(privateKeyAuthentication.KeyFiles);            Assert.AreEqual(privateKeys.Length, privateKeyAuthentication.KeyFiles.Count);            Assert.IsTrue(privateKeyAuthentication.KeyFiles.Contains(privateKeys[0]));            Assert.IsTrue(privateKeyAuthentication.KeyFiles.Contains(privateKeys[1]));        }        [TestMethod]        public void Ctor_HostAndUsernameAndPrivateKeys()        {            var host = _random.Next().ToString();            var userName = _random.Next().ToString();            var privateKeys = new[] { GetRsaKey(), GetDsaKey() };            var client = new ScpClient(host, userName, privateKeys);            Assert.AreEqual(16 * 1024U, client.BufferSize);            Assert.IsNotNull(client.ConnectionInfo);            Assert.IsFalse(client.IsConnected);            Assert.AreEqual(new TimeSpan(0, 0, 0, 0, -1), client.KeepAliveInterval);            Assert.AreEqual(new TimeSpan(0, 0, 0, 0, -1), client.OperationTimeout);            Assert.AreSame(RemotePathTransformation.DoubleQuote, client.RemotePathTransformation);            Assert.IsNull(client.Session);            var privateKeyConnectionInfo = client.ConnectionInfo as PrivateKeyConnectionInfo;            Assert.IsNotNull(privateKeyConnectionInfo);            Assert.AreEqual(host, privateKeyConnectionInfo.Host);            Assert.AreEqual(22, privateKeyConnectionInfo.Port);            Assert.AreSame(userName, privateKeyConnectionInfo.Username);            Assert.IsNotNull(privateKeyConnectionInfo.AuthenticationMethods);            Assert.AreEqual(1, privateKeyConnectionInfo.AuthenticationMethods.Count);            var privateKeyAuthentication = privateKeyConnectionInfo.AuthenticationMethods[0] as PrivateKeyAuthenticationMethod;            Assert.IsNotNull(privateKeyAuthentication);            Assert.AreEqual(userName, privateKeyAuthentication.Username);            Assert.IsNotNull(privateKeyAuthentication.KeyFiles);            Assert.AreEqual(privateKeys.Length, privateKeyAuthentication.KeyFiles.Count);            Assert.IsTrue(privateKeyAuthentication.KeyFiles.Contains(privateKeys[0]));            Assert.IsTrue(privateKeyAuthentication.KeyFiles.Contains(privateKeys[1]));        }        [TestMethod]        public void RemotePathTransformation_Value_NotNull()        {            var client = new ScpClient("HOST", 22, "USER", "PWD");            Assert.AreSame(RemotePathTransformation.DoubleQuote, client.RemotePathTransformation);            client.RemotePathTransformation = RemotePathTransformation.ShellQuote;            Assert.AreSame(RemotePathTransformation.ShellQuote, client.RemotePathTransformation);        }        [TestMethod]        public void RemotePathTransformation_Value_Null()        {            var client = new ScpClient("HOST", 22, "USER", "PWD")            {                RemotePathTransformation = RemotePathTransformation.ShellQuote            };            try            {                client.RemotePathTransformation = null;                Assert.Fail();            }            catch (ArgumentNullException ex)            {                Assert.IsNull(ex.InnerException);                Assert.AreEqual("value", ex.ParamName);            }            Assert.AreSame(RemotePathTransformation.ShellQuote, client.RemotePathTransformation);        }        private PrivateKeyFile GetRsaKey()        {            using (var stream = GetData("Key.RSA.txt"))            {                return new PrivateKeyFile(stream);            }        }        private PrivateKeyFile GetDsaKey()        {            using (var stream = GetData("Key.SSH2.DSA.txt"))            {                return new PrivateKeyFile(stream);            }        }    }}
 |