I use Visual Studio 2008 Professional automated tests. I have a function that writes to a file. I want to unit test the file writing function. I have read somewhere that I would have to mock a file somehow. I don't know how to do it. Can you help?
How to unit-test a method that downloads a page from the Internet?
|
2
|
|
||
|
|
|
|
It depends how close your code is to the nuts'n'bolts; for example, you could work in For downloading from the internet (or pretending to)... you could (for example) write an |
||
|
|
|
If the method has to open the file stream itself, then that's hard to mock. However, if you can pass a stream into the method, and make it write to that, then you can pass in a MemoryStream instead. An alternative overload can take fewer parameters, open the file and pass a FileStream to the other method. This way you don't get complete coverage (unless you write a test or two which really does hit the disk) but most of your logic is in fully tested code, within the method taking a Stream parameter. |
||||
|
|
|
You don't actually want to make the call to write the file directly in your function but instead wrap the file I/O inside a class with an interface. You can then use something like Rhino Mocks to create a mock class implementing the interface. |
||
|
|
|
If the goal of your test is to test that the file is actually created, it is an integration test, and not a unit test. If the goal it to test that the proper things are writen into the file, hide the file access behind an interface, and provide an in memory implementation. The same is true for web page access.
Using GetFile, you can find what should be written to disk. |
|||
|
|
