-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMockFileSystem.cs
275 lines (236 loc) · 8.16 KB
/
MockFileSystem.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
using Microsoft.Win32.SafeHandles;
using System;
using System.Collections.Generic;
using System.IO;
using System.Runtime.InteropServices;
using Testably.Abstractions.Testing.FileSystem;
using Testably.Abstractions.Testing.Helpers;
using Testably.Abstractions.Testing.Statistics;
using Testably.Abstractions.Testing.Storage;
namespace Testably.Abstractions.Testing;
/// <summary>
/// A test helper for simulating the file system. Implements <see cref="IFileSystem" />.
/// </summary>
public sealed class MockFileSystem : IFileSystem
{
/// <summary>
/// Intercept events in the <see cref="MockFileSystem" /> before they occur.
/// </summary>
public IInterceptionHandler Intercept => ChangeHandler;
/// <summary>
/// Get notified of events in the <see cref="MockFileSystem" /> after they occurred.
/// </summary>
public INotificationHandler Notify => ChangeHandler;
/// <summary>
/// The used random system.
/// </summary>
public IRandomSystem RandomSystem { get; }
/// <summary>
/// Contains statistical information about the file system usage.
/// </summary>
public IFileSystemStatistics Statistics => StatisticsRegistration;
/// <summary>
/// The used time system.
/// </summary>
public ITimeSystem TimeSystem { get; }
internal IAccessControlStrategy AccessControlStrategy
{
get;
private set;
}
/// <summary>
/// The change handler used to notify about events occurring in the <see cref="MockFileSystem" />.
/// </summary>
internal ChangeHandler ChangeHandler { get; }
/// <summary>
/// The execution engine for the underlying operating system.
/// </summary>
internal Execute Execute { get; }
internal ISafeFileHandleStrategy SafeFileHandleStrategy
{
get;
private set;
}
/// <summary>
/// The underlying storage of directories and files.
/// </summary>
internal IStorage Storage => _storage;
/// <summary>
/// The registered containers in the in-Memory <see cref="Storage" />.
/// </summary>
internal IReadOnlyList<IStorageContainer> StorageContainers
=> _storage.GetContainers();
internal readonly FileSystemStatistics StatisticsRegistration;
private readonly DirectoryMock _directoryMock;
private readonly FileMock _fileMock;
private readonly PathMock _pathMock;
private readonly InMemoryStorage _storage;
/// <summary>
/// Initializes the <see cref="MockFileSystem" />.
/// </summary>
public MockFileSystem() : this(_ => { }) { }
/// <summary>
/// Initializes the <see cref="MockFileSystem" /> with the <paramref name="initializationCallback" />.
/// </summary>
internal MockFileSystem(Action<Initialization> initializationCallback)
{
Initialization initialization = new();
initializationCallback(initialization);
Execute = initialization.OperatingSystem == null
? new Execute(this)
: new Execute(this, initialization.OperatingSystem.Value);
StatisticsRegistration = new FileSystemStatistics(this);
using IDisposable release = StatisticsRegistration.Ignore();
RandomSystem = new MockRandomSystem();
TimeSystem = new MockTimeSystem(TimeProvider.Now());
_pathMock = new PathMock(this);
_storage = new InMemoryStorage(this);
ChangeHandler = new ChangeHandler(this);
_directoryMock = new DirectoryMock(this);
_fileMock = new FileMock(this);
DirectoryInfo = new DirectoryInfoFactoryMock(this);
DriveInfo = new DriveInfoFactoryMock(this);
FileInfo = new FileInfoFactoryMock(this);
FileStream = new FileStreamFactoryMock(this);
FileSystemWatcher = new FileSystemWatcherFactoryMock(this);
SafeFileHandleStrategy = new NullSafeFileHandleStrategy();
AccessControlStrategy = new NullAccessControlStrategy();
InitializeFileSystem(initialization);
}
#region IFileSystem Members
/// <inheritdoc cref="IFileSystem.Directory" />
public IDirectory Directory
=> _directoryMock;
/// <inheritdoc cref="IFileSystem.DirectoryInfo" />
public IDirectoryInfoFactory DirectoryInfo { get; }
/// <inheritdoc cref="IFileSystem.DriveInfo" />
public IDriveInfoFactory DriveInfo { get; }
/// <inheritdoc cref="IFileSystem.File" />
public IFile File
=> _fileMock;
/// <inheritdoc cref="IFileSystem.FileInfo" />
public IFileInfoFactory FileInfo { get; }
/// <inheritdoc cref="IFileSystem.FileStream" />
public IFileStreamFactory FileStream { get; }
/// <inheritdoc cref="IFileSystem.FileSystemWatcher" />
public IFileSystemWatcherFactory FileSystemWatcher { get; }
/// <inheritdoc cref="IFileSystem.Path" />
public IPath Path
=> _pathMock;
#endregion
/// <inheritdoc cref="object.ToString()" />
public override string ToString()
=> $"MockFileSystem ({_storage})";
/// <summary>
/// Implements a custom access control (ACL) mechanism.
/// <para />
/// The <see cref="IAccessControlStrategy" /> defines a method that receives two values and allows or denies access:
/// <br />
/// - The full path of the file or directory as first parameter<br />
/// - The <see cref="Testably.Abstractions.Helpers.IFileSystemExtensibility" /> as second parameter
/// </summary>
public MockFileSystem WithAccessControlStrategy(IAccessControlStrategy accessControlStrategy)
{
AccessControlStrategy = accessControlStrategy;
return this;
}
/// <summary>
/// Changes the parameters of the specified <paramref name="drive" />.
/// <para />
/// If the <paramref name="drive" /> does not exist, it will be created/mounted.
/// </summary>
public MockFileSystem WithDrive(string? drive,
Action<IStorageDrive>? driveCallback = null)
{
IStorageDrive driveInfoMock =
drive == null
? Storage.MainDrive
: Storage.GetOrAddDrive(drive);
driveCallback?.Invoke(driveInfoMock);
return this;
}
/// <summary>
/// Registers the strategy how to deal with <see cref="SafeFileHandle" />s in the <see cref="MockFileSystem" />.
/// <para />
/// Defaults to <see cref="NullSafeFileHandleStrategy" />, if nothing is provided.
/// </summary>
public MockFileSystem WithSafeFileHandleStrategy(
ISafeFileHandleStrategy safeFileHandleStrategy)
{
SafeFileHandleStrategy = safeFileHandleStrategy;
return this;
}
private void InitializeFileSystem(Initialization initialization)
{
try
{
if (initialization.CurrentDirectory != null)
{
IDirectoryInfo directoryInfo = DirectoryInfo.New(initialization.CurrentDirectory);
Storage.CurrentDirectory = directoryInfo.FullName;
}
string? root = Execute.Path.GetPathRoot(Directory.GetCurrentDirectory());
if (root != null &&
root[0] != _storage.MainDrive.Name[0])
{
Storage.GetOrAddDrive(root);
}
}
catch (IOException)
{
// Ignore any IOException, when trying to read the current directory
// due to brittle tests on MacOS
}
}
/// <summary>
/// The initialization options for the <see cref="MockFileSystem" />.
/// </summary>
internal class Initialization
{
/// <summary>
/// The current directory.
/// </summary>
internal string? CurrentDirectory { get; private set; }
/// <summary>
/// The simulated operating system.
/// </summary>
internal OSPlatform? OperatingSystem { get; private set; }
/// <summary>
/// Specify the operating system that should be simulated.
/// </summary>
/// <remarks>
/// Supported values are<br />
/// - <see cref="OSPlatform.Linux" /><br />
/// - <see cref="OSPlatform.OSX" /><br />
/// - <see cref="OSPlatform.Windows" />
/// </remarks>
internal Initialization SimulatingOperatingSystem(OSPlatform operatingSystem)
{
if (operatingSystem != OSPlatform.Linux &&
operatingSystem != OSPlatform.OSX &&
operatingSystem != OSPlatform.Windows)
{
throw new NotSupportedException(
"Only Linux, OSX and Windows are supported operating systems.");
}
OperatingSystem = operatingSystem;
return this;
}
/// <summary>
/// Use the provided <paramref name="path" /> as current directory.
/// </summary>
internal Initialization UseCurrentDirectory(string path)
{
CurrentDirectory = path;
return this;
}
/// <summary>
/// Use <see cref="Directory.GetCurrentDirectory()" /> as current directory.
/// </summary>
internal Initialization UseCurrentDirectory()
{
CurrentDirectory = System.IO.Directory.GetCurrentDirectory();
return this;
}
}
}