|
39 | 39 | import io.debezium.connector.oracle.OracleConnection;
|
40 | 40 | import io.debezium.jdbc.JdbcConfiguration;
|
41 | 41 | import org.apache.commons.lang3.StringUtils;
|
| 42 | +import org.junit.Ignore; |
42 | 43 | import org.junit.Rule;
|
43 | 44 | import org.junit.Test;
|
44 | 45 | import org.junit.rules.Timeout;
|
@@ -71,55 +72,64 @@ public class OracleSourceITCase extends OracleSourceTestBase {
|
71 | 72 | @Rule public final Timeout timeoutPerTest = Timeout.seconds(300);
|
72 | 73 |
|
73 | 74 | @Test
|
| 75 | + @Ignore |
74 | 76 | public void testReadSingleTableWithSingleParallelism() throws Exception {
|
75 | 77 | testOracleParallelSource(
|
76 | 78 | 1, FailoverType.NONE, FailoverPhase.NEVER, new String[] {"CUSTOMERS"});
|
77 | 79 | }
|
78 | 80 |
|
79 | 81 | @Test
|
| 82 | + @Ignore |
80 | 83 | public void testReadSingleTableWithMultipleParallelism() throws Exception {
|
81 | 84 | testOracleParallelSource(
|
82 | 85 | 4, FailoverType.NONE, FailoverPhase.NEVER, new String[] {"CUSTOMERS"});
|
83 | 86 | }
|
84 | 87 |
|
85 | 88 | // Failover tests
|
86 | 89 | @Test
|
| 90 | + @Ignore |
87 | 91 | public void testTaskManagerFailoverInSnapshotPhase() throws Exception {
|
88 | 92 | testOracleParallelSource(
|
89 | 93 | FailoverType.TM, FailoverPhase.SNAPSHOT, new String[] {"CUSTOMERS"});
|
90 | 94 | }
|
91 | 95 |
|
92 | 96 | @Test
|
| 97 | + @Ignore |
93 | 98 | public void testTaskManagerFailoverInRedoLogPhase() throws Exception {
|
94 | 99 | testOracleParallelSource(
|
95 | 100 | FailoverType.TM, FailoverPhase.REDO_LOG, new String[] {"CUSTOMERS"});
|
96 | 101 | }
|
97 | 102 |
|
98 | 103 | @Test
|
| 104 | + @Ignore |
99 | 105 | public void testJobManagerFailoverInSnapshotPhase() throws Exception {
|
100 | 106 | testOracleParallelSource(
|
101 | 107 | FailoverType.JM, FailoverPhase.SNAPSHOT, new String[] {"CUSTOMERS"});
|
102 | 108 | }
|
103 | 109 |
|
104 | 110 | @Test
|
| 111 | + @Ignore |
105 | 112 | public void testJobManagerFailoverInRedoLogPhase() throws Exception {
|
106 | 113 | testOracleParallelSource(
|
107 | 114 | FailoverType.JM, FailoverPhase.REDO_LOG, new String[] {"CUSTOMERS"});
|
108 | 115 | }
|
109 | 116 |
|
110 | 117 | @Test
|
| 118 | + @Ignore |
111 | 119 | public void testTaskManagerFailoverSingleParallelism() throws Exception {
|
112 | 120 | testOracleParallelSource(
|
113 | 121 | 1, FailoverType.TM, FailoverPhase.SNAPSHOT, new String[] {"CUSTOMERS"});
|
114 | 122 | }
|
115 | 123 |
|
116 | 124 | @Test
|
| 125 | + @Ignore |
117 | 126 | public void testJobManagerFailoverSingleParallelism() throws Exception {
|
118 | 127 | testOracleParallelSource(
|
119 | 128 | 1, FailoverType.JM, FailoverPhase.SNAPSHOT, new String[] {"CUSTOMERS"});
|
120 | 129 | }
|
121 | 130 |
|
122 | 131 | @Test
|
| 132 | + @Ignore |
123 | 133 | public void testReadSingleTableWithSingleParallelismAndSkipBackfill() throws Exception {
|
124 | 134 | testOracleParallelSource(
|
125 | 135 | DEFAULT_PARALLELISM,
|
@@ -166,6 +176,7 @@ public void testEnableBackfillWithPreHighWaterMark() throws Exception {
|
166 | 176 | }
|
167 | 177 |
|
168 | 178 | @Test
|
| 179 | + @Ignore |
169 | 180 | public void testEnableBackfillWithPostLowWaterMark() throws Exception {
|
170 | 181 | List<String> records = getResultOfWithHooks(false, 21, USE_POST_LOWWATERMARK_HOOK);
|
171 | 182 |
|
@@ -198,6 +209,7 @@ public void testEnableBackfillWithPostLowWaterMark() throws Exception {
|
198 | 209 | }
|
199 | 210 |
|
200 | 211 | @Test
|
| 212 | + @Ignore |
201 | 213 | public void testSkipBackfillWithPreHighWaterMark() throws Exception {
|
202 | 214 | List<String> records = getResultOfWithHooks(true, 25, USE_PRE_HIGHWATERMARK_HOOK);
|
203 | 215 |
|
@@ -234,6 +246,7 @@ public void testSkipBackfillWithPreHighWaterMark() throws Exception {
|
234 | 246 | }
|
235 | 247 |
|
236 | 248 | @Test
|
| 249 | + @Ignore |
237 | 250 | public void testSkipBackfillWithPostLowWaterMark() throws Exception {
|
238 | 251 |
|
239 | 252 | List<String> records = getResultOfWithHooks(true, 25, USE_POST_LOWWATERMARK_HOOK);
|
|
0 commit comments