Skip to content

Commit

Permalink
[FLINK-22085][tests] Remove timeouts from KafkaSourceLegacyITCase
Browse files Browse the repository at this point in the history
  • Loading branch information
dawidwys authored and TheodoreLx committed Apr 28, 2021
1 parent 211751c commit e419375
Showing 1 changed file with 21 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,119 +43,119 @@ public static void prepare() throws Exception {
.setProducerSemantic(FlinkKafkaProducer.Semantic.AT_LEAST_ONCE);
}

@Test(timeout = 120000)
@Test
public void testFailOnNoBroker() throws Exception {
runFailOnNoBrokerTest();
}

@Test(timeout = 60000)
@Test
public void testConcurrentProducerConsumerTopology() throws Exception {
runSimpleConcurrentProducerConsumerTopology();
}

@Test(timeout = 60000)
@Test
public void testKeyValueSupport() throws Exception {
runKeyValueTest();
}

// --- canceling / failures ---

@Test(timeout = 60000)
@Test
public void testCancelingEmptyTopic() throws Exception {
runCancelingOnEmptyInputTest();
}

@Test(timeout = 60000)
@Test
public void testCancelingFullTopic() throws Exception {
runCancelingOnFullInputTest();
}

// --- source to partition mappings and exactly once ---

@Test(timeout = 60000)
@Test
public void testOneToOneSources() throws Exception {
runOneToOneExactlyOnceTest();
}

@Test(timeout = 60000)
@Test
public void testOneSourceMultiplePartitions() throws Exception {
runOneSourceMultiplePartitionsExactlyOnceTest();
}

@Test(timeout = 60000)
@Test
public void testMultipleSourcesOnePartition() throws Exception {
runMultipleSourcesOnePartitionExactlyOnceTest();
}

// --- broker failure ---

@Test(timeout = 60000)
@Test
public void testBrokerFailure() throws Exception {
runBrokerFailureTest();
}

// --- special executions ---

@Test(timeout = 60000)
@Test
public void testBigRecordJob() throws Exception {
runBigRecordTestTopology();
}

@Test(timeout = 60000)
@Test
public void testMultipleTopicsWithLegacySerializer() throws Exception {
runProduceConsumeMultipleTopics(true);
}

@Test(timeout = 60000)
@Test
public void testMultipleTopicsWithKafkaSerializer() throws Exception {
runProduceConsumeMultipleTopics(false);
}

@Test(timeout = 60000)
@Test
public void testAllDeletes() throws Exception {
runAllDeletesTest();
}

// --- startup mode ---

@Test(timeout = 60000)
@Test
public void testStartFromEarliestOffsets() throws Exception {
runStartFromEarliestOffsets();
}

@Test(timeout = 60000)
@Test
public void testStartFromLatestOffsets() throws Exception {
runStartFromLatestOffsets();
}

@Test(timeout = 60000)
@Test
public void testStartFromGroupOffsets() throws Exception {
runStartFromGroupOffsets();
}

@Test(timeout = 60000)
@Test
public void testStartFromSpecificOffsets() throws Exception {
runStartFromSpecificOffsets();
}

@Test(timeout = 60000)
@Test
public void testStartFromTimestamp() throws Exception {
runStartFromTimestamp();
}

// --- offset committing ---

@Test(timeout = 60000)
@Test
public void testCommitOffsetsToKafka() throws Exception {
runCommitOffsetsToKafka();
}

@Test(timeout = 60000)
@Test
public void testAutoOffsetRetrievalAndCommitToKafka() throws Exception {
runAutoOffsetRetrievalAndCommitToKafka();
}

@Test(timeout = 60000)
@Test
public void testCollectingSchema() throws Exception {
runCollectingSchemaTest();
}
Expand Down

0 comments on commit e419375

Please sign in to comment.