-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #180 from graben/db2
Add DB2 to testcontainer suite
- Loading branch information
Showing
3 changed files
with
119 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
...rter-it/src/test/java/dev/snowdrop/boot/narayana/testcontainers/DB2GenericRecoveryIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
...arter-it/src/test/java/dev/snowdrop/boot/narayana/testcontainers/DB2PooledRecoveryIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} | ||
} |