X-Git-Url: http://git.shiar.nl/barcat.git/blobdiff_plain/0566f06dfdda0b0f4bf8d5046f1c6763ba3cc7a3..ed5e66a9d56a0aa112a81e10af214150a30eb019:/t/examples.t diff --git a/t/examples.t b/t/examples.t index cdf77f9..0f313ec 100755 --- a/t/examples.t +++ b/t/examples.t @@ -11,8 +11,10 @@ use Test::More; } my %CMDARGS = ( - ping => '-c 1', + ping => '-c 1 ', 'cat \Khttpd/' => '/var/log/apache2/', + ' \K\*(?=\h*\|)' => 'sample/media/*.*', + find => 'sample/media -name \*.\* ', ); my $filename = 'barcat'; @@ -21,6 +23,7 @@ open my $input, '<', $filename local $/ = "\n\n"; while (readline $input) { +SKIP: { # find scriptlets in the appropriate section /^=head1 EXAMPLES/ ... /^=head1/ or next; /^\h/ or next; # indented code snippet @@ -30,9 +33,10 @@ while (readline $input) { my $ref = "$filename line $."; # store curl downloads - s{\bcurl (\S*)(?[^|]*)}{ - my $url = $1; - my @params = split ' ', $+{param}; + $cmd =~ s{\bcurl (\S*)([^|]*)}{ + my ($url, $params) = ($1, $2); + my $cache = 'sample/data/'; + -w $cache or skip($url, 2); my $ext = ( $cmd =~ /\bxml/ ? 'xml' : $cmd =~ / jq / ? 'json' : @@ -41,13 +45,15 @@ while (readline $input) { ); my ($domain, $path) = $url =~ m{//([^/]+) .*/ ([^/]*) \z}x; $path =~ s/\.$ext\z//; - my $cache = join '.', $path =~ tr/./_/r, $domain, $ext; - $cache = "sample/data/$cache"; + $cache .= join '.', $path =~ tr/./_/r, $domain, $ext; + my $cached = -e $cache; SKIP: { - -e $cache and skip($url, 1); - ok(defined runres(['curl', '-sS', $url, '-o', $cache, @params]), $url) - or diag("download at $ref: $@"); + # download to file + skip($url, 1) if $cached; + $cached = defined runres("curl -sSf $url$params -o $cache"); + ok($cached, $url) or diag("download at $ref: $@"); } + $cached or skip($url, 1); "cat $cache" }e; @@ -64,15 +70,28 @@ while (readline $input) { # prepare shell command to execute while (my ($subcmd, $args) = each %CMDARGS) { - $subcmd .= " \\K", $args .= ' ' unless $subcmd =~ m/\\K/; - $cmd =~ s/\b$subcmd/$args/; + $subcmd .= " \\K" unless $subcmd =~ m/\\K/; + $cmd =~ s/$subcmd/$args/; + } + + for my $param ($cmd =~ m{^[(\h]* (\w\S*)}gx) { + $param eq 'cat' or + runres(['which', $param]) + or diag("dependency $param missing at $ref\n$cmd"), skip($name, 1); } # run and report unexpected results my $output = runres($cmd); ok(!!$output, $name) or diag("command at $ref\n$cmd\n" . ($@ || 'empty output')); -} + defined $output or next; + + # record output for review + my $numprefix = sprintf '%02d', Test::More->builder->current_test; + if (open my $record, '>', "sample/out/t$numprefix-$name.txt") { + print {$record} $output; + } +}} sub runres { my ($cmd) = @_;