![]() |
VOOZH | about |
dotnet add package TestableIO.System.IO.Abstractions --version 22.1.1
NuGet\Install-Package TestableIO.System.IO.Abstractions -Version 22.1.1
<PackageReference Include="TestableIO.System.IO.Abstractions" Version="22.1.1" />
<PackageVersion Include="TestableIO.System.IO.Abstractions" Version="22.1.1" />Directory.Packages.props
<PackageReference Include="TestableIO.System.IO.Abstractions" />Project file
paket add TestableIO.System.IO.Abstractions --version 22.1.1
#r "nuget: TestableIO.System.IO.Abstractions, 22.1.1"
#:package TestableIO.System.IO.Abstractions@22.1.1
#addin nuget:?package=TestableIO.System.IO.Abstractions&version=22.1.1Install as a Cake Addin
#tool nuget:?package=TestableIO.System.IO.Abstractions&version=22.1.1Install as a Cake Tool
👁 NuGet
👁 Build
👁 Quality Gate Status
👁 Coverage
👁 Renovate enabled
👁 FOSSA Status
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.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.");
}
}
}
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();
...
}
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 Mockolate:
[Test]
public void Test1()
{
var watcher = Mock.Create<IFileSystemWatcher>();
var file = Mock.Create<IFile>();
file.SetupMock.Method.Exists(It.IsAny<string>()).Returns(true);
file.SetupMock.Method.ReadAllText(It.IsAny<string>()).Throws<OutOfMemoryException>();
var unitUnderTest = new SomeClassUsingFileSystemWatcher(watcher, file);
Assert.Throws<OutOfMemoryException>(() => {
watcher.RaiseOnMock.Created(null, new System.IO.FileSystemEventArgs(System.IO.WatcherChangeTypes.Created, @"C:\Some\Directory", "Some.File"));
});
file.VerifyMock.Invoked.Exists(It.IsAny<string>()).Once();
Assert.That(unitUnderTest.FileWasCreated, Is.True);
}
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);
}
}
}
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.
Use TestableIO.System.IO.Abstractions if you need:
Use Testably.Abstractions if you need:
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.
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 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 is compatible. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 is compatible. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
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. |
|
|
Reo.Core.Database
Package Description |
|
|
Reo.Core.Testing
Package Description |
|
|
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. |
|
|
Reo.Core.DataImport
Package Description |
Showing the top 12 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
|
|
|
thomhurst/ModularPipelines
Write your pipelines in C# !
|
|
|
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.
|
|
|
NeilMacMullen/kusto-loco
C# KQL query engine with flexible I/O layers and visualization
|
|
|
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
|
|
|
hmz777/NetStalkerAvalonia
NetStalker re-written in MVVM, Avalonia and Reactive UI.
|
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 22.1.1 | 838,399 | 4/9/2026 | |
| 22.1.0 | 2,770,862 | 11/22/2025 | |
| 22.0.16 | 1,841,477 | 9/14/2025 | |
| 22.0.16-pre.2 | 217 | 9/14/2025 | |
| 22.0.16-pre.1 | 164 | 9/13/2025 | |
| 22.0.15 | 1,214,182 | 7/8/2025 | |
| 22.0.14 | 2,891,640 | 4/18/2025 | |
| 22.0.13 | 399,795 | 4/4/2025 | |
| 22.0.12 | 1,851,560 | 3/13/2025 | |
| 22.0.11 | 361,663 | 3/1/2025 | |
| 22.0.10 | 640,675 | 2/23/2025 | |
| 22.0.10-beta.1 | 245 | 2/22/2025 | |
| 22.0.9 | 31,515 | 2/22/2025 | |
| 21.3.1 | 1,476,666 | 1/29/2025 | |
| 21.2.12 | 163,160 | 1/28/2025 | |
| 21.2.8 | 57,156 | 1/25/2025 | |
| 21.2.1 | 1,954,425 | 12/28/2024 | |
| 21.1.7 | 1,476,357 | 12/3/2024 | |
| 21.1.3 | 1,841,508 | 11/8/2024 | |
| 21.1.2 | 27,886 | 11/8/2024 | 21.1.2 is deprecated because it has critical bugs. |