This topic explains how to use SOAtest to perform runtime error detection on Java applications.
Sections include:
Parasoft Jtest Installation is RequiredSOAtest provides Java runtime error detection and Java event monitoring capabilities via integration with Parasoft Jtest, which facilitates a broad range of test and analysis practices for Java. Before you use SOAtest’s runtime error detection and/or Java event monitoring capabilities, ensure that 1) Jtest is installed on your machine 2) SOAtest's "Jtest Connect" license option is enabled. To get Jtest, go to http://www.parasoft.com/jtest, then click the Downloads link at the top of the page. Note that this cross-product capability requires Jtest and SOAtest to be installed in one of the following ways:
|
SOAtest can perform runtime error detection as functional tests or penetration tests execute.
Runtime error detection exposes critical defects that occur as the application is exercised. Defects are reported with unprecedented accuracy. This is key for efficiently identifying defects that manifest themselves only at runtime (for example, file overwrites) and to pinpoint the root causes responsible for application crashes, performance degradation, and unpredictable behavior.
SOAtest correlates each reported error with the functional test that was being run when the error was detected. This correlation between violations and functional tests allows you to trace each reported error to particular use cases against your application.
Categories of errors detected include:
Before you can monitor an application, you must copy the appropriate jar files to the machine that is running your application server, then configure the application server to use the jars. This is done as follows:
insure.jar
and insureimpl.jar
from [Jtest_install_dir]/plugins/com.parasoft.xtest.jtest_[version]/resources/
to a directory on the server with the application you want to check. -javaagent
command to the existing Java arguments.trace_to_xml
parameter if you also want to monitor the application’s internal behavior as your functional tests execute. See the box below for details.The server will start as usual, but with the specified package classes instrumented.
Gain visibility into the application’s internal behavior during test executionAs you configure the application for runtime error detection, you are also preparing it for application monitoring, which provides visibility into the application’s internal behavior as functional tests execute. This allows you to better identify the causes of test failures as well as enrich the use case validation criteria in your regression tests. For example, you can validate that an EJB method call or a remote call to another system is taking place with the expected parameters. To perform this monitoring:
See Monitoring Java Applications for details. |
The following invocation-time parameters are required:
Parameter | Description |
---|---|
soatest | Required for configuring runtime error detection. |
port=[port_number] | Specifies which port should be used to communicate with the monitored program. Use 5050 to 5099. |
instrument= [class_name.method_name(jni_sig)] | Specifies the prefixes of fully-qualified methods to check. For instance, given the com.abc.util.IOUtil.method , it will instrument all methods in IOUtil.java that start with method . If given com.abc. , it will also instrument those methods and all methods of classes whose fully qualified name starts with com.abc . You can provide specific class names. Required. |
Applications that define their own class loaders (i.e. Eclipse, JBoss and Tomcat) need insure.jar
added to the boot classpath. To monitor those applications, add to the launch VM arguments: -javaagent:"<path_to_jar>\insure.jar=soatest,port=<port>",instrument=<my.package.prefix> -Xbootclasspath/a<path_to_jar>\insure.jar
For instance, you may use:-javaagent:"/home/user/parasoft/insure.jar=soatest,port=5060",instrument=com.mycompany.onlinestore -Xbootclasspath/a:/home/user/parasoft/insure.jar
For other (standalone) Java applications, you do NOT need to add insure.jar
to the boot classpath. For instance, you may use:java -javaagent:"C:\Program Files\Parasoft\insure.jar=soatest,port=5050",instrument=com.mycompany.myapp
Before you can perform runtime error detection, you need to customize a Test Configuration to specify which application you want to check and what errors you want to look for. To do this:
To perform runtime error detection on your application:
Errors detected will be reported as follows:
The same detail is also provided in reports.
Note that SOAtest correlates each reported error with the functional test that was being run when the error was detected. This correlation between violations and functional tests allows you to trace each reported error to particular use cases against your application.
This section provides detailed instructions for configuring popular Web application servers for use with SOAtest’s runtime error detection.
JBossInstallRoot/bin/run.bat
(for Windows) or run.sh
(for UNIX).JAVA_OPTS
variable. For example:set JAVA_OPTS=%JAVA_OPTS% -Xms128m -Xmx512m -javaagent:[eventmonitor directory]/insure.jar=soatest,port=[port number],instrument=[class_name.method_name(jni_sig)],trace=[class_name.method_name(jni_sig)] -Xbootclasspath/a:[eventmonitor directory]/insure.jar
"-javaagent:[eventmonitor directory]/insure.jar=soatest,port=[port number],instrument=[class_name.method_name(jni_sig)],trace=[class_name.method_name(jni_sig) ] -Xbootclasspath/a:[eventmonitor directory]/insure.jar"
in the newly-created text field.eventmonitor
directory from the SOAtest installation to the machine that is running the application you want to check (for instance, c:\eventmonitor
).http://<HOST>:9060/ibm/console/
to view the WebSphere Application Server Administrative Console.-javaagent:[eventmonitor directory]/insure.jar=soatest,port=[port number],instrument=[class_name.method_name(jni_sig)],trace=[class_name.method_name(jni_sig) ] -Xbootclasspath/a:[eventmonitor directory]/insure.jar
SOAtest will automatically configure the extra JVM arguments for WebSphere 5.1 local test environment servers that are launched from within the WSAD 5.1 IDE. To configure all other WebSphere 5.x servers for runtime error detection, use the following procedure:
http://<Host>:9090/admin
(default port is 9090) to view the WebSphere Application Server Administrative Console.-javaagent:[eventmonitor directory]/insure.jar=soatest,port=[port number],instrument=[class_name.method_name(jni_sig)],trace=[class_name.method_name(jni_sig) ] -Xbootclasspath/a:[eventmonitor
directory]/insure.jar
-Xnoagent
JVM argument for operation with SOAtest. -Xnoagent
will fix the java.lang.NoClassDefFoundError: sun/tools/agent/Agent WAS 5.x startup problem.C:\bea\user_projects\domains\mydomain\startWebLogic.cmd
(Windows) or .sh
(UNIX).set JAVA_OPTIONS
line (if this line is not yet added, add it now). For example:set JAVA_OPTIONS=-javaagent:[eventmonitor directory]/insure.jar=soatest,port=[port number],instrument=[class_name.method_name(jni_sig)],trace=[class_name.method_name(jni_sig) ] -Xbootclasspath/a:[eventmonitor directory]/insure.jar
If you use JBossService.exe
through the command line to start JBoss:
JavaService-2.0.7.zip
from http://forge.objectweb.org/project/show-files.php?group_id=137&release_id=1267.JavaService.exe
to your application’s bin
directory, then rename it JBossService.exe
.run.bat
as follows:set JAVA_OPTS=-Dprogram.name=%PROGNAME% -Xms128m -Xmx512m "-Djava.endorsed.dirs=%JBOSS_ENDORSED_DIRS%" -javaagent:[eventmonitor directory]/insure.jar=soatest,port=[port number],instrument=[class_name.method_name(jni_sig)],trace=[class_ name.method_name(jni_sig)] -Xbootclasspath/a:[eventmonitor directory]/insure.jar
JBossService.exe
with monitoring.For example, for an application named Showcase, instead of calling "%JAVA%" %JAVA_OPTS% "-Djava.endorsed.dirs=%JBOSS_ENDORSED_DIRS%" -classpath "%JBOSS_CLASSPATH%" org.jboss.Main %*
,add the following lines:
rem install Showcase (routes system.out and system.err to the runtimeerrordetection directory) JBossService.exe -install Showcase "%JAVA_HOME%\jre\bin\server\jvm.dll" "-Djava.class.path=%JBOSS_CLASSPATH%" %JAVA_OPTS% -start org.jboss.Main -stop org.jboss.Main -params %* -method systemExit -out C:\runtimeerrordetection\stdoutJBOSS.log -err C:\runtimeerrordetection\stderrJBOSS.log -overwrite rem start the Showcase service net start Showcase |
NoteThis installation should only be performed once. Ideally, the run.bat file should only contain the start command; the installation can be done through the command line. If the service has already been installed, you will need to reinstall it with the appropriate VM arguments. You can stop or uninstall the service with the following commands:net stop Showcase JBossService.exe –uninstall Showcase |
run.bat
file as normal. The command prompt that opens should display the following printout:Execute some application transactions as normal, then verify that the monitoring is working.
NoteThe |