forked from sshnet/SSH.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSftpClientTest.cs
More file actions
93 lines (74 loc) · 2.73 KB
/
SftpClientTest.cs
File metadata and controls
93 lines (74 loc) · 2.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
using System.Security.Cryptography;
using Renci.SshNet.Sftp;
namespace Renci.SshNet.IntegrationTests.OldIntegrationTests
{
/// <summary>
/// Implementation of the SSH File Transfer Protocol (SFTP) over SSH.
/// </summary>
[TestClass]
public partial class SftpClientTest
{
protected static string CalculateMD5(string fileName)
{
using (FileStream file = new FileStream(fileName, FileMode.Open))
{
byte[] hash;
using (var md5 = MD5.Create())
{
hash = md5.ComputeHash(file);
}
file.Close();
StringBuilder sb = new StringBuilder();
for (var i = 0; i < hash.Length; i++)
{
sb.Append(hash[i].ToString("x2"));
}
return sb.ToString();
}
}
protected static async Task<string> CalculateMD5Async(string fileName, CancellationToken cancellationToken)
{
using (FileStream file = new FileStream(fileName, FileMode.Open))
{
byte[] hash;
using (var md5 = MD5.Create())
{
hash = await md5.ComputeHashAsync(file, cancellationToken).ConfigureAwait(false);
}
file.Close();
StringBuilder sb = new StringBuilder();
for (var i = 0; i < hash.Length; i++)
{
sb.Append(hash[i].ToString("x2"));
}
return sb.ToString();
}
}
private void RemoveAllFiles()
{
using (var client = new SshClient(SshServerHostName, SshServerPort, User.UserName, User.Password))
{
client.Connect();
client.RunCommand("rm -rf *");
client.Disconnect();
}
}
/// <summary>
/// Helper class to help with upload and download testing
/// </summary>
private class TestInfo
{
public string RemoteFileName { get; set; }
public string UploadedFileName { get; set; }
public string DownloadedFileName { get; set; }
//public ulong UploadedBytes { get; set; }
//public ulong DownloadedBytes { get; set; }
public FileStream UploadedFile { get; set; }
public FileStream DownloadedFile { get; set; }
public string UploadedHash { get; set; }
public string DownloadedHash { get; set; }
public SftpUploadAsyncResult UploadResult { get; set; }
public SftpDownloadAsyncResult DownloadResult { get; set; }
}
}
}