/* * Copyright 2002-2014 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.config; 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.List; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.DirectFieldAccessor; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.integration.channel.interceptor.WireTap; import org.springframework.integration.filter.ExpressionEvaluatingSelector; import org.springframework.integration.test.util.TestUtils; 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.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; /** * @author Mark Fisher * @author Gary Russell */ @ContextConfiguration @RunWith(SpringJUnit4ClassRunner.class) public class WireTapParserTests { @Autowired MessageChannel noSelectors; @Autowired MessageChannel accepting; @Autowired MessageChannel rejecting; @Autowired MessageChannel withId; @Autowired PollableChannel wireTapChannel; @Autowired @Qualifier("wireTap") WireTap wireTap; @Autowired List<WireTap> wireTaps; @Test public void simpleWireTap() { assertNull(wireTapChannel.receive(0)); Message<?> original = new GenericMessage<String>("test"); noSelectors.send(original); Message<?> intercepted = wireTapChannel.receive(0); assertNotNull(intercepted); assertEquals(original, intercepted); } @Test public void simpleWireTapWithIdAndSelectorExpression() { assertThat(TestUtils.getPropertyValue(wireTap, "selector"), instanceOf(ExpressionEvaluatingSelector.class)); Message<?> original = new GenericMessage<String>("test"); withId.send(original); Message<?> intercepted = wireTapChannel.receive(0); assertNotNull(intercepted); assertEquals(original, intercepted); } @Test public void wireTapWithAcceptingSelector() { assertNull(wireTapChannel.receive(0)); Message<?> original = new GenericMessage<String>("test"); accepting.send(original); Message<?> intercepted = wireTapChannel.receive(0); assertNotNull(intercepted); assertEquals(original, intercepted); } @Test public void wireTapWithRejectingSelector() { assertNull(wireTapChannel.receive(0)); Message<?> original = new GenericMessage<String>("test"); rejecting.send(original); Message<?> intercepted = wireTapChannel.receive(0); assertNull(intercepted); } @Test public void wireTapTimeouts() { int defaultTimeoutCount = 0; int expectedTimeoutCount = 0; int otherTimeoutCount = 0; for (WireTap wireTap : wireTaps) { long timeout = ((Long) new DirectFieldAccessor(wireTap).getPropertyValue("timeout")).longValue(); if (timeout == 0) { defaultTimeoutCount++; } else if (timeout == 1234) { expectedTimeoutCount++; } else { otherTimeoutCount++; } } assertEquals(4, defaultTimeoutCount); assertEquals(1, expectedTimeoutCount); assertEquals(0, otherTimeoutCount); } }