- Java 7 or higher.
- Maven 3 or higher.
As a first step, make sure you have the ce-arq dependency available in your local maven repository. If you don't have it yet, just clone the project and install it:
$ git clone https://github.com/jboss-openshift/ce-arq.git
$ cd ce-arq
$ mvn clean install
The above commands will generate the required ce-arq dependency and install it on your local maven repository.
The ce-arq project, in turn, depends on arquillian-cube project. At the moment, we are using the SNAPHOST version, which means you will have to build it locally in order to satisfy this dependency. To build it, please follow the steps below:
git clone https://github.com/arquillian/arquillian-cube.git
cd arquillian-cube
mvn clean install -DskipTests
PS: The step above might not be necessary in the future, since we will use released versions once all the changes we need are made available in Arquillian Cube.
Sometimes, one might want to run more than one test at the same time but you probably will get an error saying the Address already in use that means there is another test in progress or some port used is being used by another process. To solve this issue you can easily use the following System Property to configure the Arquillian Cube to use a different bind address to start the port forwarder server, in this way you can start multiple tests by setting the following property:
- -Darq.extension.openshift.portForwardBindAddress=<LOCAL_IP_ADDRESS>
Note that the default bind address is localhost.
Some tests make use of the Persistent Volumes feature of Kubernetes/OpenShift. It is out of the tests' scope, however, to setup such PV's. This is left to the cluster administrator as a requirement for running the whole suite of tests.
Those tests just use the PersistentVolumeClaims to claim for some volumes. Check the docs for more information on how to configure Persistent Volumes.
You can, if you prefer, disable such tests temporarily, by excluding them within pom.xml. Those tests have the word Persistent
into their names, like, for instance: Eap70MysqlPersistentTest.java
.
For more details about each component of this testsuite, please verify their docs:
Feel free to report it here.
For any feedback, please send us an email ([email protected]) and let us know about your thoughts.