TAP::Formatter::JUnit具有tap2junit
将TAP 格式文本转换为 JUnit XML 的命令。您所要做的就是创建一个过滤器,它可以读取您的测试结果并将其转换为 TAP 格式,就像:
custom2tap.pl
#!/usr/bin/perl
use strict;
use warnings;
my @t;
while (my $line = <STDIN>) {
$line =~ s/\R//;
if (my ($msg, $result) = $line =~ /^(.*?)\s*(PASSED|FAILED)$/) {
if ($result eq 'PASSED') {
push @t, ['ok' => $msg];
}
elsif ($result eq 'FAILED') {
push @t, ['not ok' => $msg];
}
}
}
die "No test" if @t == 0;
printf "1..%d\n", scalar @t;
for my $i (0 .. $#t) {
printf "%s %d - %s\n", $t[$i]->[0], $i + 1, $t[$i]->[1];
}
1;
将测试结果保存为customtest.txt
then run cat customtest.txt | perl custom2tap.pl | tap2junit -
,您可以得到以下输出:
<testsuites>
<testsuite failures="1" errors="0" name="-" tests="3">
<testcase name="1 - abc.msg">
<failure message="not ok 1 - abc.msg"
type="TestFailed"><![CDATA[not ok 1 - abc.msg]]></failure>
</testcase>
<testcase name="2 - aa.msg"></testcase>
<testcase name="3 - bb.msg"></testcase>
<system-out><![CDATA[1..3
not ok 1 - abc.msg
ok 2 - aa.msg
ok 3 - bb.msg
]]></system-out>
<system-err></system-err>
</testsuite>
</testsuites>
视窗
安装Strawberry Perl,以便您可以使用cpan
命令。
TAP::Formatter::JUnit
从命令提示符安装:
> cpan -i TAP::Formatter::JUnit
跑type customtest.txt | perl custom2tap.pl | tap2junit -