This site contains the documentation that is relevant to older WSO2 product versions and offerings.
For the latest WSO2 documentation, visit https://wso2.com/documentation/.
Debugging Product Integration Tests
WSO2 Test Automation Framework uses TestNG as its underlying test engine. The Surefire Plugin is used during the "test" phase of the build lifecycle to execute the integration tests or unit tests.
Debugging maven forked tests
By default, Maven runs your tests in a separate (forked) process. You can use the maven.surefire.debug property to debug your forked tests remotely:
mvn -Dmaven.surefire.debug
The tests will pause automatically and await a remote debugger on port 5005. You can then attach to the running tests using your IDE. If you need to configure a different port, you may pass a more detailed value. For example, the command below will use port 8000 instead of port 5005.
mvn -Dmaven.surefire.debug="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 -Xnoagent -Djava.compiler=NONE" test
Also, you can debug tests by adding the following property to the Surefire plugin configuration section:
-Xms512m -Xmx1024m -XX:MaxPermSize=128m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=512m -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5006
Debugging product components
To debug product components while running integration tests, you have to follow a few steps:
- Go to your product build location, usually the product distribution can be found at $PRODUCT_NAME/modules/distribution/target. The test framework extracts the product distribution at the default build location to the test module target directory before running test suites. Then extract the product distribution and go to the bin directory.
Open wso2server.sh (unix) or wso2server.bat (in windows). Edit the script file and put the remote debug command generated through your IDE into the jvm system properties section. For example:
-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005 \
Edit the script as follows:$JAVACMD \ -Xbootclasspath/a:"$CARBON_XBOOTCLASSPATH" \ -Xms256m -Xmx1024m -XX:MaxPermSize=256m \ -XX:+HeapDumpOnOutOfMemoryError \ -XX:HeapDumpPath="$CARBON_HOME/repository/logs/heap-dump.hprof" \ $JAVA_OPTS \ -Dcom.sun.management.jmxremote \ -classpath "$CARBON_CLASSPATH" \ -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5005 \ -Djava.endorsed.dirs="$JAVA_ENDORSED_DIRS" \ -Djava.io.tmpdir="$CARBON_HOME/tmp" \ -Dcatalina.base="$CARBON_HOME/lib/tomcat" \ -Dwso2.server.standalone=true \
- After editing server startup script, recompress the distribution and replace the product distribution at $PRODUCT_NAME/modules/distribution/target.
- Run the integration tests and execution. You will see that execution is paused and awaits the remote debugger.