TestableIO.System.IO.Abstractions
22.0.16
Prefix Reserved
dotnet add package TestableIO.System.IO.Abstractions --version 22.0.16
NuGet\Install-Package TestableIO.System.IO.Abstractions -Version 22.0.16
<PackageReference Include="TestableIO.System.IO.Abstractions" Version="22.0.16" />
<PackageVersion Include="TestableIO.System.IO.Abstractions" Version="22.0.16" />
<PackageReference Include="TestableIO.System.IO.Abstractions" />
paket add TestableIO.System.IO.Abstractions --version 22.0.16
#r "nuget: TestableIO.System.IO.Abstractions, 22.0.16"
#:package TestableIO.System.IO.Abstractions@22.0.16
#addin nuget:?package=TestableIO.System.IO.Abstractions&version=22.0.16
#tool nuget:?package=TestableIO.System.IO.Abstractions&version=22.0.16
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.
Usage
dotnet add package TestableIO.System.IO.Abstractions.Wrappers
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.");
}
}
}
Test helpers
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.That(ex.Message, Is.EqualTo("We can't go on together. It's not me, it's you."));
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();
...
}
Mock support
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);
}
}
}
Relationship with Testably.Abstractions
Testably.Abstractions
is a complementary project that uses the same interfaces as TestableIO. This means no changes to your production code are necessary when switching between the testing libraries.
Both projects share the same maintainer, but active development and new features are primarily focused on the Testably.Abstractions project. TestableIO.System.IO.Abstractions continues to be maintained for stability and compatibility, but significant new functionality is unlikely to be added.
When to use Testably.Abstractions vs TestableIO
Use TestableIO.System.IO.Abstractions if you need:
- Basic file system mocking capabilities
- Direct manipulation of stored file entities (MockFileData, MockDirectoryData)
- Established codebase with existing TestableIO integration
Use Testably.Abstractions if you need:
- Advanced testing scenarios (FileSystemWatcher, SafeFileHandles, multiple drives)
- Additional abstractions (ITimeSystem, IRandomSystem)
- Cross-platform file system simulation (Linux, MacOS, Windows)Expand commentComment on line R163ResolvedCode has comments. Press enter to view.
- More extensive and consistent behavior validation
- Active development and new features
Migrating from TestableIO
Switching from TestableIO to Testably only requires changes in your test projects:
Replace the NuGet package reference in your test projects:
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" /> <PackageReference Include="Testably.Abstractions.Testing" />
Update your test code to use the new
MockFileSystem
:// Before (TestableIO) var fileSystem = new MockFileSystem(); fileSystem.AddDirectory("some-directory"); fileSystem.AddFile("some-file.txt", new MockFileData("content")); // After (Testably) var fileSystem = new MockFileSystem(); fileSystem.Directory.CreateDirectory("some-directory"); fileSystem.File.WriteAllText("some-file.txt", "content"); // or using fluent initialization: fileSystem.Initialize() .WithSubdirectory("some-directory") .WithFile("some-file.txt").Which(f => f .HasStringContent("content"));
Your production code using IFileSystem
remains unchanged.
Other related projects
System.IO.Abstractions.Extensions
provides convenience functionality on top of the core abstractions.System.IO.Abstractions.Analyzers
provides Roslyn analyzers to help use abstractions over static methods.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 is compatible. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 is compatible. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.7.2
- Testably.Abstractions.FileSystem.Interface (>= 9.0.0)
-
.NETStandard 2.0
- Testably.Abstractions.FileSystem.Interface (>= 9.0.0)
-
.NETStandard 2.1
- Testably.Abstractions.FileSystem.Interface (>= 9.0.0)
-
net6.0
- Testably.Abstractions.FileSystem.Interface (>= 9.0.0)
-
net8.0
- Testably.Abstractions.FileSystem.Interface (>= 9.0.0)
-
net9.0
- Testably.Abstractions.FileSystem.Interface (>= 9.0.0)
NuGet packages (31)
Showing the top 5 NuGet packages that depend on TestableIO.System.IO.Abstractions:
Package | Downloads |
---|---|
System.IO.Abstractions
A set of abstractions to help make file system interactions testable. |
|
Vonage
Official C#/.NET wrapper for the Vonage API. To use it you will need a Vonage account. Sign up for free at vonage.com. For full API documentation refer to developer.vonage.com. |
|
TestableIO.System.IO.Abstractions.Extensions
Convenience functionalities on top of System.IO.Abstractions |
|
ktsu.AppDataStorage
Application data management library using JSON serialization to save and load data in the user's app data folder. |
|
Zafiro.FileSystem.Local
The Cross-platform Crema for .NET Devs |
GitHub repositories (9)
Showing the top 9 popular GitHub repositories that depend on TestableIO.System.IO.Abstractions:
Repository | Stars |
---|---|
kurrent-io/KurrentDB
KurrentDB is a database that's engineered for modern software applications and event-driven architectures. Its event-native design simplifies data modeling and preserves data integrity while the integrated streaming engine solves distributed messaging challenges and ensures data consistency.
|
|
recyclarr/recyclarr
Automatically sync TRaSH Guides to your Sonarr and Radarr instances
|
|
rogerfar/rdt-client
Real-Debrid Client Proxy
|
|
ChaosRecipeEnhancer/ChaosRecipeEnhancer
🟡📈 Streamline your Chaos Recipe gains! Overlay tool for Path of Exile 1
|
|
octgn/OCTGN
Online Card and Tabletop Gaming Network
|
|
bottlenoselabs/c2cs
Generate C# bindings from a C header.
|
|
ZarehD/AspNetStatic
Transform ASP.NET Core into a static site generator.
|
|
Vonage/vonage-dotnet-sdk
Vonage REST API client for .NET, written in C#. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
|
|
rubberduck-vba/Rubberduck3
COM add-in for the VBIDE
|
Version | Downloads | Last Updated | |
---|---|---|---|
22.0.16 | 31 | 9/14/2025 | |
22.0.16-pre.2 | 7 | 9/14/2025 | |
22.0.16-pre.1 | 16 | 9/13/2025 | |
22.0.15 | 401,156 | 7/8/2025 | |
22.0.14 | 942,375 | 4/18/2025 | |
22.0.13 | 210,085 | 4/4/2025 | |
22.0.12 | 763,691 | 3/13/2025 | |
22.0.11 | 196,524 | 3/1/2025 | |
22.0.10 | 294,244 | 2/23/2025 | |
22.0.10-beta.1 | 157 | 2/22/2025 | |
22.0.9 | 10,806 | 2/22/2025 | |
21.3.1 | 828,177 | 1/29/2025 | |
21.2.12 | 79,492 | 1/28/2025 | |
21.2.8 | 40,311 | 1/25/2025 | |
21.2.1 | 960,529 | 12/28/2024 | |
21.1.7 | 911,706 | 12/3/2024 | |
21.1.3 | 1,085,425 | 11/8/2024 | |
21.1.2 | 13,450 | 11/8/2024 | |
21.1.1 | 11,037 | 11/7/2024 | |
21.0.29 | 3,946,414 | 7/25/2024 | |
21.0.26 | 539,289 | 7/13/2024 | |
21.0.22 | 839,256 | 6/22/2024 | |
21.0.2 | 2,690,717 | 3/17/2024 | |
20.0.34 | 91,151 | 3/15/2024 | |
20.0.28 | 190,333 | 3/9/2024 | |
20.0.15 | 2,007,968 | 1/22/2024 | |
20.0.4 | 2,352,941 | 12/5/2023 | |
20.0.1 | 4,193 | 12/5/2023 | |
19.2.91 | 341,234 | 12/5/2023 | |
19.2.87 | 876,109 | 11/16/2023 | |
19.2.69 | 3,229,825 | 8/29/2023 | |
19.2.67 | 61,300 | 8/25/2023 | |
19.2.66 | 3,569 | 8/25/2023 | |
19.2.64 | 148,880 | 8/22/2023 | |
19.2.63 | 4,115 | 8/22/2023 | |
19.2.61 | 26,588 | 8/21/2023 | |
19.2.51 | 349,175 | 7/31/2023 | |
19.2.50 | 7,484 | 7/31/2023 | |
19.2.29 | 2,300,097 | 5/17/2023 | |
19.2.26 | 81,627 | 5/12/2023 | |
19.2.25 | 4,380 | 5/12/2023 | |
19.2.22 | 224,302 | 5/4/2023 | |
19.2.18 | 281,930 | 4/24/2023 | |
19.2.17 | 19,443 | 4/23/2023 | |
19.2.16 | 146,664 | 4/19/2023 | |
19.2.15 | 400,306 | 4/18/2023 | |
19.2.13 | 4,164 | 4/18/2023 | |
19.2.12 | 8,152 | 4/18/2023 | |
19.2.11 | 105,099 | 4/13/2023 | |
19.2.9 | 94,506 | 4/11/2023 | |
19.2.8 | 8,977 | 4/11/2023 | |
19.2.4 | 1,459,044 | 3/13/2023 | |
19.2.1 | 432,008 | 3/2/2023 | |
19.1.18 | 455,378 | 2/14/2023 | |
19.1.14 | 225,733 | 1/31/2023 | |
19.1.13 | 435,949 | 1/24/2023 | |
19.1.5 | 3,709,518 | 12/19/2022 | |
19.1.1 | 112,987 | 12/13/2022 | |
19.0.1 | 271,669 | 12/8/2022 | |
18.0.1 | 533,167 | 11/28/2022 | |
17.2.26 | 348,542 | 11/18/2022 |