vote up 4 vote down star
3

Hello!

I have written a small Perl script and now I would like to create a test suite for it. I thought it would be nice to be able to use the script as a module, import the subs defined in the script and test these. Is there a way to have the script both standalone Perl script and Perl module? (I do not want to split the script into a separate module and the “executable”, since I plan to distribute the script as a single file.)

Or is there a better way to test the script?

flag

4 Answers

vote up 10 vote down check

Since brian seems to be asleep right now, here's a pointer to what he calls modulinos. This is basically a recipe for building scripts that act like modules or modules that can be run like scripts. Sounds exactly like what you are looking for.

Mastering Perl is definitely a book worth reading (and buying).

link|flag
Thank you, this is exactly what I was looking for. – zoul Jan 22 at 12:46
I think there is a convenience in making a module act like a script, but I don't see the value in making a script act like a module. At least not yet.... – Joe Casadonte Jan 22 at 20:16
The answer is in the question (not your question, but the original one). It is much easier to unit-test a module than to unit-test a script – Manni Jan 22 at 20:37
Not asleep, just working :) The advantage of having a script as a module is that you can break it into pieces for unit testing. Otherwise, you only get to run the whole script. – brian d foy Jan 22 at 22:50
Nice. This helped me. – Paul Nathan Jul 27 at 21:58
vote up 0 vote down

Why not writing a test suite in a shell script, with the Perl script called like any other shell command ?

link|flag
Yes, that’s surely an option, but using the subs directly seems much more convenient to me. – zoul Jan 22 at 11:29
vote up 2 vote down

(I do not want to split the script into a separate module and the “executable”, since I plan to distribute the script as a single file.)

Most people stitch files together like this at build time. App::Ack on the CPAN is an example of something that can be built like this.

If you really want to test your application properly, you need to put the functionality in a module, and then write a Test::More-based test script that exercises the functions that the module provides. Then the actual script is just a thin wrapper around the module, usually something like:

#!/usr/bin/env perl
use Your::Class;
Your::Class->new(args => \@ARGV)->run;

See also: MooseX::Getopt.

link|flag
vote up 1 vote down

It depends on whether you want to test the script itself, or test the subs that make up the script. If you want to test the script, then an external test would be more appropriate, e.g. a shell script. If you want to test the functions that make up the script, then you can either write those tests as more functions within the script or refactor the elements into a Perl module and test the module (which you say you don't want to do).

If the script is small enough, then refactoring might not be necessary. Simply add a '-test' command line argument and call into a test sub, which in turn tests everything else. If doing this, I like to print out a progress indicator of some kind (e.g. a '.' for every test that passes).

If the script is more complex, though, you may want to consider refactoring bits into one or more modules and testing them with Test::Simple or Test::More.

link|flag

Your Answer

Get an OpenID
or

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