Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from space FUNCTDEV and version SVC2023.1

...

SettingPurpose
dtp.autoconfig=true|false

Enables auto-configuration using settings stored in DTP. This setting does not apply to the GUI and is ignored during import (see "-settings" or "-property" on the CLI Options page for more information about that process).

Default: false

dtp.enabled=true|false

Determines whether SOAtest or Virtualize is connected to DTP. 

Default: false

dtp.url=[url]Specifies the URL for the DTP server. Include the protocol and host name or IP address and, if appropriate, the port number and context path.
dtp.user=[username]Specifies the username for DTP user authentication.
dtp.password=[password]

Specifies the password for DTP user authentication.

We strongly recommend encoding your password to ensure successful authentication and a secure connection. You can encode your password by running a command line instance of SOAtest with the -encodepass flag. The command line tool will generate an encoded string that you can use in the configuration file. 

See CLI Options for additional information.

report.dtp.publish=trueEnables/disables publishing test result data to DTP.
dtp.project=[project_name]

Specifies the name of the DTP project that you want these results linked to. 

For more details on general projects, see Connecting to DTP.

Default: Default Project

Anchor
ApplicationCoverageSettings
ApplicationCoverageSettings
Application Coverage Settings

SettingPurpose
application.coverage.enabled=true|false

Specifies whether application coverage is enabled or not.

Default: false

application.coverage.agent.url=[url]

Specifies URLs where the applications under test and coverage agents are hosted. Include the protocol (HTTP/HTTPS) and port. Separate multiple entries with a semi-colon ( ; ).

Example: http\://<AGENT_HOST>\:8050;http\://<AGENT_HOST>\:9050

application.coverage.user.id=[username]

Specifies a user ID so that coverage results can be associated with a specific user. A user ID should only be specified when the coverage agent is configured to run in multi-user mode.

See the DTP Engine documentation for details.

application.coverage.dtp.publish=true|false

Specifies whether coverage reports should be uploaded to DTP. If you have configured multiple coverage agents, their coverage reports will be merged into a single coverage report for DTP.

Defaults to the value of report.dtp.publish or to true if -publish is passed to soatestcli.

application.coverage.binaries=[file|URL] Specifies the URL or local file that contains binaries of the application under test (AUT). You can specify the path to a folder or a .war, .jar, .zip, or .ear file. Optional. Not needed if the static coverage file is uploaded to DTP separately. Do not use if application.coverage.static.file has been specified.
application.coverage.binaries.exclude=[pattern]

Specifies a comma-separated pattern of binaries to exclude during AUT scanning. Optional. Analysis of binaries will take longer and analyze more of the application than needed if not used. Do not use if application.coverage.static.file has been specified. By default,

 all

all binaries are accepted. The following wildcards are supported:

* matches zero or more characters

Example: *HelpPage*

application.coverage.binaries.include=[pattern]

Specifies a comma-separated pattern of binaries to include during AUT scanning. Optional. Analysis of binaries will take longer and analyze more of the application than needed if not used. Do not use if application.coverage.static.file has been specified. By default,

 all

all binaries are accepted. The following wildcards are supported:

* matches zero or more characters

Example: *qademo_webapp*

application.coverage.static.file=[file|URL]

Specifies the URL or local file of the static coverage file generated with dotTEST or Jtest in the .xml or .data format. Optional. Not needed if the static coverage file is uploaded to DTP separately. Do not use if application.coverage.binaries has been specified.

See Creating a Custom Test Configuration for more information.

Example: static_coverage.xml

application.coverage.images=$[dtp_project]

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. Separate multiple entries with a semi-colon ( ; ).

For details, see the Parasoft DTP user guide.

Example: ${dtp_project};${dtp_project}_Functional Test

application.coverage.runtime.dir=[directory]Specifies a directory to which to save a copy of the runtime coverage data. If no directory is specified, runtime coverage data is not saved after processing. Optional.
application.coverage.test.associations=true|false

Enables the storing of test associations with runtime coverage data. If set to false, runtime coverage data will only record which lines are covered, but not which test cases are covering which lines.

Default: true

...