forked from TestableIO/System.IO.Abstractions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMockDriveInfoFactory.cs
94 lines (79 loc) · 2.62 KB
/
MockDriveInfoFactory.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
using System.Collections.Generic;
namespace System.IO.Abstractions.TestingHelpers
{
[Serializable]
public class MockDriveInfoFactory : IDriveInfoFactory
{
private readonly IMockFileDataAccessor mockFileSystem;
public MockDriveInfoFactory(IMockFileDataAccessor mockFileSystem)
{
if (mockFileSystem == null)
{
throw new ArgumentNullException("mockFileSystem");
}
this.mockFileSystem = mockFileSystem;
}
public DriveInfoBase[] GetDrives()
{
var driveLetters = new HashSet<string>(new DriveEqualityComparer());
foreach (var path in mockFileSystem.AllPaths)
{
var pathRoot = mockFileSystem.Path.GetPathRoot(path);
driveLetters.Add(pathRoot);
}
var result = new List<DriveInfoBase>();
foreach (string driveLetter in driveLetters)
{
try
{
var mockDriveInfo = new MockDriveInfo(mockFileSystem, driveLetter);
result.Add(mockDriveInfo);
}
catch (ArgumentException)
{
// invalid drives should be ignored
}
}
return result.ToArray();
}
private string NormalizeDriveName(string driveName)
{
if (driveName.Length == 3 && driveName.EndsWith(@":\", StringComparison.OrdinalIgnoreCase))
{
return char.ToUpperInvariant(driveName[0]) + @":\";
}
if (driveName.StartsWith(@"\\", StringComparison.OrdinalIgnoreCase))
{
return null;
}
return driveName;
}
private class DriveEqualityComparer : IEqualityComparer<string>
{
public bool Equals(string x, string y)
{
if (ReferenceEquals(x, y))
{
return true;
}
if (ReferenceEquals(x, null))
{
return false;
}
if (ReferenceEquals(y, null))
{
return false;
}
if (x[1] == ':' && y[1] == ':')
{
return char.ToUpperInvariant(x[0]) == char.ToUpperInvariant(y[0]);
}
return false;
}
public int GetHashCode(string obj)
{
return obj.ToUpperInvariant().GetHashCode();
}
}
}
}