Eclipse Krazo is an implementation of action-based MVC specified by Jakarta MVC 2.0. It builds on top of Jakarta RESTful Webservices and currently contains support for RESTEasy and Jersey with a well-defined SPI for other implementations.
Eclipse Krazo has configurations to run the testsuite against a bunch of application servers like WildFly, Payara, Glassfish or Liberty. The following sections describe how you test Eclipse Krazo against them. At the moment, we test against following servers:
- Glassfish 8
- WildFly 22.x.x
- OpenLiberty 21.*
- JDK 11
- SNAPSHOTs are up to date in your local repository
To run the Krazo testsuite with Eclipse Glassfish, you need to follow these steps:
- Download Eclipse Glassfish from the official download page and unzip it.
- Start Eclipse Glassfish via
glassfish6/glassfish/bin/startserv
- Go into the
testsuite
package of Eclipse Krazo and executemvn clean integration-test -Ptestsuite-glassfish
To run the Krazo testsuite with WildFly, you need to follow these steps:
- Download WildFly from the WildFly download page and unzip it somewhere you'll find it again.
- Start WildFly with
sh standalone.sh --debug
. This enables you to remote-debug the Arquillian tests. - Go into the
testsuite
package of Eclipse Krazo and executemvn clean integration-test -Ptestsuite-wildfly
To run the Krazo testsuite with OpenLiberty, you need to follow these steps. Please note that this process has been tested with 20.x only.
Download OpenLiberty from the official download page and unzip it.
Replace the file wlp/templates/servers/defaultServer/server.xml
with .travis/wlp-server-template.xml
from the Eclipse Krazo repository.
Go into the testsuite package of Eclipse Krazo and execute mvn clean integration-test -Ptestsuite-liberty -Dliberty.home=c:/somewhere/wlp/
. Please make sure to replace c:/somewhere/wlp/ with the absolute path to the unpacked OpenLiberty distribution.
In this case, ensure that your local SNAPSHOTS are the newest version of Krazo. Most of time, this solves the problem.