本主题介绍如何将 SOAtest 用作 Parasoft 应用程序覆盖率工作流程的一部分。有关使用应用程序覆盖率解决方案的完整信息,请参阅Collecting Coverage for Web Applications指南。章节目录:
Parasoft 应用程序覆盖率解决方案使您能够在对运行中的应用程序执行测试时测量应用程序代码覆盖率。您可以从单个运行中的应用程序或由多个后端服务组成的应用程序中收集覆盖率(可以在执行相同测试用例时从所有后端服务中收集覆盖率)。这样,您就能衡量现有测试套件的有效性,确定哪些地方需要添加额外的测试,并随着应用程序的开发更高效地执行测试。您可以利用用于 Java 或 dotNET 的 SOAtest 随附的覆盖率代理收集应用程序覆盖率,从而在执行测试期间监控应用程序。
收集静态和动态覆盖率数据并将其上传到 DTP 进行查看。
以下步骤描述了使用 SOAtest 的应用程序覆盖率工作流程:
SOAtest 2023.1 生成并上传到 DTP 的覆盖率报告需要发送给 DTP 2023.1。更早版本的 DTP 无法正确处理 SOAtest 2023.1 生成的覆盖率报告。 |
如果可以访问应用程序源代码,则应尽可能使用 Jtest 或 dotTEST 生成 .xml 或 .data 格式的静态覆盖率文件。这种方法有几个优点,包括包含有关用户类、方法和行的元数据,以及在 DTP 中查看覆盖率结果时支持显示有覆盖率数据注释的源代码。有关使用这些工具生成静态覆盖率文件的更多信息,请参阅 docs.parasoft.com 的 Jtest 或 dotTEST 用户指南。
您也可以使用 SOAtest 随附的覆盖率工具生成静态覆盖率文件,但会缺少上述使用源代码的优点。为此,您需要独立于 SOAtest 运行该工具,并在运行时传递二进制文件、过滤器、许可证和其他属性(请参阅下面的许可证属性文件示例)。使用 Jtest 覆盖率工具(jtestcov)对 Parabank 进行测试的示例如下:
java -jar jtestcov.jar -soatest -app c:/<PATH_TO_APPLICATION>/parabank.war -include com/parasoft/parabank/parasoft/** -settings c:/<PATH_TO_LICENSE_FILE>/license.properties |
覆盖率工具使用 |
# === LICENSE === # === END USER LICENSE AGREEMENT === # Set to true to accept the Parasoft End User License Agreement (EULA). # Please review the EULA.txt file included in the product installation directory. #parasoft.eula.accepted=false # === LOCAL LICENSE === # Enables local license - be sure to specify password. #jtest.license.use_network=false # Specifies password for the local license. #jtest.license.local.password=[LICENSE PASSWORD] # === NETWORK LICENSE === # Enables network license - be sure to configure DTP server settings. #jtest.license.use_network=true # Specifies type of the network license (edition). # Supported editions: desktop_edition, desktop_compliance_edition, server_edition, server_compliance_edition #jtest.license.network.edition=server_edition # Enables specific list of license features #jtest.license.network.edition=custom_edition #jtest.license.custom_edition_features=Jtest, Automation, Desktop Command Line, DTP Publish, Coverage, Test Impact Analysis # === DTP SERVER SETTINGS === # Specifies URL of the DTP server in the form https://host[:port][/context-path] #dtp.url=https://localhost:8443 # Specifies user name for DTP server authentication. #dtp.user=admin # Specifies password for DTP server authentication - use jtestcli -encodepass <PASSWORD> to encode the password, if needed. #dtp.password=admin # Specifies name of the DTP project - this settings is optional. #dtp.project=[DTP Project Name] # === DTP REPORTING === # Enables reporting test results to DTP server - be sure to configure DTP server settings. #report.dtp.publish=true # Specifies a build identifier used to label results. It may be unique for each build # but may also label more than one test sessions that were executed during a specified build. #build.id=${dtp_project}-yyyy-MM-dd # Specifies a tag which represents an unique identifier for the run, used to distinguish it from similar runs. # It could be constructed as minimal combination of following variables that will make it unique or specified manually. # e.g. ${config_name}-${project_module}-${scontrol_branch}-${exec_env} #session.tag=[tag] # Specifies a set of tags that will be used to create coverage images in DTP server. # Coverage images allow you to track different types of coverage, such as coverage for unit, functional, manual tests and others. # There is a set of predefined tags that will be automatically recognized by DTP, see the examples below. # You can also specify other tags that will be used to create coverage images. #report.coverage.images=${dtp_project} #report.coverage.images=${dtp_project};${dtp_project}_Unit Test #report.coverage.images=${dtp_project};${dtp_project}_Functional Test #report.coverage.images=${dtp_project};${dtp_project}_Manual Test # === CONSOLE VERBOSITY LEVEL === # Increases console verbosity level to high. #console.verbosity.level=high |
在开始使用 SOAtest 收集覆盖率信息前,您需要通过 Parasoft dotTEST 或 Parasoft Jtest 配置被测应用程序(AUT)。下面的内容概述了这一过程;有关更详细的说明,请参阅 docs.parasoft.com 的 Jtest 或 dotTEST 用户指南。请确保 SOAtest、dotTest 和 JTest 版本同步,以避免出现意外问题。
应用程序服务器通常包含多个应用程序。此外,不需要检测通用服务器类或应用程序库。代理仅需要收集应用程序源代码的覆盖率。对所有类进行检测将非常耗时。因此正确设置覆盖代理的范围非常重要。Jtest 和 dotTEST 均有覆盖率代理。
您可以通过修改 agent.properties 中的属性并将这些属性传递给 -javaagent
参数来配置 Jtest 覆盖率代理。该代理支持多个参数(请参阅Coverage Agent Parameters),但是配置默认设置适用于大多数情况:
jtest.agent.serverEnabled=true jtest.agent.includes=com/myapp/data,com/myapp/common/** jtest.agent.excludes=com/myapp/transport/*,com/myapp/autogen/** |
下表描述了可以为代理设置的所有属性:
jtest.agent.runtimeData | 指定应用程序在服务器上的位置,代理用于存储它在运行时收集的覆盖数据。 |
---|---|
jtest.agent.includes | 以逗号分隔的模式列表,用于指定要检测的类。支持以下通配符:
在以下示例中,将检测
|
jtest.agent.excludes | 以逗号分隔的模式列表,用于指定要从检测中排除的类。支持以下通配符:
在以下示例中,将检测
|
jtest.agent.autostart | 启用/禁用自动运行时数据收集;默认为 true 。 |
jtest.agent.port | 设置代理通讯端口;默认值为8050 。 |
jtest.agent.debug | 启用/禁用向控制台的详细输出;默认为 false 。 |
jtest.agent.enableMultiuserCoverage | 启用/禁用收集多个用户的 Web 应用程序覆盖率;默认为 |
jtest.agent.serverEnabled | 激活代理。 |
jtest.agent.enableJacoco | 让代理使用 JaCoCo 引擎收集覆盖率信息;默认为 false 。 |
配置属性后,在启动应用程序服务器以附加代理并包含代理配置文件时添加 -javaagent
参数:
-javaagent:'/path/to/agent.jar'=settings='/path/to/agent.properties',runtimeData='/path/to/runtime_coverage' |
为方便起见,覆盖率目录包含一个将生成-javaagent
参数的脚本。运行 agent.sh 或 agent.bat 脚本,然后将输出复制到服务器启动脚本中。
$ ./agent.sh 将此 Java VM args 添加到您的进程中: --------------------------------------------------- -javaagent:"/home/TIA/test_impact_analysis/integration/coverage/agent.jar"=settings="/home/TIA/test_impact_analysis/integration/coverage/agent.properties",runtimeData="/home/TIA/test_impact_analysis/integration/coverage/runtime_coverage" --------------------------------------------------- Press any key to continue ... |
在以下示例中,该代理通过 catalina.sh(Linux)或 catalina.bat(Windows)脚本开头的 JAVA_OPTS 变量连接到 Tomcat 服务器:
if [ "$1" = "start" -o "$1" = "run" ]; then JAVA_OPTS='-javaagent:"/home/TIA/test_impact_analysis/integration/coverage/agent.jar"=settings="/home/TIA/test_impact_analysis/integration/coverage/agent.properties",runtimeData="/home/TIA/coverage_storage"' fi |
if "%1"=="stop" goto skip_instrumentation set JAVA_OPTS=-javaagent:"C:\TIA\test_impact_analysis\integration\coverage\agent.jar"=settings="C:\TIA\test_impact_analysis\integration\coverage\agent.properties",runtimeData="C:\TIA\coverage_storage" :skip_instrumentation |
启动应用程序并通过在浏览器中打开 <host>:8050/status
来验证代理已经准备好了。您将看到一个包含 test、runtime_coverage 和 testCase 属性的 JSON 对象,例如:
{"test":null,"session":"runtime_coverage_20191008_1537_0","testCase":null} |
您还可以使用 runtimeData 属性检查(在上面的示例中为 /home/TIA/coverage_storage
)指定的目录。该目录应包含一组静态覆盖数据文件。文件在代理启动时生成。
dotTEST 覆盖率代理可收集 web 应用程序和独立应用程序的覆盖率。两种应用程序需要进行不同的配置。
被测应用程序(AUT)必须在使用 IIS 7.5 或更高版本的机器上运行。
关联覆盖率代理和 AUT:
<INSTALL_DIR>/coverage/dotNET/dottest_agent
文件夹复制到安装 IIS 和部署 wen 应用程序的机器上。在机器上调用代理客户端工具,在 IIS 内启用运行时覆盖率收集:
agent_client.exe |
agent_client 初始化 web 服务器(IIS)的环境并像服务一样运行,使您能够执行测试并收集覆盖率。只要输出端打印出以下信息,即表示服务已准备就绪,等待命令:
Write 'exit' and hit Enter to close agent_client |
即使尚未加载被测网站或应用程序,也可启动测试会话和测试。 |
启动应用程序并通过在浏览器中打开 <host>:8050/status
来验证代理已经准备好了。您将收到以下响应:
{"session":null,"test":null} |
配置 soatest.properties 以手机 AUT 的覆盖率。支持多个应用覆盖率参数(请参阅应用覆盖率设置),但配置以下设置适用于大多数情况:
application.coverage.enabled=true application.coverage.agent.url=http://localhost:8050 application.coverage.binaries=c:/<PATH_TO_APPLICATION_PDB_FILES>/bin application.coverage.binaries.include=<INCLUDE_PATTERN> application.coverage.binaries.exclude=<EXCLUDE_PATTERN> |
请确保应用程序二进制文件的路径指向包含应用程序 PDB 文件的文件夹。
独立应用程序
大多数用户会收集 web 应用程序的覆盖率,但也可以收集独立应用程序的覆盖率信息。
<INSTALL_DIR>/coverage/dotNET/dottest_agent
文件夹复制到您打算用来运行独立应用程序的计算机上。配置 soatest.properties 以手机 AUT 的覆盖率。支持多个应用覆盖率参数(请参阅应用覆盖率设置),但配置以下设置适用于大多数情况:
application.coverage.enabled=true application.coverage.agent.url=http://localhost:8050 application.coverage.binaries=c:/<PATH_TO_APPLICATION_PDB_FILES>/bin application.coverage.binaries.include=<INCLUDE_PATTERN> application.coverage.binaries.exclude=<EXCLUDE_PATTERN> |
请确保应用程序二进制文件的路径指向包含应用程序 PDB 文件的文件夹。
通过正确的配置,SOAtest 将在测试执行期间收集应用程序覆盖率。要收集覆盖率,请在 SOAtest 设置文件(请参阅配置设置)中酌情配置以下选项:
true
可将测试结果数据发布到 DTP。true
。将启用应用覆盖率。http\://<Agent Host>\:8050;http\://<Agent Host>\:9050
。jtest.agent.enableMultiuserCoverage
。true
可将覆盖率报告上传至 DTP,设置为 false
则不将覆盖率报告上传至 DTP。如果配置了多个覆盖率代理,它们的覆盖率报告将合并为一份 DTP 覆盖率报告。如果 -publish
传递给 soatestcli,则默认为 report.dtp.publish
(请参阅配置设置)的值或 true
。application.coverage.static.file
,则不应使用。application.coverage.binaries.include
,二进制文件的分析时间会更长,对应用程序的分析也会超出需要。如果指定了 application.coverage.static.file
,则不应使用。默认情况下,接受所有二进制文件。例如,application.coverage.binaries.exclude=jakarta/**,java/**,javax/**,org/apache/**,org/springframework/**
application.coverage.binaries.exclude
,二进制文件的分析时间会更长,对应用程序的分析也会超出需要。指定以逗号分隔的应用程序二进制文件形式,以便在 AUT 扫描期间将其包含在内。如果指定了 application.coverage.static.file
,则不应使用。默认情况下,接受所有二进制文件。例如,application.coverage.binaries.include=com/myapp/data/*,com/myapp/common/**
application.coverage.binaries
,则不应使用。${dtp_project};${dtp_project}_Functional Test
。使用配置的测试配置和设置文件,在命令行模式下运行测试(请参阅Configuring SOAtest to Collect and Upload Coverage)。此步骤应为自动化过程的一部分。覆盖率数据将在测试执行时收集,如果启用了发布到 DTP 功能,则上传到 DTP。
前往 DTP 并打开覆盖率浏览器,查看 SOAtest 测试实现的应用程序覆盖率。 有关使用覆盖率浏览器的详细信息,请参阅 https://docs.parasoft.com 中的 Parasoft DTP 用户指南。