Command line interface
In this section, you will learn all the actions from the graphical user interface can also be performed from the command line.
These actions include:
- Record a script
- Compile a script
- Play back a script, passing command-line arguments to the script
- View and edit verification point and object map files
- Invoke the Java/HTML enabler
- Invoke the Application Configuration Tool
Core command line format
The core command line format is as follows:
-classpath
rational_ft.jar
com.rational.test.ft.rational_ft
<product options> or -jar
rational_ft.jar
<product options>The standard java options refer to the Java™ command line options such as -classpath <classpath> to set the classpath appropriately.
- -classpath
- If you use the first command-line format, you must explicitly include the
rational_ft.jar
in the classpath. It can be found in the install directory. If you use the second command-line format, specify the full path of therational_ft.jar
file after the-jar
option. You do not need to specify a classpath or the class to run (com.rational.test.ft.rational_ft ). If you are using the product with PurifyPlus™, use the first command-line format.Note: If the external jar file or directory that is referenced in a project, does not meet the project path criteria, then such jar files must be added to the classpath.
See the API Reference (com/rational/test/ft/rational_ft) for a full list of the command-line options.
- -projectpath
- If you have dependencies on a project, then you must add the project path using the
-projectpath
option. If you have added other project dependencies to the functional test project, you can specify the project name using the-projectpath
option. For example, Consider a scenario where you have a functional test script that uses a class from another project. To resolve this dependency, during a command line invocation, you must specify the dependent project name using the-projectpath
option.
Commonly used command line options
Parameter | Description |
---|---|
-appconfig | Use this option to open the Application Configuration Tool dialog box. |
-compile | Use this option to compile the test script for the first time before playback. |
-compileall | Use this option to compile all test scripts in the project for the first time before playback. If you use the -datastore option, you can compile all tests scripts in the datastore directory and subdirectories. (Requires 9.1.1.1 and newer) |
-datastore <datastore directory> | Use this option whenever a script is specified. For example,
use it with -record or -playback |
-edit <file> or -display <file> | Use this option to edit or view a verification point or object map. The <file> can be a complete file name (with directory path). Use double-quotes if the name or path includes space characters. |
-enable | Use this option to open the Enable Environments dialog box to enable a specific environment. |
-exportlog | Optional. You can use this parameter to specify the file
directory path to store the exported test log. For example,
|
-inspector | Use this option to open the Test Object Inspector Tool dialog box. |
-playback <script name> | Use this option to play back a Java™ script. You must specify the playback option at the end of the command. Rational® Functional Tester ignores any arguments specified after the playback option. |
-record <script name> | Use this option to record a new script (or in conjunction
with
-insertafter
<line number> to insert recording into an
existing
script).
. |
-rt.log_format | Optional. Use this option to specify the format of the report
that you want to generate after the playing back of a test. You can specify any of
the following log types as the format of the report:
Restriction: If you use
Default as the log type to generate unified report for
Functional test scripts from the command line, the report does not open
automatically when the play back is completed. You must use a different log type
if you want the report to open automatically when the play back is completed.
Tip: You can use the
-exportlog parameter to export the test log in the Default
log type format. |
For example, you can use -record test.script1 to create the test folder in a project and create the script1 Java™ script in the folder.
Command line usage in Linux®
The command line format is <Install_Directory>/jdk/jre/bin/java
<Install_Directory>/FunctionalTester/bin/rational_ft.jar <product
options>
. If
the product is installed in the default path, then the you can use /opt/IBM/SDP/jdk/jre/bin/java /opt/IBM/SDP/FunctionalTester/bin/rational_ft.jar
<product options>
.
If you use the above command-line format, you must explicitly set the functional test
environment variables. Alternatively, you can use the script
ft_cmdline
.
Examples:
Enable all environments in Linux®
/opt/IBM/SDP/ft_cmdline -enable ALL
Execute a script with command line arguments on Linux®
/opt/IBM/SDP/ft_cmdline -datastore /home/user/IBM/rationalsdp/workspace/Project1 -log testscript -playback Script2 -args arg1 arg2