In this section:
You can monitor and collect coverage data from managed code during manual or automated functional tests performed on a running web application that is deployed on IIS server. You can also send coverage data and test results to DTP. The application coverage information can be displayed in the DTP Coverage Explorer (see the "Coverage Explorer" chapter in the DTP user manual), which provides insights about how well the application is tested, as well as the quality of your tests.
dotTEST can collect coverage for .NET Core and .NET web applications that are deployed on IIS server. Alternatively, you can use the |
The following components are required for collecting coverage:
dotTEST ships with a component called the coverage agent. The coverage agent is attached to the application under test (AUT) and monitors the code being executed as the AUT runs. When the coverage agent is attached to the AUT, a REST API is exposed that enables you to mark the beginning and end of each test and test session. During test execution, interactions with the coverage agent and AUT are written to a dynamic coverage data file, which contains markers that specify which lines of code were touched.
The steps that follow:
Test results are also sent to DTP from the tool that executes the tests (i.e., SOAtest, tests executed by dotTEST, manual tests, etc.) in a report.xml file. If the build IDs for the coverage.xml file and the report match, DTP is able to correlate the data and display the coverage information.
If you use a source control system, ensure that your source control settings are properly configured; see Source Control Settings. |
The following steps are required to prepare the application under test (AUT):
Run the following test configuration on the solution:
dottestcli.exe -config "builtin://Collect Static Coverage" -solution SOLUTION_PATH |
The dottestcli console output indicates where the static coverage data is saved, for example:
Saving static coverage information into: 'C:\Users\[USER]\Documents\Parasoft\dotTEST\Coverage\Static\[FILE].data |
By default, coverage is measured for the entire application. To narrow down the scope of collecting static coverage:
Provide paths to the selected parts of the application with the -solution,
-resource
, -include
, and/or -exclude
options. The -resource
option points to a path inside the solution; the -include
and -exclud
e options specify paths in the file system (see Configuring the Test Scope for details). Your command line may resemble the following:
dottestcli.exe -config "builtin://Collect Static Coverage" -solution "C:\Devel\FooSolution\FooSolution.sln" -resource "FooSolution/QuxProject" -include "C:\Devel\FooSolution\src\QuxProject\**\*.cs" -exclude "C:\Devel\FooSolution\src\QuxProject\**\tests\**\*.cs" |
When static coverage is generated, the scope information is stored in a scope configuration file. The output from the console indicates the location of the scope configuration file, for example:
Saving static coverage scope configuration into: 'C:\Users\[USER]\Documents\Parasoft\dotTEST\Coverage\Static\scope.instrumentation.txt' |
Pass the path to the scope configuration file to the dotTEST IIS Manager tool (see Attaching the Coverage Agent to the AUT) with the -scope
option, for example:
dottest_iismanager.exe -scope 'C:\Users\[USER]\Documents\Parasoft\dotTEST\Coverage\Static\scope.instrumentation.txt' |
You don' need to modify the content of the scope configuration file. However, if you collect coverage for large applications, you may want to additionally fine-tune the scope for collecting dynamic coverage (i.e. coverage collected while interacting with the application under test) to optimize performance. To customize collecting dynamic coverage, open the scope.instumentation.txt file and remove the the assemblies for which you do not want to collect coverage data from the list of assemblies.
It is not possible to use the application coverage scope file for web projects that are compiled on IIS. This is because the target assemblies of IIS compilations are named unpredictably. Scope files can be used safely when the assembly name loaded by IIS can be predetermined before coverage collection starts. |
Invoke the dotTEST IIS Manager tool on this machine to enable runtime coverage collection inside IIS:
dottest_iismanager.exe |
You may need to configure the dotTEST IIS Manager with additional options, see IIS Manager Options.
dottest_iismanager initializes the environment for the web server (IIS) and behaves like a service, enabling you to execute tests and collect coverage. The service is ready and waiting for commands as long as the following message is printed to the output:
Write 'exit' and hit Enter to close dottest_iismanager |
A test session and test can be started even if the tested website or application has not been loaded yet. |
Go to the following address to check the status of the coverage agent: http://host:8050/status
You should receive the following response:
{"session":null,"test":null} |
By default, the coverage agent is available via the HTTP protocol. To connect via HTTPS, you need to bind an SSL certificate to the port used by the coverage agent. This can be achieved in one of the following ways:
By adding your SSL certificate to a storage accessible from the Netsh.exe tool and passing the hash of the certificate and the port number to dottest_iismanager.exe:
dottest_iismanager.exe -port 8050 -useSsl -certificateHash <SSL certificate hash> |
By passing the path and password to an SSL certificate stored in a .pfx file and the port number to dottest_iismanager.exe:
dottest_iismanager.exe -port 8050 -useSsl -certificatePath <path to PFX> -certificatePassword <password> |
By configuring a port with an SSL certificate and the appid
of the dotTEST IIS Manager for the Netsh.exe tool. The dotTEST IIS Manager has the following ID:
{ed344e08-fab7-4dfb-9d07-68f2c2c9e373} |
When the SSL certificate is configured in the Netsh.exe tool, you can connect via HTTPS by launching the dotTEST IIS Manager with the -port
and -useSsl
switches:
dottest_iismanager.exe -port 8050 -useSsl |
To use a self-signed certificate, you must add the -skipvalidation
option.
You can use an SSL certificate in the in PFX or PKCS12 format.
By default, the dotTEST IIS Manager automatically handles certificates configured for the coverage agent. To manually remove a certificate, launch the Certmgr.exe tool and remove the certificate stored in Personal> Certificates.
If you manually unregister the coverage service port using the dotTEST IIS Manager with the -unregister
switch, you need to add the -useSsl
and -removeCertificate
switches to remove the SLL certificate:
dottest_iismanager.exe -unregister -port 8050 -useSsl -removeCertificate |
This will delete the SSL certificate from the port number. You can now manually remove the certificate from the storage.
You can collect coverage information for multiple users that are simultaneously accessing the same web application server. This requires launching the dotTEST IIS Manager with the -multiuser
switch:
dottest_iismanager.exe -multiuser |
See the Coverage Agent Manager (CAM) section of the DTP documentation for details.
By default, IIS application pool processes are recycled after 20 minutes of idle time, which can have negative consequences on a test session. You can prevent this behavior by changing the default value so that people working with the application do not experience unexpected stops and restarts during a test session.
Option | Value | Description | |
---|---|---|---|
-scope | <path> | A path to the scope configuration file. Required if the scope is other than the default; see Customizing Scope of Coverage. | |
-agentTimeout | <miliseconds> | Specifies the timeout for connection with the coverage agent. Adjust the timeout to your machine capabilities. The default value is 1500 ms.
| |
-port | <port number> | Specifies the port number when you start dottest_iismanager if the default port is unavailable. | |
-multiuser | Enables collecting coverage information for multiple users; see Collecting Coverage from Multiple Users. | ||
-useSsl | Enables connecting via HTTPS; see Connecting with the the Coverage Agent via HTTPS. | ||
-certificateHash | <SSL certificate hash> | Specifies the hash of the SSL certificate for the port that is used by the coverage agent; see Connecting with the Coverage Agent via HTTPS. | |
-certificatePath | <path> | Specifies the path to a PFX file that stores the SSL certificate; Connecting with the Coverage Agent via HTTPS. | |
-certificatePassword | <password> | Specifies the password to the SSL certificate stored in a PFX file; see Connecting with the Coverage Agent via HTTPS. | |
-displayappid | Prints the 'appid' of the dotTEST IIS Manager; see Connecting with the Coverage Agent via HTTPS. | ||
-removeCertificate | Removes the SSL certificate when the port is manually unregistered with the -unregister switch; see Connecting with the Coverage Agent via HTTPS. | ||
-skipvalidation | Enables using a self-signed SSL certificate; see Connecting with the Coverage Agent via HTTPS. |
You can use SOAtest to run functional tests, as well as execute manual tests with Coverage Agent Manager (CAM). Refer to the SOAtest user guide or CAM documentation for details about performing test sessions.
When tests are being performed:
If you use dotTEST with CAM:
If you use dotTEST with SOAtest, test results are automatically sent to DTP during test execution. See the Application Coverage section in the SOAtest user guide at https://docs.parasoft.com.
If you use dotTEST with CAM:
report.coverage.images
- Specifies a set of tags that are used to create coverage images in DTP. A coverage image is a unique identifier for aggregating coverage data from runs with the same build ID. DTP supports up to three coverage images per report.session.tag
- Specifies a unique identifier for the test run and is used to distinguish different runs on the same build.build.id
- Specifies a build identifier used to label results. It may be unique for each build, but it may also label several test sessions executed during a specified build.Copy the runtime coverage and static coverage files to the same machine and run dottestcli
with the following switches:
-runtimeCoverage
: Specifies the path to runtime coverage that you download with CAM (see Coverage Agent Manager (CAM) section of the DTP documentation for details). You can provide a path to an individual .data file with coverage information from one testing session, or a path to a folder that contains many .data files from multiple testing sessions.-staticCoverage
: Specifies the path to the static coverage file (see Generating the Static Coverage File).-publish
: Sends the merged coverage to DTP.dottestcli.exe -runtimeCoverage [path] -publish -staticCoverage [path] |
If you use dotTEST with SOAtest, static and dynamic coverage data are merged and sent to DTP during test execution. See the Application Coverage section in the SOAtest user guide at https://docs.parasoft.com.
You can stop the process of collecting dynamic coverage data in one of the following ways:
Write exit
in the open console when the following message will be printed to the output to stop dottest_iismanager:
Write 'exit' and hit Enter to close dottest_iismanager |
Send a request to the service by entering the following URL in the browser: http://host:port/shutdown
Stop dottest_iismanager only when all test sessions are finished. Application coverage will no longer be collected when the service stops, so it is important that dottest_iismanager runs continously while performing tests to collect coverage. |
If any errors occur when dottest_iismanager exits, which prevent the clean-up of the Web Server environment, then execute dottest_iismanager with the -stop
option to bring back the original Web Server environment and settings:
dottest_iismanager.exe -stop |
You can use the Coverage Explorer in DTP to review the application coverage achieved during test execution. For details on viewing coverage information, see the DTP user guide at https://docs.parasoft.com.