We have some methods that call File.Copy, File.Delete, File.Exists, etc. How can we test these methods without actually hitting the file system?
I consider myself a unit testing n00b, so any advice is appreciated.
|
2
|
We have some methods that call File.Copy, File.Delete, File.Exists, etc. How can we test these methods without actually hitting the file system? I consider myself a unit testing n00b, so any advice is appreciated.
|
||||||||
|
|
|
|
||
|
|
|
|
Look that this post: http://stackoverflow.com/questions/1087351/how-do-you-mock-out-the-file-system-in-c-for-unit-testing |
||
|
|
|
|
I maintain the Jolt.NET project on CodePlex, which contains a library to generate such interfaces and their implementations for you. Please refer to the Jolt.Testing library for more information. |
||
|
|
|
|
I tend to create an interface in most of my projects called IFileController that has all file operations on it. This can have the basic ones, plus any methods that the .NET framework doesn't provide that deal with files. Using a dependency injection framework, you can get an instance of IFileController without knowing exactly what type it is, and use it without needing to mess around with mocking framework types. This makes everything much more testable, and as a bonus you can change the file storage mechanism without changing your code at all. On the down side, any new developers need to be told about this interface, otherwise they will just use the .NET methods directly. |
||
|
|
|
|
You can use a mock framework for this and it will create a fake copy of the File object and you can inject the file in the system under test. I will recommend Rhino Mock. |
||||
|
|
|
I would use Moq for this. You would have to create an interface and a class that proxies to the real thing so you could have Moq create an instance of your proxy (a mocked instance) but its the best way to test these sorts of things. |
||
|
|
|
|
If you absolutely have to do this, Typemock Isolator is your friend. I can't say I've used it myself, and I would try to design my way around it instead, but it'll do the job as far as I'm aware. |
||||||||||
|