-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFileInfoFactoryMock.cs
56 lines (45 loc) · 1.34 KB
/
FileInfoFactoryMock.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
using System;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using Testably.Abstractions.Testing.Helpers;
namespace Testably.Abstractions.Testing.FileSystem;
internal sealed class FileInfoFactoryMock : IFileInfoFactory
{
private readonly MockFileSystem _fileSystem;
internal FileInfoFactoryMock(MockFileSystem fileSystem)
{
_fileSystem = fileSystem;
}
#region IFileInfoFactory Members
/// <inheritdoc cref="IFileSystemEntity.FileSystem" />
public IFileSystem FileSystem
=> _fileSystem;
/// <inheritdoc cref="IFileInfoFactory.FromFileName(string)" />
[Obsolete("Use `IFileInfoFactory.New(string)` instead")]
public IFileInfo FromFileName(string fileName)
=> New(fileName);
/// <inheritdoc cref="IFileInfoFactory.New(string)" />
public IFileInfo New(string fileName)
{
if (fileName == null)
{
throw new ArgumentNullException(nameof(fileName));
}
if (fileName.IsEffectivelyEmpty(_fileSystem))
{
throw ExceptionFactory.PathIsEmpty("path");
}
return FileInfoMock.New(
_fileSystem.Storage.GetLocation(fileName),
_fileSystem);
}
/// <inheritdoc cref="IFileInfoFactory.Wrap(FileInfo)" />
[return: NotNullIfNotNull("fileInfo")]
public IFileInfo? Wrap(FileInfo? fileInfo)
=> FileInfoMock.New(
_fileSystem.Storage.GetLocation(
fileInfo?.FullName,
fileInfo?.ToString()),
_fileSystem);
#endregion
}