DBZ-6276 Marked test ignored by default

The default Debezium Oracle images are pre-configured with archive log mode
enabled and this isn't something we can simply turn off and back on in the
test suite proper. This test must be invoked manually and separately, so it
is disabled by default in the overall test suite execution.
This commit is contained in:
Chris Cranford 2023-04-18 19:24:00 -04:00 committed by Jiri Pechanec
parent 4df3895d65
commit 1805f6e75e

View File

@ -309,6 +309,8 @@ public void shouldTakeSnapshot() throws Exception {
}
@Test
@FixFor("DBZ-6276")
@Ignore("Requires database to be configured without ARCHIVELOG_MODE enabled; which conflicts with dbz-oracle images")
public void shouldSkipCheckingArchiveLogIfNoCdc() throws Exception {
Configuration config = TestHelper.defaultConfig()
.with(OracleConnectorConfig.SNAPSHOT_MODE, SnapshotMode.INITIAL_ONLY)
@ -320,6 +322,7 @@ public void shouldSkipCheckingArchiveLogIfNoCdc() throws Exception {
start(OracleConnector.class, config);
assertConnectorIsRunning();
waitForSnapshotToBeCompleted(TestHelper.CONNECTOR_NAME, TestHelper.SERVER_NAME);
stopConnector();
assertThat(logInterceptor.containsWarnMessage("Failed the archive log check but continuing as redo log isn't strictly required")).isTrue();