GH-373: Re-enable aggregator tests (#377)
Fixes https://github.com/spring-cloud/stream-applications/issues/373 The fix in Spring Integration has made it into the latest SNAPSHOT. See more info in the linked issue * Update to the latest Testcontainers: it does not require credential for pull command any more * Remove obsolete `MessageStoreType.GEMFIRE` * Add `<doclint>syntax</doclint>` to ignore missed javadocs on public methods
This commit is contained in:
@@ -117,8 +117,6 @@ public class AggregatorFunctionProperties {
|
||||
|
||||
static final String REDIS = "redis";
|
||||
|
||||
static final String GEMFIRE = "gemfire";
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -19,7 +19,6 @@ package org.springframework.cloud.fn.aggregator;
|
||||
import java.time.Duration;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import reactor.core.publisher.Flux;
|
||||
import reactor.test.StepVerifier;
|
||||
@@ -47,7 +46,6 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
"aggregator.message-store-entity=aggregatorTest"
|
||||
})
|
||||
@AutoConfigureDataMongo
|
||||
@Disabled
|
||||
public class CustomPropsAndMongoMessageStoreAggregatorTests extends AbstractAggregatorFunctionTests
|
||||
implements MongoDbTestContainerSupport {
|
||||
|
||||
|
||||
@@ -19,7 +19,6 @@ package org.springframework.cloud.fn.aggregator;
|
||||
import java.time.Duration;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import reactor.core.publisher.Flux;
|
||||
import reactor.test.StepVerifier;
|
||||
@@ -35,7 +34,6 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
* @author Artem Bilan
|
||||
* @author Corneil du Plessis
|
||||
*/
|
||||
@Disabled
|
||||
public class DefaultAggregatorTests extends AbstractAggregatorFunctionTests {
|
||||
|
||||
@Test
|
||||
|
||||
@@ -19,7 +19,6 @@ package org.springframework.cloud.fn.aggregator;
|
||||
import java.time.Duration;
|
||||
import java.util.List;
|
||||
|
||||
import org.junit.jupiter.api.Disabled;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import reactor.core.publisher.Flux;
|
||||
import reactor.test.StepVerifier;
|
||||
@@ -37,7 +36,6 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
* @author Corneil du Plessis
|
||||
*/
|
||||
@TestPropertySource(properties = "aggregator.message-store-type=jdbc")
|
||||
@Disabled
|
||||
public class JdbcMessageStoreAggregatorTests extends AbstractAggregatorFunctionTests {
|
||||
|
||||
@Test
|
||||
|
||||
Reference in New Issue
Block a user