vote up 2 vote down star

You have a method on a class that has 2 parameters, one of which is a file path, the other is irrelevant.

InterestingResult result = foo.Bar(irrelevant, filePathInfo);

In the spirit of having fast snappy unit tests, you find yourself considering refactoring this method to pull out the file path to remove the IO requirements of this test...most likely putting it into another method, so that now you would call

string dataInFile = foo.GetDataInFile(filePathInfo);
InterestingResult result = foo.Bar(irrelevant, dataInFile);

Are you crazy?...or was this a good thing?

flag

75% accept rate

5 Answers

vote up 6 vote down check

How about using a Stream as argument instead? That way you can pass a MemoryStream in your unit test, and a FileStream in production code.

link|flag
Stream is the way to go. Path interfaces can be infuriating. If your require seeking check stream.CanSeek and throw as appropriate. – plinth Jan 19 '09 at 17:03
vote up 0 vote down

Simplest thing that works.

  • For your test, supply a (read-only) golden file for which you know the expected output.(store it in Test/Resources). If that is fast enough, no need to change production code.
  • If the test hitting the FileSystem is unbearably slow (anything over half a sec), Abstract out FileSystem Access (use a Mock/Fake) (something similar to the second snippet in your question).

As you get more n more test infected, you develop a sort of spider-sense of things that would be diff to test and design accordingly. So keep at it...

link|flag
vote up 0 vote down

I would probably have the interface designed so that instead of taking a file path, I would pass in an IStream (or similar) pointer. That way you can use a Mock library for testing to pass in a mocked IStream that will satisfy the method, and provide a stronger test.

link|flag
vote up 0 vote down

Depends who you ask. Some would say design for testing. I would not change my design merely to accommodate a test.

But in this case, I would change my design such that the Foo method takes a Stream rather than a file path. That way it is more flexible and your unit tests can just pass in a dummy stream.

HTH, Kent

link|flag
vote up 0 vote down

As a general rule I would avoid changing an interface only for testing purposes. The interfaces should reflect the user's needs, not the developer's or the tester's.

link|flag
"As a general rule I would avoid changing an interface only for testing purposes."... Right, you should design it for testing in the first place. – Robert Gowland Jan 19 '09 at 19:44
@slowplay: AMEN! Consider Test-Driven Development (TDD)--if it is not easy to test, then it won't be easy to use. – Rob Williams Jan 19 '09 at 20:19
That's right rob, because "testing a class" is "using a class" :-) – tjjjohnson Jan 19 '09 at 20:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.