我可以从 Maven/Hudson 自动调用 QTP 测试套件吗?
我们需要将 QTP 与 Hudson 集成,以针对 Hudson 中部署的代码自动调用测试套件。构建过程基于 Maven。
有没有什么插件或者什么东西可以实现这个?我们听说过 Hudson 的 Groovy 插件;我们可以用 Groovy 脚本来执行它吗?
We need to integrate QTP with Hudson to automatically invoke test suites against the code deployed in Hudson. The build process is based on Maven.
Is there any plugin or something to achieve this? We heard about the Groovy plugin for Hudson; Can we execute it with a Groovy script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
Hudson 不运行测试,它获取输出并生成一份不错的报告。您应该了解如何让 Maven 运行测试,然后让 Hudson 获取输出以生成报告。
Hudson does not run tests, it takes the output and generates a nice report. You should look at how to make Maven run the tests, and then have Hudson pick up the output to generate a report.
正如 Michael 所说,这是 Maven 集成问题,而不是 Hudson 问题。我不知道 QTP 的 Maven 插件,但你可以使用 exec-maven-插件 调用任意可执行文件,并为该可执行文件提供参数。 QTP 提供了一个“自动化”API,您应该能够相当轻松地将其包装在脚本中。它不会是一个巧妙的集成,但可能会满足您的目的。
以下是您可以使用的配置示例:
上一个问题的答案从 Ant 调用 QTP 是编写自动化集成的一个很好的起点。
更新:
这是一种可能适合您的方法。看来您可以直接调用 QTP 服务器,传递您想要执行的测试的名称。因此,您可以使用 antrun 插件 来调用 url 并将输出定向到目标目录。修改 url 和测试名称以匹配您的环境,并且应调用 QTP 并将结果放置在 target/qtp/results.html 中。这假设您有一个可以调用的测试来执行 QTP 中所需的所有操作。
As Michael says, this is a Maven integration issue not a Hudson one. I don't know of a Maven plugin for QTP, but you can use the exec-maven-plugin to invoke an arbitrary executable, and provide arguments to that executable. QTP provides an "Automation" API that you should be able to wrap in a script fairly easily. It won't be a slick integration but may serve your purposes.
Here's an example of the configuration you could use:
An answer to a previous question on invoking QTP from Ant is a good starting point for writing the Automation integration.
Update:
Here's an approach that may work for you. It appears that you can directly invoke the QTP server, passing the name of the test you want executing. So you can use the antrun plugin to invoke the url and direct the output to a target directory. Modify the url and test name to match your environment and QTP should be invoked and the results placed in target/qtp/results.html. This assumes that you have a single test you can invoke to do everything you need to in QTP.
我们通过 VBScript、JScript 和 RunTestSet 实用程序以 3 种方式实现了这种集成。在POM中,我们需要这样指定。
使用 RunTestSet,
问候,
拉姆亚。
We have implemented this integration in 3 ways, using VBScript,JScript and RunTestSet utility. In POM, we need to specify like this.
Using RunTestSet,
Regards,
Ramya.
您可以尝试 Jenkins 的质量中心插件:https://wiki.jenkins- ci.org/display/JENKINS/Quality+Center+Plugin
You can try Quality Center Plugin for Jenkins : https://wiki.jenkins-ci.org/display/JENKINS/Quality+Center+Plugin
我一直在使用这个
我直接调用的vbscript
I've been using this vbscript
which I call directly