|
|
| There's more than one way to do things | |
| PerlMonks |
Unit testing OS rich codeby Voronich (Hermit) |
| on Oct 12, 2011 at 15:21 UTC ( #931036=perlquestion: print w/ replies, xml ) | Need Help?? |
|
Voronich has asked for the
wisdom of the Perl Monks concerning the following question:
So I've got some code. It's not fancy code, but it should be under test and isn't. I'm usually a pretty strong TDD guy but when writing code that has lots of external interactions, in this case simple filesystem manipulations, it gets sufficiently sticky that I bail out and "just write the damn thing." The algorithm is:
Here's the approximate look of it. (Note that in the live version the source and destination filenames are sufficiently less patterned that abstracting them further would just be annoying and not really grant me anything.)
So, ok. No tests. So my "while 1: run tests, wait 5 seconds" test script yacks all over the place. Well, the first fix (for runing in a while(1) test loop) is easy...
So now at least the file system operations are abstracted for testing. Now what I didn't do is add a global $TEST_MODE to the script and then pepper the abstraction functions with things like:
...because while that DOES solve the "oh crap, I forgot to replace the mocks with the real versions in the live code" thing that happens, it also makes your code a godawful mess. So it looks like I'm heading towards some weird "OSOps" class that I can mock out with a duplicated interface in "MockOSOps". Now... This is getting complicated fast. I'm going from a twenty-something line function into a couple new modules. I'm pretty much sold on the idea that it's the right way to go, despite the fact that I'll end up with what really amounts to a "catch all module" full of stuff I can mock out. But in the peculiarly touchy-feely language of the Agile Programmers, It smells off somehow. Or perhaps I just need another shower. Thoughts?
Back to
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||