I have an asynchronous readFile(path, callback) function.

The very first time it reads a file it will read it from the file system. It will save the content into the memory.

Afterwards when the same file is read it will just return the content from memory instead of hitting the file system again.

The problem I'm having is how to test this that mechanism is working in a test suite since there is no way for the method call to know if the content is returned from the file system or memory.

How can I implement readFile() so it's caching feature is testable?

link|improve this question

feedback

5 Answers

You mock out the native file opener.

link|improve this answer
I should have told you that I don't love to mock external services due to personal reasons. But +1 for recommending a best practice. – ajsie Feb 25 at 5:37
I'm against using knives to kill people. But I'm all for using them to cut vegetables. :p What I mean is that using the right tool for the right job can't be wrong. And this is the perfect case for using mocks. – pkoch Feb 25 at 17:07
Agreed, mocks are almost always the wrong answer to a problem, but in this case, they're absolutely correct. – Ross Patterson Feb 26 at 16:19
feedback

Why not read the file using your call, then modify the file, then try and read the file again. If it is the same as the first go, and different from your second then it would work. Alternatively, you could expose the variable that it caches against, and modify that, and check it.

link|improve this answer
Presumably you meant "... then modify the file ...". Which is a great way to test the routine without having to mock anything out. +1 – Ross Patterson Feb 26 at 16:21
@RossPatterson correct, whoops! – balupton Feb 26 at 23:16
feedback

Why didn't I thought about this before. I could just pass a flag into the callback(err, content, fromMemory) indicating if it's from file system or memory :)

link|improve this answer
But, but, but ... your entire purpose in writing this test is that you want to verify correct behavior by the routine. And now you're delegating that verification to the routine itself! – Ross Patterson Feb 26 at 16:20
feedback

At the code level definitely you should have had a check whether the content is there in the cache or not, if not go to the file and read else return from the cache. This check can be mocked to return true in one case and false in another case and you can write a test around this. hope i am making sense here.

link|improve this answer
feedback

By checking the speed of each call, perhaps? It may be done with browser profiling tools, or with a bit of assistance from this thread.

link|improve this answer
1  
That doesn't sound very reliable since the speed varies. – ajsie Feb 25 at 2:48
I guess that'd be a horde of a distance between the speed of reading file from memory - and from disk. ) – raina77ow Feb 25 at 2:51
Yeah but sometimes your computer could be very slow, hang up etc and thus affecting the results. – ajsie Feb 25 at 2:58
feedback

Your Answer

 
or
required, but never shown

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