Mocking the file system
I have the following piece of code:
And I wasn't sure about how I can test this thing. For production, this will use a File Stream, and getting those to produce errors is non trivial in most situations. A bit of thinking, however, told me that I can write a test for the error handling section of this fairly easily, like this:
I love having powerful tools at my reach.
Comments
At work, we have been working around the issue of testing things that interact with the filesystem. Frustrated by the extreme lack of abstraction in the Framework's System.IO namespace, we decided to create our own abstraction layer called ISystemIOAdapter (which is really a cross between an Adapter pattern and a Proxy pattern, but I digress).
The implementation of SystemIOAdapter is a trivial pass-through to the System.IO methods (many of them statics, such as Directory.GetFiles). In our case, since we're not using an IoC container, we also had to make it a Singleton with a leaky encapsulation (we needed a ResetInstance() method in order to clean up after tests where we mocked it).
This has allowed us to use Rhino Mocks to create clean interaction-based tests of things which I.E. need to iterate through a directory structure in a specific way, which do not require complicated/expensive setups of creating actual directories and files. It's been a real help to us, since our current projects are doing a whole lot of filesystem work.
Matt,
I think that Bill Simser has something like that on CodePlex as well. This approach is very common.
In this case, I wanted something very specific, which was why I used this approach instead of full blown adapter.
Comment preview