http://www.perlmonks.org?node_id=243216


in reply to Unit Testing CGI Programs

Does that sound like Doing The Right Thing, or is there some nifty trick out there that I'm missing?

The pieces you have can be unit tested individually if you break them out. Philosophically, you're doing three things:

You've made a start on teasing these apart into separately testable routines. One possible next step is to isolate the logic that constructs the template. With the logic broken into separate routines, you've in a much better position to selectively replace substructure for testing purposes. (E.g., pull data back from in in-memory stub or repository, rather than querying the database).

On the "trick" side, here's one I've gotten mileage out of: Instead of hard-coding the template name, soft code it in a way that your test harness can change it to use a debugging template. The debugging template strips out everything unnecessary, leaving you with a result (and expanded template) that's easy to verify programmatically.