File Coverage

blib/lib/Mnet/T.pm
Criterion Covered Total %
statement 54 69 78.2
branch 18 32 56.2
condition 2 9 22.2
subroutine 8 8 100.0
pod 0 1 0.0
total 82 119 68.9


line stmt bran cond sub pod time code
1             package Mnet::T;
2              
3             # purpose: functions for use in Mnet distribution .t test scripts
4              
5             # required modules
6 31     31   336727 use warnings;
  31         237  
  31         1021  
7 31     31   198 use strict;
  31         51  
  31         618  
8 31     31   209 use Carp;
  31         80  
  31         2860  
9 31     31   244 use Config;
  31         139  
  31         1540  
10 31     31   15518 use Mnet;
  31         77  
  31         860  
11 31     31   20923 use Test::More;
  31         2035730  
  31         251  
12              
13              
14              
15             sub test_perl {
16              
17             # $result = Mnet::T::test_perl(\%specs)
18             # purpose: test w/pre/perl/post/filter/expect/debug, for mnet .t scripts
19             # \%specs: input test specification hash reference, see below
20             # $result: true if test passed
21             #
22             # $specs {
23             # name => $test_name, # test name used in Test::More::is call
24             # pre => $sh_code, # shell code to execute before perl code
25             # perl => $perl_code, # perl code piped to perl interpretor
26             # args => $perl_args, # passed to perl code
27             # post => $sh_code', # shell code to execute after perl code
28             # filter => $sh_command, # shell code perl output is piped through
29             # expect => $text, # match with filtered output for pass/fail
30             # debug => $debug_args, # perl args to re-run test after failure
31             # }
32             #
33             # note that leading spaces are removed lines of text stored in exect key
34             # note that debug re-run exports MNET_TEST_PERL_DEBUG=1, even if null
35             #
36             # use Mnet::T qw( test_perl );
37             # test_perl({
38             # name => 'test',
39             # perl => <<' perl-eof',
40             # use warnings;
41             # use strict;
42             # use Mnet::Log;
43             # use Mnet::Log::Test;
44             # syswrite STDOUT, "extra\n";
45             # syswrite STDOUT, "stdout\n";
46             # perl-eof
47             # filter => <<' filter-eof'
48             # grep -v Mnet::Opts::Cli \
49             # | grep -v extra
50             # filter-eof
51             # expect => <<' expect-eof',
52             # --- - Mnet::Log - started
53             # stdout
54             # --- - Mnet::Log finished with no errors
55             # expect-eof
56             # debug => '--debug',
57             # });
58             #
59             # troubleshoot a single test with: INIT { our $mnet_test_perl = $name_re }
60              
61             #? problem on cpantesters with grep on one sparc64-openbsd system
62             # test filters with grep get error 'grep: -: No such file or directory'
63             # no sed errors, no defined aliases, both commands in /usr/bin, in $PATH
64             # grep gives this error if run with no stdin, example: `grep test -`
65             # dosn't matter if it's one grep command, or multiple, complex or simple
66             # debuged with new if-block for not $result, syswrite stderr with extra info
67             # $Config::Config{archname} code can skip, better to simple/accurate/fail
68              
69             # read input specs
70 167     167 0 20661 my $specs = shift;
71              
72             # note test name and caller info
73 167         961 my $name = $specs->{name};
74 167         1195 my @caller = caller();
75              
76             # skip if global mnet_test_perl var is set and test doesn't match
77             # makes it easy to troubleshoot one test in a .t script full of tests
78 167 50 33     1195 if ($main::mnet_test_perl and $name !~ /\Q$main::mnet_test_perl\E/) {
79 0         0 SKIP: { skip("$name (main::mnet_test_perl)", 1); };
  0         0  
80 0         0 return 1;
81             }
82              
83             # check for requried input keys
84 167         1010 foreach my $key (qw/ name perl expect /) {
85 501 50       2039 croak("missing $key key") if not defined $specs->{$key};
86             }
87              
88             # prepare command for test
89 167         2041 my $command = _test_perl_command($specs);
90              
91             # append filter to test command, if one was specified
92             # remove leading and trailing blank lines before shell piping
93 167 100       920 if ($specs->{filter}) {
94 83         1665 $specs->{filter} =~ s/(^\s+|\s+$)//mg;
95 83         688 $command .= "| $specs->{filter}";
96             }
97              
98             # trim expect text, allows for indents
99             # remove leading spaces on each line, to allow for indents when calling
100             # also remove leading/trailing blank lines
101 167         1615 $specs->{expect} =~ s/^\s+//mg;
102 167         3275 $specs->{expect} =~ s/(^\n+|\n+$)//g;
103              
104             # get output from command, remove leading/trailing blank lines
105 167         66461401 ( my $output = `( $command ) 2>&1` ) =~ s/(^\n+|\n+$)//g;
106              
107             # compare command output to expected output
108             # added leading cr makes for cleaner Test::More::is output
109 167         15594 my $result = Test::More::is( "\n$output", "\n$specs->{expect}", $name);
110              
111             # re-run test with debug args if test failed and debug key was set
112 167 50       180014 if (not $result) {
113 0 0 0     0 if ($specs->{debug} or $specs->{filter}) {
114 0         0 my $output = "\npre/perl/post debug for failed '$name'\n";
115 0         0 $output .= " called from $caller[1] line $caller[2]\n\n";
116 0         0 my $command = _test_perl_command($specs, "debug");
117 0         0 $output .= "COMMAND STARTING\n$command\nCOMMAND FINISHED\n";
118 0         0 $output .= "UNFILTERED OUTPUT STARTING";
119 0         0 $output .= `( export MNET_TEST_PERL_DEBUG=1; $command ) 2>&1`;
120 0         0 $output .= "UNFILTERED OUTPUT FINISHED\n";
121             $output .= "FILTER STARTING\n$specs->{filter}\nFILTER FINISHED\n"
122 0 0       0 if $specs->{filter};
123 0         0 syswrite STDERR, "## $_\n" foreach split(/\n/, $output);
124 0         0 syswrite STDERR, "##\n";
125             } else {
126 0         0 syswrite STDERR, "## called from $caller[1] line $caller[2]\n\n";
127             }
128             }
129              
130             # finished test_perl function, return result
131 167         4902 return $result;
132             }
133              
134              
135              
136             sub _test_perl_command {
137              
138             # $command = _test_perl_command(\%specs, $debug)
139             # purpose: prepare pre, perl, and post test command string
140             # \%specs: hash ref of test specifications, refer to test_perl function
141             # $debug: optional debug arguments, set when test needs to be re-run after fail
142             # $command: output command string ready to run with Test::More::is
143              
144             # read input specs hash ref and debug flag
145 167     167   1412 my ($specs, $debug) = (shift, shift);
146              
147             # init output command
148 167         555 my $command = undef;
149              
150             # append pre shell code, if specified
151 167 100       992 if ($specs->{pre}) {
152 45         2283 $specs->{pre} =~ s/(^\s+|\s+$)//g;
153 45 50       351 $command .= "echo 'PRE STARTING';" if $debug;
154 45         361 $command .= "$specs->{pre};";
155 45 50       369 $command .= "echo 'PRE FINISHED'; echo;" if $debug;
156             }
157              
158             # append perl shell code, if specified
159 167 50       1104 croak("missing perl key") if not $specs->{perl};
160 167         1385 ( my $perl = $specs->{perl} ) =~ s/'/'"'"'/g;
161 167         1284 $command .= "echo '$perl' | $^X - ";
162 167 100       1128 $command .= $specs->{args} if defined $specs->{args};
163 167 50 33     1127 $command .= " " . $specs->{debug} if $debug and defined $specs->{debug};
164 167         880 $command .= ";";
165              
166             # append post shell code, if specified
167 167 100       1037 if ($specs->{post}) {
168 20         158 $specs->{post} =~ s/(^\s+|\s+$)//g;
169 20 50       76 $command .= "echo; echo 'POST STARTING';" if $debug;
170 20         155 $command .= "$specs->{post};";
171 20 50       101 $command .= "echo 'POST FINISHED';" if $debug;
172             }
173              
174             # use subshell and redirection to capture all command output
175 167 50       1722 $command = "( echo; $command ) 2>&1" if $command;
176              
177             # finished _test_per_command, return command
178 167         984 return $command;
179             }
180              
181              
182              
183             # normal end of package
184             1;
185