-
Notifications
You must be signed in to change notification settings - Fork 42
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 #176 from graben/testcontainers
Add tests using testcontainers
- Loading branch information
Showing
13 changed files
with
429 additions
and
1 deletion.
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
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
44 changes: 44 additions & 0 deletions
44
...er-it/src/test/java/dev/snowdrop/boot/narayana/testcontainers/MSSQLGenericRecoveryIT.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,44 @@ | ||
/* | ||
* 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.testcontainers.containers.JdbcDatabaseContainer; | ||
import org.testcontainers.containers.MSSQLServerContainer; | ||
import org.testcontainers.junit.jupiter.Container; | ||
import org.testcontainers.junit.jupiter.Testcontainers; | ||
|
||
@Tag("testcontainers") | ||
@Testcontainers | ||
public class MSSQLGenericRecoveryIT extends GenericRecoveryIT { | ||
|
||
@Container | ||
@ServiceConnection | ||
static JdbcDatabaseContainer<?> mssql = new MSSQLServerContainer<>("mcr.microsoft.com/mssql/server:latest") | ||
.acceptLicense() | ||
.withInitScript("mssql-initscript.sql"); | ||
|
||
@Override | ||
protected void assertEntriesAfterCrash(List<Entry> entries) { | ||
// Empty because server locks table until successfully recovered. | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
...ter-it/src/test/java/dev/snowdrop/boot/narayana/testcontainers/MSSQLPooledRecoveryIT.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,52 @@ | ||
/* | ||
* 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.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.testcontainers.containers.JdbcDatabaseContainer; | ||
import org.testcontainers.containers.MSSQLServerContainer; | ||
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.generateUniqueName=false", | ||
"spring.datasource.name=jdbc" | ||
}) | ||
public class MSSQLPooledRecoveryIT extends PooledRecoveryIT { | ||
|
||
@Container | ||
@ServiceConnection | ||
static JdbcDatabaseContainer<?> mssql = new MSSQLServerContainer<>("mcr.microsoft.com/mssql/server:latest") | ||
.acceptLicense() | ||
.withInitScript("mssql-initscript.sql"); | ||
|
||
@Override | ||
protected void assertEntriesAfterCrash(List<Entry> entries) { | ||
// Empty because server locks table until successfully recovered. | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
...er-it/src/test/java/dev/snowdrop/boot/narayana/testcontainers/MySQLGenericRecoveryIT.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,44 @@ | ||
/* | ||
* 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.testcontainers.containers.JdbcDatabaseContainer; | ||
import org.testcontainers.containers.MySQLContainer; | ||
import org.testcontainers.junit.jupiter.Container; | ||
import org.testcontainers.junit.jupiter.Testcontainers; | ||
|
||
@Tag("testcontainers") | ||
@Testcontainers | ||
public class MySQLGenericRecoveryIT extends GenericRecoveryIT { | ||
|
||
@Container | ||
@ServiceConnection | ||
static JdbcDatabaseContainer<?> mysql = new MySQLContainer<>("mysql:latest") | ||
.withUsername("root") | ||
.withPassword("root"); | ||
|
||
@Override | ||
protected void assertEntriesAfterCrash(List<Entry> entries) { | ||
// Empty because server locks table until successfully recovered. | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
...ter-it/src/test/java/dev/snowdrop/boot/narayana/testcontainers/MySQLPooledRecoveryIT.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,44 @@ | ||
/* | ||
* 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.testcontainers.containers.JdbcDatabaseContainer; | ||
import org.testcontainers.containers.MySQLContainer; | ||
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.generateUniqueName=false", | ||
"spring.datasource.name=jdbc" | ||
}) | ||
public class MySQLPooledRecoveryIT extends PooledRecoveryIT { | ||
|
||
@Container | ||
@ServiceConnection | ||
static JdbcDatabaseContainer<?> mysql = new MySQLContainer<>("mysql:latest") | ||
.withUsername("root") | ||
.withPassword("root"); | ||
} |
36 changes: 36 additions & 0 deletions
36
...r-it/src/test/java/dev/snowdrop/boot/narayana/testcontainers/OracleGenericRecoveryIT.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,36 @@ | ||
/* | ||
* 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.generic.GenericRecoveryIT; | ||
import org.junit.jupiter.api.Tag; | ||
import org.springframework.boot.testcontainers.service.connection.ServiceConnection; | ||
import org.testcontainers.containers.JdbcDatabaseContainer; | ||
import org.testcontainers.junit.jupiter.Container; | ||
import org.testcontainers.junit.jupiter.Testcontainers; | ||
import org.testcontainers.oracle.OracleContainer; | ||
import org.testcontainers.utility.MountableFile; | ||
|
||
@Tag("testcontainers") | ||
@Testcontainers | ||
public class OracleGenericRecoveryIT extends GenericRecoveryIT { | ||
|
||
@Container | ||
@ServiceConnection | ||
static JdbcDatabaseContainer<?> oracle = new OracleContainer("gvenzl/oracle-free:slim-faststart") | ||
.withCopyFileToContainer(MountableFile.forClasspathResource("oracle-initscript.sql"), "/container-entrypoint-initdb.d/init.sql"); | ||
} |
44 changes: 44 additions & 0 deletions
44
...er-it/src/test/java/dev/snowdrop/boot/narayana/testcontainers/OraclePooledRecoveryIT.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,44 @@ | ||
/* | ||
* 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.testcontainers.containers.JdbcDatabaseContainer; | ||
import org.testcontainers.junit.jupiter.Container; | ||
import org.testcontainers.junit.jupiter.Testcontainers; | ||
import org.testcontainers.oracle.OracleContainer; | ||
import org.testcontainers.utility.MountableFile; | ||
|
||
@Tag("testcontainers") | ||
@Testcontainers | ||
@SpringBootTest(classes = TestApplication.class, properties = { | ||
"narayana.messaginghub.enabled=true", | ||
"narayana.messaginghub.name=jms", | ||
"spring.datasource.generateUniqueName=false", | ||
"spring.datasource.name=jdbc" | ||
}) | ||
public class OraclePooledRecoveryIT extends PooledRecoveryIT { | ||
|
||
@Container | ||
@ServiceConnection | ||
static JdbcDatabaseContainer<?> oracle = new OracleContainer("gvenzl/oracle-free:slim-faststart") | ||
.withCopyFileToContainer(MountableFile.forClasspathResource("oracle-initscript.sql"), "/container-entrypoint-initdb.d/init.sql"); | ||
} |
Oops, something went wrong.