TestableIO.System.IO.Abstractions 19.1.5
At the core of the library is IFileSystem
and FileSystem
. Instead of calling methods like File.ReadAllText
directly, use IFileSystem.File.ReadAllText
. We have exactly the same API, except that ours is injectable and testable.
dotnet add package TestableIO.System.IO.Abstractions
Note: This NuGet package is also published as System.IO.Abstractions
but we suggest to use the prefix to make clear that this is not an official .NET package.
public class MyComponent
{
readonly IFileSystem fileSystem;
// <summary>Create MyComponent with the given fileSystem implementation</summary>
public MyComponent(IFileSystem fileSystem)
{
this.fileSystem = fileSystem;
}
/// <summary>Create MyComponent</summary>
public MyComponent() : this(
fileSystem: new FileSystem() //use default implementation which calls System.IO
)
{
}
public void Validate()
{
foreach (var textFile in fileSystem.Directory.GetFiles(@"c:\", "*.txt", SearchOption.TopDirectoryOnly))
{
var text = fileSystem.File.ReadAllText(textFile);
if (text != "Testing is awesome.")
throw new NotSupportedException("We can't go on together. It's not me, it's you.");
}
}
}
The library also ships with a series of test helpers to save you from having to mock out every call, for basic scenarios. They are not a complete copy of a real-life file system, but they'll get you most of the way there.
dotnet add package TestableIO.System.IO.Abstractions.TestingHelpers
Note: This NuGet package is also published as System.IO.Abstractions.TestingHelpers
but we suggest to use the prefix to make clear that this is not an official .NET package.
[Test]
public void MyComponent_Validate_ShouldThrowNotSupportedExceptionIfTestingIsNotAwesome()
{
// Arrange
var fileSystem = new MockFileSystem(new Dictionary<string, MockFileData>
{
{ @"c:\myfile.txt", new MockFileData("Testing is meh.") },
{ @"c:\demo\jQuery.js", new MockFileData("some js") },
{ @"c:\demo\image.gif", new MockFileData(new byte[] { 0x12, 0x34, 0x56, 0xd2 }) }
});
var component = new MyComponent(fileSystem);
try
{
// Act
component.Validate();
}
catch (NotSupportedException ex)
{
// Assert
Assert.AreEqual("We can't go on together. It's not me, it's you.", ex.Message);
return;
}
Assert.Fail("The expected exception was not thrown.");
}
We even support casting from the .NET Framework's untestable types to our testable wrappers:
FileInfo SomeApiMethodThatReturnsFileInfo()
{
return new FileInfo("a");
}
void MyFancyMethod()
{
var testableFileInfo = (FileInfoBase)SomeApiMethodThatReturnsFileInfo();
...
}
Since version 4.0 the top-level APIs expose interfaces instead of abstract base classes (these still exist, though), allowing you to completely mock the file system. Here's a small example, using Moq:
[Test]
public void Test1()
{
var watcher = Mock.Of<IFileSystemWatcher>();
var file = Mock.Of<IFile>();
Mock.Get(file).Setup(f => f.Exists(It.IsAny<string>())).Returns(true);
Mock.Get(file).Setup(f => f.ReadAllText(It.IsAny<string>())).Throws<OutOfMemoryException>();
var unitUnderTest = new SomeClassUsingFileSystemWatcher(watcher, file);
Assert.Throws<OutOfMemoryException>(() => {
Mock.Get(watcher).Raise(w => w.Created += null, new System.IO.FileSystemEventArgs(System.IO.WatcherChangeTypes.Created, @"C:\Some\Directory", "Some.File"));
});
Mock.Get(file).Verify(f => f.Exists(It.IsAny<string>()), Times.Once);
Assert.True(unitUnderTest.FileWasCreated);
}
public class SomeClassUsingFileSystemWatcher
{
private readonly IFileSystemWatcher _watcher;
private readonly IFile _file;
public bool FileWasCreated { get; private set; }
public SomeClassUsingFileSystemWatcher(IFileSystemWatcher watcher, IFile file)
{
this._file = file;
this._watcher = watcher;
this._watcher.Created += Watcher_Created;
}
private void Watcher_Created(object sender, System.IO.FileSystemEventArgs e)
{
FileWasCreated = true;
if(_file.Exists(e.FullPath))
{
var text = _file.ReadAllText(e.FullPath);
}
}
}
Showing the top 20 packages that depend on TestableIO.System.IO.Abstractions.
Packages | Downloads |
---|---|
System.IO.Abstractions
A set of abstractions to help make file system interactions testable.
|
10 |
System.IO.Abstractions
A set of abstractions to help make file system interactions testable.
|
11 |
System.IO.Abstractions
A set of abstractions to help make file system interactions testable.
|
12 |
System.IO.Abstractions
A set of abstractions to help make file system interactions testable.
|
13 |
System.IO.Abstractions
A set of abstractions to help make file system interactions testable.
|
14 |
TestableIO.System.IO.Abstractions.Wrappers
A set of abstractions to help make file system interactions testable.
|
10 |
TestableIO.System.IO.Abstractions.Wrappers
A set of abstractions to help make file system interactions testable.
|
11 |
.NET Framework 4.6.1
- No dependencies.
.NET 5.0
- No dependencies.
.NET 6.0
- No dependencies.
.NET 7.0
- No dependencies.
.NET Standard 2.0
- No dependencies.
.NET Standard 2.1
- No dependencies.
Version | Downloads | Last updated |
---|---|---|
21.1.7 | 4 | 12/12/2024 |
21.1.3 | 3 | 12/02/2024 |
21.1.2 | 6 | 11/24/2024 |
21.1.1 | 6 | 11/15/2024 |
21.0.29 | 7 | 11/22/2024 |
21.0.26 | 5 | 11/27/2024 |
21.0.22 | 7 | 11/14/2024 |
21.0.2 | 9 | 05/31/2024 |
20.0.34 | 10 | 05/31/2024 |
20.0.28 | 6 | 05/31/2024 |
20.0.15 | 10 | 05/31/2024 |
20.0.4 | 6 | 05/31/2024 |
20.0.1 | 11 | 05/31/2024 |
19.2.91 | 9 | 05/31/2024 |
19.2.87 | 6 | 05/31/2024 |
19.2.69 | 8 | 05/31/2024 |
19.2.67 | 9 | 05/31/2024 |
19.2.66 | 5 | 05/31/2024 |
19.2.64 | 9 | 05/31/2024 |
19.2.63 | 8 | 05/31/2024 |
19.2.61 | 9 | 05/31/2024 |
19.2.51 | 9 | 05/31/2024 |
19.2.50 | 9 | 05/31/2024 |
19.2.29 | 9 | 05/31/2024 |
19.2.26 | 12 | 05/31/2024 |
19.2.25 | 5 | 05/31/2024 |
19.2.22 | 8 | 05/31/2024 |
19.2.18 | 9 | 05/31/2024 |
19.2.17 | 4 | 05/31/2024 |
19.2.16 | 7 | 05/31/2024 |
19.2.15 | 10 | 05/31/2024 |
19.2.13 | 10 | 05/31/2024 |
19.2.12 | 8 | 05/31/2024 |
19.2.11 | 10 | 05/31/2024 |
19.2.9 | 7 | 05/31/2024 |
19.2.8 | 7 | 05/31/2024 |
19.2.4 | 10 | 05/31/2024 |
19.2.1 | 10 | 05/31/2024 |
19.1.18 | 10 | 05/31/2024 |
19.1.14 | 11 | 05/31/2024 |
19.1.13 | 8 | 05/31/2024 |
19.1.5 | 10 | 05/31/2024 |
19.1.1 | 11 | 05/31/2024 |
19.0.1 | 8 | 05/31/2024 |
18.0.1 | 13 | 05/31/2024 |
17.2.26 | 14 | 05/31/2024 |