Payara Server Remote Arquillian Container Adapter
When using this adapter, the Payara Server container lifecycle is NOT managed by Arquillian. Instead, the adapter will connect to an already running Payara Server instance via a remote communication protocol by talking to the server’s DAS process directly. In this scenario, the integration test setup will have to bootstrap the server’s domain startup and shutdown on its own.
This gives you the flexibility to use any possible deployment scenarios having your servers either on many different physical or virtual nodes, or on the same one.
Usage
The Payara Server Remote Arquillian container adapter can be found on Maven Central, and can be included in your project using the following Maven GAV coordinates:
<dependency>
<groupId>fish.payara.arquillian</groupId>
<artifactId>arquillian-payara-server-remote</artifactId>
<version>${version}</version>
</dependency>
Container Configuration
The Payara Server container can be configured via the arquillian.xml
file using the standard Arquillian Container Configuration mechanism.
The following Arquillian Container configuration options are available:
Name | Description | Default | ||
---|---|---|---|---|
|
The host to be used to access the Payara Server Admin interface. |
|
||
|
You can use it to specify whether the HTTP or HTTPS protocol shall be used to access the DAS. The property value can be |
|
||
|
The port to be used to access the Payara Server Admin interface. |
|
||
|
The name of the admin user of your DAS. If omitted, no authentication will be used to access the DAS. In this case the |
|||
|
The password of the admin user of your DAS. Cannot be omitted if you declare the admin user. If no authentication will be used to access the DAS you must have empty password for your admin user of your domain. |
|||
|
If true, basic access authentication is enabled. It also indicates that remote server requires an |
|
||
|
If set to This is useful for Docker images / Testcontainers when certificates are not easily matched to internally generated ones and host names are also very hard to match. |
|
||
|
A comma-separated list of library JAR files. Specify the library JAR files by their relative or absolute paths. Specify relative paths relative to |
|||
|
Optional keyword-value pair that specify additional properties for the deployment. The available properties are determined by the implementation of the component that is being deployed. |
|||
|
The deployment target of the applications involved in the test. Valid values of the target are:
The domain name as a target is not a reasonable deployment scenario in case of testing. The HOST address and port numbers of the test server instance used by Arquillian (determined by the target property) will be automatically retrieved from the DAS server.
|
|
||
|
If set to If the component is packaged as a regular archive, do not set this option. |
The context root that will be used to run the tests is also retrieved automatically from the DAS server. If the deployed application does have a sun-web.xml
, glassfish-web.xml
or payara-web.xml
deployment descriptor, the container will use the name of your deployment without the extension as context root.
The same rule is applied for enterprise applications if there is no application.xml
file. The JAR test-deployments are treated as a web application.
Examples
To configure the Arquillian Container options, you need to use an arquillian.xml
file placed on the test classpath. Here’s an example arquillian.xml
file. It configures adminPort
with a static value. It configures adminPassword
as a value of a system property my.admin.password
, which you can specify for example in the maven surefire
plugin using the systemPropertyVariables
option or on the command line like mvn -Dmy.admin.password=mypassword test
.
arquillian.xml
file<?xml version="1.0"?>
<arquillian xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://jboss.org/schema/arquillian"
xsi:schemaLocation="http://jboss.org/schema/arquillian
http://jboss.org/schema/arquillian/arquillian_1_0.xsd">
<container qualifier="payara" default="true">
<configuration>
<property name="adminPort">4848</property>
<property name="adminPassword">${my.admin.password}</property>
</configuration>
</container>
</arquillian>
If you want to configure more containers, you can switch between them by setting the arquillian.launch
system property to the container’s qualifier.
This is how you can do it with the maven surefire
plugin (my.admin.password
system property is used to set the adminPassword
property in arquillian.xml
):
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemPropertyVariables>
<arquillian.launch>payara</arquillian.launch>
<my.admin.password>mypassword</my.admin.password>
</systemPropertyVariables>
</configuration>
</plugin>