/* * Copyright 2016 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 * * http://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.event.dsl; import static org.hamcrest.Matchers.instanceOf; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertNull; import static org.junit.Assert.assertThat; import java.util.Map; import java.util.concurrent.atomic.AtomicReference; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.context.ApplicationContext; import org.springframework.context.ApplicationEvent; import org.springframework.context.ApplicationListener; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.integration.channel.QueueChannel; import org.springframework.integration.config.EnableIntegration; import org.springframework.integration.dsl.IntegrationFlow; import org.springframework.integration.dsl.IntegrationFlows; import org.springframework.integration.dsl.channel.MessageChannels; import org.springframework.integration.event.core.MessagingEvent; import org.springframework.integration.event.inbound.ApplicationEventListeningMessageProducer; import org.springframework.integration.event.outbound.ApplicationEventPublishingMessageHandler; import org.springframework.integration.handler.GenericHandler; import org.springframework.integration.store.MessageGroupStore; import org.springframework.integration.store.SimpleMessageStore; import org.springframework.messaging.Message; import org.springframework.messaging.MessageChannel; import org.springframework.messaging.PollableChannel; import org.springframework.messaging.support.GenericMessage; import org.springframework.test.annotation.DirtiesContext; import org.springframework.test.context.junit4.SpringRunner; /** * @author Artem Bilan * * @since 5.0 */ @RunWith(SpringRunner.class) @DirtiesContext public class IntegrationFlowEventsTests { private static MessageGroupStore messageGroupStore = new SimpleMessageStore(); private static String GROUP_ID = "testGroup"; @BeforeClass public static void setup() { messageGroupStore.addMessageToGroup(GROUP_ID, new GenericMessage<>("foo")); } @Autowired private ApplicationContext applicationContext; @Autowired private PollableChannel resultsChannel; @Autowired private PollableChannel delayedResults; @Autowired @Qualifier("flow3Input") private MessageChannel flow3Input; @Autowired private AtomicReference<Object> eventHolder; @Test public void testEventsFlow() { assertNull(this.eventHolder.get()); this.flow3Input.send(new GenericMessage<>("2")); assertNotNull(this.eventHolder.get()); assertEquals(4, this.eventHolder.get()); } @Test public void testRawApplicationEventListeningMessageProducer() { this.applicationContext.publishEvent(new TestApplicationEvent1()); Message<?> receive = this.resultsChannel.receive(10000); assertNotNull(receive); assertThat(receive.getPayload(), instanceOf(TestApplicationEvent1.class)); this.applicationContext.publishEvent(new TestApplicationEvent2()); receive = this.resultsChannel.receive(10000); assertNotNull(receive); assertThat(receive.getPayload(), instanceOf(TestApplicationEvent2.class)); } @Test public void testDelayRescheduling() { Message<?> receive = this.delayedResults.receive(10000); assertNotNull(receive); assertEquals("foo", receive.getPayload()); assertEquals(1, messageGroupStore.getMessageGroupCount()); assertEquals(0, messageGroupStore.getMessageCountForAllMessageGroups()); } @Configuration @EnableIntegration public static class ContextConfiguration { @Bean public AtomicReference<Object> eventHolder() { return new AtomicReference<>(); } @Bean public ApplicationListener<MessagingEvent> eventListener() { return event -> eventHolder().set(event.getMessage().getPayload()); } @Bean public IntegrationFlow flow3() { return IntegrationFlows.from("flow3Input") .handle(Integer.class, new GenericHandler<Integer>() { @SuppressWarnings("unused") public void setFoo(String foo) { } @SuppressWarnings("unused") public void setFoo(Integer foo) { } @Override public Object handle(Integer p, Map<String, Object> h) { return p * 2; } }) .handle(new ApplicationEventPublishingMessageHandler()) .get(); } @Bean public ApplicationListener<?> applicationListener() { ApplicationEventListeningMessageProducer producer = new ApplicationEventListeningMessageProducer(); producer.setEventTypes(TestApplicationEvent1.class); producer.setOutputChannel(resultsChannel()); return producer; } @Bean public PollableChannel resultsChannel() { return new QueueChannel(); } @Bean public IntegrationFlow eventProducerFlow() { ApplicationEventListeningMessageProducer producer = new ApplicationEventListeningMessageProducer(); producer.setEventTypes(TestApplicationEvent2.class); return IntegrationFlows.from(producer) .channel(resultsChannel()) .get(); } @Bean public IntegrationFlow delayFlow() { return flow -> flow .delay(GROUP_ID, e -> e .messageStore(messageGroupStore) .id("delayer")) .channel(MessageChannels.queue("delayedResults")); } } @SuppressWarnings("serial") private static final class TestApplicationEvent1 extends ApplicationEvent { TestApplicationEvent1() { super("TestApplicationEvent1"); } } @SuppressWarnings("serial") private static final class TestApplicationEvent2 extends ApplicationEvent { TestApplicationEvent2() { super("TestApplicationEvent2"); } } }