Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Unit testing with Perl

by arc_of_descent (Hermit)
on May 25, 2009 at 13:38 UTC ( [id://766031]=note: print w/replies, xml ) Need Help??


in reply to Unit testing with Perl

You should start by using the Test::Simple module in your Perl test scripts. This will give you a good idea on what testing in Perl is about. Its simply just evaluating a condition (in your case, whether the list processed by the C program is sorted), and then declaring a pass/fail. To automate the test script, you have to first write the routines which run the C program (via system possibly), redirect its output to file, read the file into an Perl array, etc.

Next, you can read about Test::More and Test::Deep.

Here's some sample code:
use Test::More; use Test::Deep; my @input = (5, 8, 12, 9, 78, 1, 5); my @expected = (1, 5, 5, 8, 9, 12, 78); my $i_file = "input.txt"; my $o_file = "output.txt"; my $bin = '/bin/c_program'; write_sample_file(\@input, $i_file); # run the C program system "$bin < $i_file > $o_file"; my @processed = get_data($o_file); cmp_deeply (\@processed, \@expected, 'results are sorted');

Replies are listed 'Best First'.
Re^2: Unit testing with Perl
by n4nature (Novice) on May 25, 2009 at 13:50 UTC
    This is going to help immensely. Thank you.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://766031]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (7)
As of 2024-04-18 02:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found