1 回答
TA贡献1891条经验 获得超3个赞
您可以检查您的npm和newman命令的退出代码并将它们返回给调用进程:
public string Runner ()
{
var psiNpm = new ProcessStartInfo
{
FileName = "cmd",
RedirectStandardOutput = true,
RedirectStandardInput = true,
UseShellExecute = false
};
var pNpmRun = Process.Start(psiNpm);
pNpmRun.StandardInput.WriteLine("npm install -g newman");
pNpmRun.StandardInput.WriteLine("if not "%ERRORLEVEL%" == "0" exit 1");
pNpmRun.StandardInput.WriteLine("newman run " +
"\"C:\\Postman\\Test.postman.json\" " +
"--folder \"TestSearch\" " +
"--environment \"C:\\Postman\\postman_environment.json\" " +
"--disable-unicode");
pNpmRun.StandardInput.WriteLine("if not "%ERRORLEVEL%" == "0" exit 2");
pNpmRun.StandardInput.WriteLine("exit 0");
var tenMin = 10 * 60 * 1000;
if(pNpmRun.WaitForExit(tenMin)) {
var exitCode = pNpmRun.ExitCode;
if(exitCode != 0) {
throw new Exception("Command failed " + exitCode);
}
return pNpmRun.StandardOutput.ReadToEnd();
} else {
pNpmRun.Kill();
throw new TimeoutException("Command didn't complete in 10 minute timeout");
}
}
在每个命令之后检查errorlevel,这是一个“虚拟环境变量”,代表前一个命令的退出代码。如果它不是 0(通常是成功),那么它将退出cmd进程并返回到您的 C# 代码。您的 C# 代码检查ExitCode进程的状态,如果不成功 (0),它会抛出一个包含 ExitCode 的异常,以便您知道这两个命令中的哪一个失败了。这依赖于npm和newman进程在失败时返回非零退出代码。
那应该处理“失败”。处理“挂起”会更加困难。实际上没有任何方法可以知道该过程是否会返回(阅读:停止问题(我在大学学到的一件事))。
- 1 回答
- 0 关注
- 160 浏览
添加回答
举报