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:
Artem Bilan
2022-10-19 15:09:32 -04:00
committed by GitHub
parent f17a0b3ec0
commit 735d42048c
5 changed files with 2 additions and 9 deletions

View File

@@ -117,8 +117,6 @@ public class AggregatorFunctionProperties {
static final String REDIS = "redis";
static final String GEMFIRE = "gemfire";
}
}

View File

@@ -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 {

View File

@@ -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

View File

@@ -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