In this section:
Configuring the Settings
Jtest DTP Engine can be configured with settings (see Configuration Settings) that should be specified in a .properties file. The basic settings are listed in the jtestcli.properties
file shipped in [INSTALL_DIR]. For your convenience, you can also store common settings in a jtestcli.properties
file in the $USER_HOME directory to overwrite settings stored in the properties file in the [INSTALL_DIR] directory.
You can also create a custom . properties file and pass it to the jtestcli
with the -settings switch. Use absolute paths to specify the custom .properties file.You can use the -settings
switch multiple times to specify several .properties files. Entries with the same key will be overwritten.
jtestcli -settings path/to/settings.properties -settings path/to/another/settings.properties
Settings Hierarchy
General settings are applied in the following order:
[INSTALL_DIR]/etc/jtestcli.properties
: the base configuration file that should not be modified.[INSTALL_DIR]/jtestcli.properties
: the main configuration file you can use to specify your settings that map contains templates for commonly used settings (license, reporting etc.).[USER_HOME]/jtestcli.properties
: for your convenience, you can store the configuration file in your home directory to overwrite settings from the [INSTALL_DIR] (for example, to ensure your settings are not affected by reinstallations or updates).[WORKING_DIR]/jtestcli.properties
: for your convenience, you can store the configuration file in your working directory.Custom settings passed with the command line switch
-settings path/to/settings.properties
(e.g.,-settings ../settings.properties
).Custom settings passed with the command line switch
-property [key=value].
All of the above settings can be overridden by custom settings that are passed with command line switches (e.g. You can provide the path to the settings file with Ant or Maven using the following pattern: If you use Maven, you can configure jtestcli settings with: Both See the Jtest Goal page in plugins-manual.html for the complete list of parameters. It is recommended that you keep all user-level customizations, including custom settings, license, rules, test configurations, compiler configurations, outside of the Jtest installation directory so they are not affected by reinstallations or updates.-report
, -config
).Ant and Maven Pattern
<settings>path/to/settings.properties</settings>
Settings Hierarchy for Maven
-Djtest.[Maven property name]
(e.g., -Djtest.settings="my.general.properties"
).pom.xml
file-Dproperty.jtest.[property name]
(e.g., -Dproperty.jtest.license.use_network=true
)-Djtest
and pom.xml
override settings that are passed with -Dproperty.jtest.
-Djtest
overrides settings in pom.xml
if they are provided as user properties. However, if a setting value is specified directly in pom.xml
, it has the highest priority and cannot be overridden by command line settings. For example, the test configuration specified in pom.xml
as a user property <config>${jtest.config}</config>
can be overridden with -Djtest.config
. If it is hardcoded as <config>builtin://Demo Configuration</config>
, itcannot be overridden.
Viewing Current Settings
Use the If you use Ant or Maven, you can use the following pattern to view the current settings:-showsettings
option to print the current settings and customizations, including the origin file for each configuration. Ant and Maven Pattern
<showsettings>true</showsettings>
The following table describes additional configuration files for setting up Jtest DTP Engine.JVM, Framework, and Application Setup
File Description Directory jtestcli.properties
Contains the default settings for the Jtest properties. [INSTALL_DIR] jtestcli.jvm
Contains JVM arguments that the jtestcli.exe
(jtestcli
) executable will use when starting Java processes.[INSTALL_DIR]/etc framework.properties
Contains properties that are passed to the launched Felix OSGI framework. There is typically no need to edit this file. [INSTALL_DIR]/etc formatting.properties
Contains formatting rules for the default Jtest properties. [INSTALL_DIR]/etc logging.xml
Logger configuration file; outputs a silent console by default and warn level on the jtest.log
file.[INSTALL_DIR]/etc logging.console.debug.xml
Logger configuration with debug level on the console output. [INSTALL_DIR]/etc