-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDriveInfoMock.cs
211 lines (172 loc) · 4.98 KB
/
DriveInfoMock.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
using System;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using Testably.Abstractions.Testing.Helpers;
using Testably.Abstractions.Testing.Storage;
namespace Testably.Abstractions.Testing.FileSystem;
/// <summary>
/// Mocked instance of a <see cref="IDriveInfo" />
/// </summary>
internal sealed class DriveInfoMock : IStorageDrive
{
/// <summary>
/// The default <see cref="IDriveInfo.DriveFormat" />.
/// </summary>
public const string DefaultDriveFormat = "NTFS";
/// <summary>
/// The default <see cref="IDriveInfo.DriveType" />.
/// </summary>
public const DriveType DefaultDriveType = DriveType.Fixed;
/// <summary>
/// The default total size of a mocked <see cref="IStorageDrive" />.
/// <para />
/// The number is equal to 1GB (1 Gigabyte).
/// </summary>
public const long DefaultTotalSize = 1024 * 1024 * 1024;
private readonly MockFileSystem _fileSystem;
private long _usedBytes;
private string _volumeLabel = nameof(MockFileSystem);
private DriveInfoMock(string driveName, MockFileSystem fileSystem)
{
_fileSystem = fileSystem;
if (driveName.IsUncPath(_fileSystem))
{
IsUncPath = true;
driveName = PathHelper.UncPrefix +
GetTopmostParentDirectory(driveName.Substring(2));
}
else
{
driveName = ValidateDriveLetter(driveName, fileSystem);
}
Name = driveName;
TotalSize = DefaultTotalSize;
DriveFormat = DefaultDriveFormat;
DriveType = DefaultDriveType;
IsReady = true;
}
#region IStorageDrive Members
/// <inheritdoc cref="IDriveInfo.AvailableFreeSpace" />
public long AvailableFreeSpace
=> TotalFreeSpace;
/// <inheritdoc cref="IDriveInfo.DriveFormat" />
public string DriveFormat { get; private set; }
/// <inheritdoc cref="IDriveInfo.DriveType" />
public DriveType DriveType { get; private set; }
/// <inheritdoc cref="IFileSystemEntity.FileSystem" />
public IFileSystem FileSystem
=> _fileSystem;
/// <inheritdoc cref="IDriveInfo.IsReady" />
public bool IsReady { get; private set; }
/// <summary>
/// Flag indicating if the drive is a UNC drive
/// </summary>
public bool IsUncPath { get; }
/// <inheritdoc cref="IDriveInfo.Name" />
public string Name { get; }
/// <inheritdoc cref="IDriveInfo.RootDirectory" />
public IDirectoryInfo RootDirectory
=> DirectoryInfoMock.New(_fileSystem.Storage.GetLocation(Name), _fileSystem);
/// <inheritdoc cref="IDriveInfo.TotalFreeSpace" />
public long TotalFreeSpace
=> TotalSize - _usedBytes;
/// <inheritdoc cref="IDriveInfo.TotalSize" />
public long TotalSize { get; private set; }
/// <inheritdoc cref="IDriveInfo.VolumeLabel" />
[AllowNull]
public string VolumeLabel
{
get => _volumeLabel;
[SupportedOSPlatform("windows")]
set
{
_volumeLabel = value ?? _volumeLabel;
_fileSystem.Execute.NotOnWindows(
() => throw ExceptionFactory.OperationNotSupportedOnThisPlatform());
}
}
/// <inheritdoc cref="IStorageDrive.ChangeUsedBytes(long)" />
public IStorageDrive ChangeUsedBytes(long usedBytesDelta)
{
long newUsedBytes = Math.Max(0, _usedBytes + usedBytesDelta);
if (newUsedBytes > TotalSize)
{
throw ExceptionFactory.NotEnoughDiskSpace(Name);
}
_usedBytes = newUsedBytes;
return this;
}
/// <inheritdoc cref="IStorageDrive.SetDriveFormat(string)" />
public IStorageDrive SetDriveFormat(
string driveFormat = DefaultDriveFormat)
{
DriveFormat = driveFormat;
return this;
}
/// <inheritdoc cref="IStorageDrive.SetDriveType(System.IO.DriveType)" />
public IStorageDrive SetDriveType(
DriveType driveType = DefaultDriveType)
{
DriveType = driveType;
return this;
}
/// <inheritdoc cref="IStorageDrive.SetIsReady(bool)" />
public IStorageDrive SetIsReady(bool isReady = true)
{
IsReady = isReady;
return this;
}
/// <inheritdoc cref="IStorageDrive.SetTotalSize(long)" />
public IStorageDrive SetTotalSize(
long totalSize = DefaultTotalSize)
{
TotalSize = totalSize;
return this;
}
#endregion
/// <inheritdoc cref="object.ToString()" />
public override string ToString()
=> Name;
private string GetTopmostParentDirectory(string path)
{
while (true)
{
string? child = FileSystem.Path.GetDirectoryName(path);
if (string.IsNullOrEmpty(child))
{
break;
}
path = child;
}
return path;
}
private static string ValidateDriveLetter(string driveName,
MockFileSystem fileSystem)
{
if (driveName.Length == 1 &&
char.IsLetter(driveName, 0))
{
return $"{driveName.ToUpperInvariant()}:\\";
}
if (fileSystem.Path.IsPathRooted(driveName))
{
return fileSystem.Execute.OnWindows(() =>
{
string rootedPath = fileSystem.Path.GetPathRoot(driveName)!;
return $"{rootedPath.TrimEnd('\\')}\\";
},
() => fileSystem.Path.GetPathRoot(driveName)!);
}
throw ExceptionFactory.InvalidDriveName();
}
[return: NotNullIfNotNull("driveName")]
internal static DriveInfoMock? New(string? driveName,
MockFileSystem fileSystem)
{
if (driveName == null)
{
return null;
}
return new DriveInfoMock(driveName, fileSystem);
}
}