-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDriveInfoFactoryMock.cs
76 lines (60 loc) · 1.95 KB
/
DriveInfoFactoryMock.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
using System;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Linq;
using Testably.Abstractions.Testing.Statistics;
using Testably.Abstractions.Testing.Storage;
namespace Testably.Abstractions.Testing.FileSystem;
internal sealed class DriveInfoFactoryMock : IDriveInfoFactory
{
private readonly MockFileSystem _fileSystem;
internal DriveInfoFactoryMock(MockFileSystem fileSystem)
{
_fileSystem = fileSystem;
}
#region IDriveInfoFactory Members
/// <inheritdoc cref="IFileSystemEntity.FileSystem" />
public IFileSystem FileSystem
=> _fileSystem;
/// <inheritdoc cref="IDriveInfoFactory.GetDrives()" />
public IDriveInfo[] GetDrives()
{
using IDisposable registration = RegisterMethod(nameof(GetDrives));
return _fileSystem.Storage.GetDrives()
.Where(x => !x.IsUncPath)
.Cast<IDriveInfo>()
.OrderBy(x => x.Name)
.ToArray();
}
/// <inheritdoc cref="IDriveInfoFactory.New(string)" />
public IDriveInfo New(string driveName)
{
using IDisposable registration = RegisterMethod(nameof(New),
driveName);
if (driveName == null)
{
throw new ArgumentNullException(nameof(driveName));
}
DriveInfoMock driveInfo = DriveInfoMock.New(driveName, _fileSystem);
IStorageDrive? existingDrive = _fileSystem.Storage.GetDrive(driveInfo.Name);
return existingDrive ?? driveInfo;
}
/// <inheritdoc cref="IDriveInfoFactory.Wrap(DriveInfo)" />
[return: NotNullIfNotNull("driveInfo")]
public IDriveInfo? Wrap(DriveInfo? driveInfo)
{
using IDisposable registration = RegisterMethod(nameof(Wrap),
driveInfo);
if (driveInfo?.Name == null)
{
return null;
}
return New(driveInfo.Name);
}
#endregion
private IDisposable RegisterMethod(string name)
=> _fileSystem.StatisticsRegistration.DriveInfo.RegisterMethod(name);
private IDisposable RegisterMethod<T1>(string name, T1 parameter1)
=> _fileSystem.StatisticsRegistration.DriveInfo.RegisterMethod(name,
ParameterDescription.FromParameter(parameter1));
}