Skip to content

Commit

Permalink
Merge pull request #180 from graben/db2
Browse files Browse the repository at this point in the history
Add DB2 to testcontainer suite
  • Loading branch information
geoand authored Dec 30, 2024
2 parents becd53f + cfafec8 commit ed0b3f9
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 0 deletions.
10 changes: 10 additions & 0 deletions narayana-spring-boot-starter-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,16 @@
<artifactId>spring-boot-testcontainers</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>db2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.ibm.db2</groupId>
<artifactId>jcc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>mssqlserver</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* Copyright 2020 Red Hat, Inc, and individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package dev.snowdrop.boot.narayana.testcontainers;

import java.util.List;

import dev.snowdrop.boot.narayana.app.Entry;
import dev.snowdrop.boot.narayana.generic.GenericRecoveryIT;
import org.junit.jupiter.api.Tag;
import org.springframework.boot.testcontainers.service.connection.ServiceConnection;
import org.springframework.test.context.DynamicPropertyRegistry;
import org.springframework.test.context.DynamicPropertySource;
import org.testcontainers.containers.Db2Container;
import org.testcontainers.containers.JdbcDatabaseContainer;
import org.testcontainers.junit.jupiter.Container;
import org.testcontainers.junit.jupiter.Testcontainers;

@Tag("testcontainers")
@Testcontainers
public class DB2GenericRecoveryIT extends GenericRecoveryIT {

@Container
@ServiceConnection
static JdbcDatabaseContainer<?> db2 = new Db2Container("icr.io/db2_community/db2")
.acceptLicense()
.withEnv("PERSISTENT_HOME", "false");

@DynamicPropertySource
static void setProperties(DynamicPropertyRegistry registry) {
registry.add("spring.datasource.xa.properties.driverType", () -> 4);
registry.add("spring.datasource.xa.properties.serverName", db2::getHost);
registry.add("spring.datasource.xa.properties.portNumber", () -> db2.getMappedPort(Db2Container.DB2_PORT));
registry.add("spring.datasource.xa.properties.databaseName", db2::getDatabaseName);
}

@Override
protected void assertEntriesAfterCrash(List<Entry> entries) {
// Empty because server locks table until successfully recovered.
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Copyright 2020 Red Hat, Inc, and individual contributors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package dev.snowdrop.boot.narayana.testcontainers;

import dev.snowdrop.boot.narayana.app.TestApplication;
import dev.snowdrop.boot.narayana.pooled.PooledRecoveryIT;
import org.junit.jupiter.api.Tag;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.boot.testcontainers.service.connection.ServiceConnection;
import org.springframework.test.context.DynamicPropertyRegistry;
import org.springframework.test.context.DynamicPropertySource;
import org.testcontainers.containers.Db2Container;
import org.testcontainers.containers.JdbcDatabaseContainer;
import org.testcontainers.junit.jupiter.Container;
import org.testcontainers.junit.jupiter.Testcontainers;

@Tag("testcontainers")
@Testcontainers
@SpringBootTest(classes = TestApplication.class, properties = {
"narayana.messaginghub.enabled=true",
"narayana.messaginghub.name=jms",
"spring.datasource.agroal.flushOnClose=true",
"spring.datasource.generateUniqueName=false",
"spring.datasource.name=jdbc",
"spring.datasource.xa.properties.driverType=4"
})
public class DB2PooledRecoveryIT extends PooledRecoveryIT {

@Container
@ServiceConnection
static JdbcDatabaseContainer<?> db2 = new Db2Container("icr.io/db2_community/db2")
.acceptLicense()
.withEnv("PERSISTENT_HOME", "false");

@DynamicPropertySource
static void setProperties(DynamicPropertyRegistry registry) {
registry.add("spring.datasource.xa.properties.serverName", db2::getHost);
registry.add("spring.datasource.xa.properties.portNumber", () -> db2.getMappedPort(Db2Container.DB2_PORT));
registry.add("spring.datasource.xa.properties.databaseName", db2::getDatabaseName);
}
}

0 comments on commit ed0b3f9

Please sign in to comment.