From 69401c263c33bffae54bc524ca396ef3944fe773 Mon Sep 17 00:00:00 2001 From: Sergei Egorov Date: Fri, 1 Nov 2019 17:13:11 +0100 Subject: [PATCH] Back-pressure tests for SubscribableChPubAdapter * Add back-pressure tests for SubscribableChannelPublisherAdapter --- .../MessageChannelReactiveUtilsTest.java | 101 ++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 spring-integration-core/src/test/java/org/springframework/integration/channel/MessageChannelReactiveUtilsTest.java diff --git a/spring-integration-core/src/test/java/org/springframework/integration/channel/MessageChannelReactiveUtilsTest.java b/spring-integration-core/src/test/java/org/springframework/integration/channel/MessageChannelReactiveUtilsTest.java new file mode 100644 index 0000000000..8fd69c5929 --- /dev/null +++ b/spring-integration-core/src/test/java/org/springframework/integration/channel/MessageChannelReactiveUtilsTest.java @@ -0,0 +1,101 @@ +/* + * Copyright 2002-2019 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.springframework.integration.channel; + +import static org.assertj.core.api.Assertions.assertThat; + +import java.time.Duration; + +import org.junit.Test; + +import org.springframework.messaging.SubscribableChannel; +import org.springframework.messaging.support.GenericMessage; + +import reactor.core.Disposable; +import reactor.core.Disposables; +import reactor.core.scheduler.Schedulers; +import reactor.test.StepVerifier; +import reactor.util.concurrent.Queues; + +public class MessageChannelReactiveUtilsTest { + + @Test + public void testBackpressureWithSubscribableChannel() { + Disposable.Composite compositeDisposable = Disposables.composite(); + try { + DirectChannel channel = new DirectChannel(); + assertThat(channel).isInstanceOf(SubscribableChannel.class); + int initialRequest = 10; + StepVerifier.create(MessageChannelReactiveUtils.toPublisher(channel), initialRequest) + .expectSubscription() + .then(() -> { + compositeDisposable.add( + Schedulers.boundedElastic().schedule(() -> { + while (true) { + if (channel.getSubscriberCount() > 0) { + channel.send(new GenericMessage<>("foo")); + } + } + }) + ); + }) + .expectNextCount(initialRequest) + .expectNoEvent(Duration.ofMillis(100)) + .thenCancel() + .verify(Duration.ofSeconds(1)); + } + finally { + compositeDisposable.dispose(); + } + } + + @Test + public void testOverproducingWithSubscribableChannel() { + DirectChannel channel = new DirectChannel(); + channel.setCountsEnabled(true); + assertThat(channel).isInstanceOf(SubscribableChannel.class); + + Disposable.Composite compositeDisposable = Disposables.composite(); + try { + int initialRequest = 10; + StepVerifier.create(MessageChannelReactiveUtils.toPublisher(channel), initialRequest) + .expectSubscription() + .then(() -> { + compositeDisposable.add( + Schedulers.boundedElastic().schedule(() -> { + while (true) { + if (channel.getSubscriberCount() > 0) { + channel.send(new GenericMessage<>("foo")); + } + } + }) + ); + }) + .expectNextCount(initialRequest) + .thenAwait(Duration.ofMillis(100)) + .thenCancel() + .verify(Duration.ofSeconds(1)); + } + finally { + compositeDisposable.dispose(); + } + + assertThat(channel.getMetrics().getSendCountLong()) + .as("produced") + .isLessThanOrEqualTo(Queues.SMALL_BUFFER_SIZE); + } +}