我们目前正在使用FitNesse进行自动化测试。我正在使用VSTS将其集成到我们的构建中,并且需要发布测试结果。
FitNesse测试结果保存在xml中,需要转换为VSTS可以理解的JUnit格式。理想情况下,我想使用一个powershell脚本,它将使JUnit转换成为可能。
之前是否有人这样做过或者有一个示例脚本要转换为JUnit格式。
非常感谢
答案 0 :(得分:0)
可能在这里误解了一些事情,但是: http://www.fitnesse.org/FitNesse.UserGuide.AdministeringFitNesse.RestfulServices
<强>应答者强>
format=junit Produces simple jUnit XML format
答案 1 :(得分:0)
感谢帮助人员。我们最终创建了自己的PowerShell脚本,以获取类名,套件和失败类型。如果有人想使用,请在下面发布。
param([string]$outpath, [string]$testserver, [string]$suitename)
$uri = "http://" + $testserver + "/" + $suitename + "?suite&format=xml"
$resultString = Invoke-WebRequest -Uri $uri
$xml = New-Object xml
$xml.LoadXml($resultString)
$tests = @{}
foreach($result in $xml.testResults.result)
{
$pageName = $result.pageHistoryLink.Substring(0, $result.pageHistoryLink.IndexOf("?"))
foreach ($ir in $result.instructions.instructionResult)
{
$i =$ir.instruction.Replace("=",":")
$argsloc = $i.LastIndexOf(', args:')
if ($argsloc -gt 0)
{
$i=$i.Substring(0, $argsloc) + "}"
}
$instr =convertFrom-Json $i
if ($instr.instruction -eq "import")
{
continue
}
if ($instr.instruction -eq "make")
{
$t=New-Object psobject
$classname = $pagename + "." + $instr.className
Add-Member -InputObject $t -MemberType NoteProperty -Name className -Value $classname
Add-Member -InputObject $t -MemberType NoteProperty -Name scenarios -Value @{}
$tests.add($pagename + "." + $instr.instanceName, $t)
}
if ($instr.instruction -eq "call")
{
$t=$tests[$pagename + "." + $instr.instanceName]
if (-not($t.scenarios.ContainsKey($ir.expectation.row)))
{
$s=New-Object psobject
Add-Member -InputObject $s -MemberType NoteProperty -Name pass -Value $true
Add-Member -InputObject $s -MemberType NoteProperty -Name failures -Value @()
$t.scenarios.add($ir.expectation.row, $s)
}
if ($ir.expectation.status -eq $null)
{
continue
}
if ($ir.expectation.status -eq "pass")
{
continue
}
$LASTEXITCODE = 1
$scenario = $t.scenarios[$ir.expectation.row]
$scenario.pass =$false
$scenario.failures += ("Method Name: "+ $instr.methodName + " - Expected: " + $ir.expectation.expected + ", Actual: " + $ir.expectation.actual)
}
}
}
$doc = New-Object System.Xml.XmlDocument
$suites = $doc.CreateElement("testsuites")
$res=$doc.AppendChild($suites)
$ts = $doc.CreateElement("testsuite")
$res=$suites.AppendChild($ts)
foreach ($testkey in $tests.Keys)
{
$test = $tests[$testkey]
$test
foreach ($scenariokey in $test.scenarios.Keys)
{
$scenario =$test.scenarios[$scenariokey]
$tc = $doc.CreateElement("testcase")
$attr=$doc.CreateAttribute("classname")
$res=$attr.Value= $test.className
$res=$tc.Attributes.Append($attr)
$attr=$doc.CreateAttribute("name")
$res=$attr.Value= $test.className
$res=$tc.Attributes.Append($attr)
if (-not($scenario.pass))
{
$errString = [string]::Join(": ", $scenario.failures)
$scenario.failures.GetType()
$fail = $doc.CreateElement("failure")
$attr=$doc.CreateAttribute("message")
$res=$attr.Value= $errString
$res=$fail.Attributes.Append($attr)
#$fail.innertext = $errString
$res=$tc.AppendChild($fail)
}
$res=$ts.AppendChild($tc)
}
}
$doc.Save($outpath)