0

我有一个 PowerShell 脚本,可以使用 Microsoft 测试管理器的命令行界面 (tcm.exe) 启动自动测试运行。

然后我还有一个与测试运行关联的清理 Powershell 脚本(在 .testsettings 文件中),它导出测试结果(tcm.exe run /export),但我的问题是我需要测试运行 ID。它是 'tcm.exe run /create' 命令的输出,但它没有用,因为首先它输出为“Run created with ID: 501”,其次是因为 /create 命令是从单独的 PowerShell 脚本。

我可以使用 tcm.exe run /list 来获取所有测试 ID 的列表,但这没用,因为我只需要最近一次的测试运行。

任何想法,任何人?

4

1 回答 1

0
"Microsoft Test Manager : Start automated sanity test"
$testRunID = & "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\TCM.exe" run /create /title:"Automated UI Tests" /planid:27 /suiteid:721 /configid:10 /settingsname:"UI Test Settings" /testenvironment:"MyTestEnvironment" /collection:"http://MyCollection" /teamproject:Main /builddir:"C:\MyBuildDir" /include

"Get test run ID from TCM output"
$testRunID = $testRunID.substring(21)
$testRunID = $testRunID.TrimEnd(".")

"Store test run ID in user environment variable"
[Environment]::SetEnvironmentVariable("CodedUITestRunID", "$testRunID", "User")

这是我的解决方案。我将 tcm.exe run /create 的输出存储到 $testRunID 中,然后删除字符串的开头,“使用 ID 创建运行:”,然后删除字符串末尾的句号,这让我仅包含测试 ID 号,我使用 .NET 代码将其设置为环境变量(请参见此处)。

后来,我有一个计划任务,假设测试运行已经完成,并运行一个包含(除其他外)以下内容的脚本:

"Test Run ID"
$testRunID = [Environment]::GetEnvironmentVariable("CodedUITestRunID", "User")

"Microsoft Test Manager: Export test results"
& "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\TCM.exe" run /export /id:"$testRunID" /resultsfile:"C:\ResultsPath\MyResultsfile.trx" /collection:"http://MyCollection" /teamproject:"Main"

这只是从我之前设置的环境变量中检索测试运行 ID,然后运行 ​​Microsoft 测试管理器命令行实用程序 (tcm.exe) 的 /export 命令,输入测试运行 ID。

于 2012-08-07T08:06:26.233 回答