Firebird-testcontainers-java is a module for Testcontainers to provide lightweight, throwaway instances of Firebird for JUnit tests.
The docker image used is jacobalberty/firebird.
If you want to use 2.5, use the 2.5.x-sc (SuperClassic) variant of the image, or 2.5.9-ss as earlier versions of the 2.5.x-ss (SuperServer) variant seem to be broken.
- Docker
- A supported JVM testing framework
See Testcontainers prerequisites for details.
In addition to the firebird-testcontainers-java dependency, you will also need to explicitly depend on Jaybird.
testImplementation "org.firebirdsql:firebird-testcontainers-java:1.4.0"<dependency>
<groupId>org.firebirdsql</groupId>
<artifactId>firebird-testcontainers-java</artifactId>
<version>1.4.0</version>
<scope>test</scope>
</dependency>For extensive documentation, consult https://www.testcontainers.org/modules/databases/
Using a JUnit @Rule or @ClassRule you can configure a container and start it
per test (@Rule) or per class (@ClassRule).
The container defines several withXXX methods for configuration.
Important standard options are:
withUsername(String)- Sets the username to create (defaults totest); if other thansysdba(case-insensitive), sets docker environment variableFIREBIRD_USERwithPassword(String)- Sets the password of the user (defaults totest); ifwithUsernameis other thansysdba(case-insensitive), sets the docker environment variableFIREBIRD_PASSWORD, otherwiseISC_PASSWORDwithDatabaseName(String)- Sets the database name (defaults totest); sets docker environment variableFIREBIRD_DATABASE
Firebird specific options are:
withEnableLegacyClientAuth()- (Firebird 3+) EnablesLegacyAuthand uses it as the default for creating users, also relaxesWireCrypttoEnabled; sets docker environment variableEnableLegacyClientAuthtotrue; passes connection propertyauthPluginswith valueSrp256,Srp,Legacy_Authif this property is not explicitly set throughwithUrlParamwithEnableWireCrypt- (Firebird 3+) RelaxesWireCryptfromRequiredtoEnabled; sets docker environment variableEnableWireCrypttotruewithTimeZone(String)- Sets the time zone (defaults to JVM default time zone); sets docker environment variableTZto the specified valuewithSysdbaPassword(String)- Sets the SYSDBA password, but ifwithUsername(String)is set tosysdba(case-insensitive), this property is ignored and the value ofwithPasswordis used instead; sets docker environment variableISC_PASSWORDto the specified value
Example of use:
import org.firebirdsql.testcontainers.FirebirdContainer;
import org.testcontainers.utility.DockerImageName;
/**
* Simple test demonstrating use of {@code @Rule}.
*/
public class ExampleRuleTest {
private static final DockerImageName IMAGE =
DockerImageName.parse(FirebirdContainer.IMAGE).withTag("v4.0.2");
@Rule
public final FirebirdContainer<?> container = new FirebirdContainer<?>(IMAGE)
.withUsername("testuser")
.withPassword("testpassword");
@Test
public void canConnectToContainer() throws Exception {
try (Connection connection = DriverManager
.getConnection(container.getJdbcUrl(), container.getUsername(), container.getPassword());
Statement stmt = connection.createStatement();
ResultSet rs = stmt.executeQuery("select CURRENT_USER from RDB$DATABASE")) {
assertTrue("has row", rs.next());
assertEquals("user name", "TESTUSER", rs.getString(1));
}
}
}The testcontainers URL defines the container and connects to it. As long as there are active connections, the container will stay up.
For Firebird the URL format is:
jdbc:tc:firebird[:<image-tag>]://hostname/<databasename>[?<property>=<value>[&<property>=<value>...]]jdbc:tc:firebirdsql[:<image-tag>]://hostname/<databasename>[?<property>=<value>[&<property>=<value>...]]
Where:
<image-tag>(optional, but recommended) is the tag of the docker image to use, otherwise the default is used (which might change between versions)<databasename>(optional) is the name of the database (defaults totest)<property>is a connection property (Jaybird properties and testcontainers properties are possible)
Of special note are the properties:user(optional) specifies the username to create and connect (defaults totest)password(optional) specifies the password for the user (defaults totest)
<value>is the value of the property
Example of use:
/**
* Simple test demonstrating use of url to instantiate container.
*/
public class ExampleUrlTest {
@Test
public void canConnectUsingUrl() throws Exception {
try (Connection connection = DriverManager
.getConnection("jdbc:tc:firebird://hostname/databasename?user=someuser&password=somepwd");
Statement stmt = connection.createStatement();
ResultSet rs = stmt.executeQuery("select CURRENT_USER from RDB$DATABASE")) {
assertTrue("has row", rs.next());
assertEquals("user name", "SOMEUSER", rs.getString(1));
}
}
}See LICENSE