如何使用Perl将生成的文本文件转换为Junit格式(XML)

时间:2018-10-23 15:56:53

标签: xml perl text junit perlscript

enter image description here如何使用Perl将生成的文本文件转换为Junit格式(XML)

我生成了一个文本文件,其格式为:

Tests started on Fri Oct 19 14:11:35 2018

Test File    Comparison Result

========= =================

abc.msg    FAILED

aa.msg     PASSED

bb.msg     TO BE VALIDATED

Tests finished on Fri Oct 19 14:12:01 2018

预期的JUnit格式:

请在附件中找到预期的xml格式

我想在使用Perl脚本从Perl脚本生成上述文本文件后将其转换为XML文件。

任何帮助将不胜感激。在此先感谢!

enter image description here

1 个答案:

答案 0 :(得分:2)

TAP::Formatter::JUnit具有tap2junit命令将TAP format文本转换为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,然后运行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>

Windows

安装Strawberry Perl,以便可以使用cpan命令。

从命令提示符安装TAP::Formatter::JUnit

> cpan -i TAP::Formatter::JUnit

运行type customtest.txt | perl custom2tap.pl | tap2junit -

enter image description here