Skip to content

Commit

Permalink
DBZ-5526 Ignore all but verifyOffsets
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Aug 18, 2022
1 parent 313ded0 commit b7ddf8d
Show file tree
Hide file tree
Showing 25 changed files with 101 additions and 0 deletions.
Expand Up @@ -14,6 +14,7 @@
import org.fest.assertions.Assertions;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.config.Configuration;
Expand All @@ -28,6 +29,7 @@
*
* @author Jiri Pechanec
*/
@Ignore
public class CaseSensitivenessIT extends AbstractConnectorTest {

private SqlServerConnection connection;
Expand Down
Expand Up @@ -9,6 +9,7 @@

import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Ignore;

import io.debezium.jdbc.TemporalPrecisionMode;

Expand All @@ -18,6 +19,7 @@
*
* @author Jiri Pechanec
*/
@Ignore
public class DatatypesFromSnapshotIT extends AbstractSqlServerDatatypesTest {

@BeforeClass
Expand Down
Expand Up @@ -12,6 +12,7 @@
import org.fest.assertions.Assertions;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.config.CommonConnectorConfig.EventProcessingFailureHandlingMode;
Expand All @@ -31,6 +32,7 @@
*
* @author Jiri Pechanec
*/
@Ignore
public class EventProcessingFailureHandlingIT extends AbstractConnectorTest {

private SqlServerConnection connection;
Expand Down
Expand Up @@ -7,9 +7,11 @@
package io.debezium.connector.sqlserver;

import org.junit.Before;
import org.junit.Ignore;

import io.debezium.config.AbstractFieldTest;

@Ignore
public class FieldTest extends AbstractFieldTest {

@Before
Expand Down
Expand Up @@ -11,6 +11,7 @@

import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;

import io.debezium.config.Configuration.Builder;
Expand All @@ -22,6 +23,7 @@
import io.debezium.relational.history.DatabaseHistory;
import io.debezium.util.Testing;

@Ignore
public class IncrementalSnapshotIT extends AbstractIncrementalSnapshotWithSchemaChangesSupportTest<SqlServerConnector> {

private SqlServerConnection connection;
Expand Down
Expand Up @@ -10,6 +10,7 @@

import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;

import io.debezium.config.Configuration.Builder;
Expand All @@ -21,6 +22,7 @@
import io.debezium.relational.history.DatabaseHistory;
import io.debezium.util.Testing;

@Ignore
public class IncrementalSnapshotWithRecompileIT extends AbstractIncrementalSnapshotTest<SqlServerConnector> {

private SqlServerConnection connection;
Expand Down
Expand Up @@ -16,6 +16,7 @@
import org.fest.assertions.Assertions;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.config.Configuration;
Expand All @@ -31,6 +32,7 @@
* @author Pradeep Mamillapalli
*
*/
@Ignore
public class SQLServerNumericColumnIT extends AbstractConnectorTest {
private SqlServerConnection connection;

Expand Down
Expand Up @@ -18,6 +18,7 @@
import org.fest.assertions.Assertions;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.config.Configuration;
Expand All @@ -37,6 +38,7 @@
*
* @author Jiri Pechanec
*/
@Ignore
public class SchemaHistoryTopicIT extends AbstractConnectorTest {

private SqlServerConnection connection;
Expand Down
Expand Up @@ -25,6 +25,7 @@
import org.junit.After;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.config.CommonConnectorConfig;
Expand All @@ -50,6 +51,7 @@
*
* @author Jiri Pechanec
*/
@Ignore
public class SnapshotIT extends AbstractConnectorTest {

private static final int INITIAL_RECORDS_PER_TABLE = 500;
Expand Down
Expand Up @@ -15,6 +15,7 @@
import org.apache.kafka.connect.source.SourceRecord;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.config.Configuration;
Expand All @@ -29,6 +30,7 @@
*
* @author Gunnar Morling
*/
@Ignore
public class SnapshotWithSelectOverridesIT extends AbstractConnectorTest {

private static final int INITIAL_RECORDS_PER_TABLE = 10;
Expand Down
Expand Up @@ -12,13 +12,15 @@
import org.apache.kafka.connect.data.Schema;
import org.apache.kafka.connect.data.SchemaBuilder;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.config.Configuration;
import io.debezium.connector.AbstractSourceInfoStructMaker;
import io.debezium.connector.SnapshotRecord;
import io.debezium.relational.TableId;

@Ignore
public class SourceInfoTest {

private SourceInfo source;
Expand Down
Expand Up @@ -15,6 +15,7 @@
import org.apache.kafka.connect.data.Struct;
import org.apache.kafka.connect.source.SourceRecord;
import org.junit.After;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.config.Configuration;
Expand All @@ -29,6 +30,7 @@
*
* @author Jiri Pechanec
*/
@Ignore
public class SpecialCharsInNamesIT extends AbstractConnectorTest {

private SqlServerConnection connection;
Expand Down
Expand Up @@ -16,6 +16,7 @@
import org.fest.assertions.Assertions;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.config.CommonConnectorConfig.BinaryHandlingMode;
Expand All @@ -24,6 +25,7 @@
import io.debezium.embedded.AbstractConnectorTest;
import io.debezium.util.Testing;

@Ignore
public class SqlServerBinaryModeIT extends AbstractConnectorTest {

private SqlServerConnection connection;
Expand Down
Expand Up @@ -19,6 +19,7 @@
import org.fest.assertions.Assertions;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.config.Configuration;
Expand All @@ -38,6 +39,7 @@
*
* @author Jiri Pechanec
*/
@Ignore
public class SqlServerChangeTableSetIT extends AbstractConnectorTest {

private SqlServerConnection connection;
Expand Down
Expand Up @@ -23,6 +23,7 @@
import org.awaitility.Awaitility;
import org.fest.assertions.Assertions;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

import io.debezium.connector.sqlserver.util.TestHelper;
Expand All @@ -44,6 +45,7 @@
*
* @author Horia Chiorean (hchiorea@redhat.com)
*/
@Ignore
public class SqlServerConnectionIT {

private ZoneOffset databaseZoneOffset;
Expand Down
Expand Up @@ -5,8 +5,11 @@
*/
package io.debezium.connector.sqlserver;

import org.junit.Ignore;

import io.debezium.config.ConfigDefinitionMetadataTest;

@Ignore
public class SqlServerConnectorConfigDefTest extends ConfigDefinitionMetadataTest {

public SqlServerConnectorConfigDefTest() {
Expand Down
Expand Up @@ -8,13 +8,15 @@
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import org.junit.Ignore;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import io.debezium.config.Configuration;
import io.debezium.storage.kafka.history.KafkaDatabaseHistory;

@Ignore
public class SqlServerConnectorConfigTest {

private static final Logger LOGGER = LoggerFactory.getLogger(SqlServerConnectorConfigTest.class);
Expand Down

0 comments on commit b7ddf8d

Please sign in to comment.