-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathStoresFixture.cs
216 lines (170 loc) · 8.53 KB
/
StoresFixture.cs
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
namespace GeekLearning.Storage.Integration.Test
{
using GeekLearning.Storage.Configuration;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
using Microsoft.Extensions.PlatformAbstractions;
using Microsoft.WindowsAzure.Storage;
using Storage;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using GeekLearning.Storage.Azure.Configuration;
using GeekLearning.Storage.FileSystem.Configuration;
using System.Runtime.InteropServices;
public class StoresFixture : IDisposable
{
public StoresFixture()
{
this.BasePath = PlatformServices.Default.Application.ApplicationBasePath;
var containerId = Guid.NewGuid().ToString("N").ToLower();
var builder = new ConfigurationBuilder()
.SetBasePath(BasePath)
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddJsonFile($"appsettings.development.json", optional: true)
.AddInMemoryCollection(new KeyValuePair<string, string>[] {
new KeyValuePair<string, string>("Storage:Stores:Store3:FolderName", $"Store3-{containerId}"),
new KeyValuePair<string, string>("Storage:Stores:Store4:FolderName", $"Store4-{containerId}"),
new KeyValuePair<string, string>("Storage:Stores:Store5:FolderName", $"Store5-{containerId}"),
new KeyValuePair<string, string>("Storage:Stores:Store6:FolderName", $"Store6-{containerId}"),
});
this.Configuration = builder.Build();
var services = new ServiceCollection();
services.AddOptions();
services.AddStorage(Configuration)
.AddAzureStorage()
.AddFileSystemStorage(this.FileSystemRootPath)
.AddFileSystemExtendedProperties();
services.Configure<StorageOptions>(Configuration.GetSection("Storage"));
services.Configure<TestStore>(Configuration.GetSection("TestStore"));
this.Services = services.BuildServiceProvider();
this.StorageOptions = this.Services.GetService<IOptions<StorageOptions>>().Value;
this.AzureParsedOptions = this.Services.GetService<IOptions<AzureParsedOptions>>().Value;
this.FileSystemParsedOptions = this.Services.GetService<IOptions<FileSystemParsedOptions>>().Value;
this.TestStoreOptions = this.Services.GetService<IOptions<TestStore>>().Value.ParseStoreOptions<FileSystemParsedOptions, FileSystemProviderInstanceOptions, FileSystemStoreOptions, FileSystemScopedStoreOptions>(this.FileSystemParsedOptions);
ResetStores();
}
public IConfigurationRoot Configuration { get; }
public IServiceProvider Services { get; }
public string BasePath { get; }
public string FileSystemRootPath => Path.Combine(this.BasePath, "FileVault");
public string FileSystemSecondaryRootPath => Path.Combine(this.BasePath, "FileVault2");
public StorageOptions StorageOptions { get; }
public AzureParsedOptions AzureParsedOptions { get; }
public FileSystemParsedOptions FileSystemParsedOptions { get; }
public FileSystemStoreOptions TestStoreOptions { get; }
public void Dispose()
{
this.DeleteRootResources();
}
private void DeleteRootResources()
{
foreach (var parsedStoreKvp in this.AzureParsedOptions.ParsedStores)
{
var cloudStorageAccount = CloudStorageAccount.Parse(parsedStoreKvp.Value.ConnectionString);
var client = cloudStorageAccount.CreateCloudBlobClient();
var container = client.GetContainerReference(parsedStoreKvp.Value.FolderName);
container.DeleteIfExistsAsync().Wait();
}
if (Directory.Exists(this.FileSystemRootPath))
{
Directory.Delete(this.FileSystemRootPath, true);
}
if (Directory.Exists(this.FileSystemSecondaryRootPath))
{
Directory.Delete(this.FileSystemSecondaryRootPath, true);
}
}
private void ResetStores()
{
this.DeleteRootResources();
this.ResetAzureStores();
this.ResetFileSystemStores();
}
private void ResetFileSystemStores()
{
if (!Directory.Exists(this.FileSystemRootPath))
{
Directory.CreateDirectory(this.FileSystemRootPath);
}
foreach (var parsedStoreKvp in this.FileSystemParsedOptions.ParsedStores)
{
ResetFileSystemStore(parsedStoreKvp.Key, parsedStoreKvp.Value.AbsolutePath);
}
ResetFileSystemStore(this.TestStoreOptions.Name, this.TestStoreOptions.AbsolutePath);
}
private void ResetFileSystemStore(string storeName, string absolutePath)
{
if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
{
var process = Process.Start(new ProcessStartInfo("cp")
{
Arguments = $"-apv \"{Path.Combine(this.BasePath, "SampleDirectory")}\" \"{absolutePath}\""
});
if (!process.WaitForExit(30000))
{
process.Kill();
throw new TimeoutException($"FileSystem Store '{storeName}' was not reset properly.");
}
if (process.ExitCode != 0)
{
throw new TimeoutException($"FileSystem Store '{storeName}' was not copied properly.");
}
}
else
{
var process = Process.Start(new ProcessStartInfo("robocopy.exe")
{
Arguments = $"\"{Path.Combine(this.BasePath, "SampleDirectory")}\" \"{absolutePath}\" /MIR"
});
if (!process.WaitForExit(30000))
{
process.Kill();
throw new TimeoutException($"FileSystem Store '{storeName}' was not reset properly.");
}
}
}
private void ResetAzureStores()
{
var azCopy = Environment.ExpandEnvironmentVariables(Configuration["AzCopyPath"]);
foreach (var parsedStoreKvp in this.AzureParsedOptions.ParsedStores)
{
var cloudStorageAccount = CloudStorageAccount.Parse(parsedStoreKvp.Value.ConnectionString);
var cloudStoragekey = cloudStorageAccount.Credentials.ExportBase64EncodedKey();
var containerName = parsedStoreKvp.Value.FolderName;
var dest = cloudStorageAccount.BlobStorageUri.PrimaryUri.ToString() + containerName;
var client = cloudStorageAccount.CreateCloudBlobClient();
var container = client.GetContainerReference(containerName);
container.CreateIfNotExistsAsync().Wait();
var sas = container.GetSharedAccessSignature(new Microsoft.WindowsAzure.Storage.Blob.SharedAccessBlobPolicy
{
SharedAccessExpiryTime = DateTimeOffset.UtcNow.AddHours(1),
Permissions = (Microsoft.WindowsAzure.Storage.Blob.SharedAccessBlobPermissions)(-1),
});
var arguments = $"copy \"{Path.Combine(this.BasePath, "SampleDirectory/*")}\" \"{dest}{sas}\" --recursive=true";
var processStartInfo = new ProcessStartInfo(azCopy)
{
Arguments = arguments,
UseShellExecute = false,
RedirectStandardOutput = true,
RedirectStandardError = true
};
var process = new Process { StartInfo = processStartInfo };
process.Start();
if (!process.WaitForExit(30000))
{
process.Kill();
throw new TimeoutException($"Azure Store '{parsedStoreKvp.Key}' was not reset properly.");
}
if (process.ExitCode != 0)
{
var error = process.StandardError.ReadToEnd();
throw new TimeoutException($"Azure Store '{parsedStoreKvp.Key}' was not populated because of an error: {error}");
}
var output = process.StandardOutput.ReadToEnd();
}
}
}
}