This commit is contained in:
Mark Fisher
2009-03-12 14:02:49 +00:00
parent 34a977a3a0
commit d3a671cd68
3 changed files with 124 additions and 9 deletions

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:si="http://www.springframework.org/schema/integration"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/integration
http://www.springframework.org/schema/integration/spring-integration-1.0.xsd">
<si:channel id="input"/>
<si:channel id="strings">
<si:queue/>
</si:channel>
<si:channel id="discard">
<si:queue/>
</si:channel>
<bean id="payloadTypeRouter" class="org.springframework.integration.router.PayloadTypeRouter">
<property name="resolutionRequired" value="true"/>
<property name="payloadTypeChannelMap">
<map>
<entry key="java.lang.String" value-ref="strings"/>
</map>
</property>
</bean>
<si:router id="router"
ref="payloadTypeRouter"
input-channel="input"
default-output-channel="discard"/>
</beans>

View File

@@ -0,0 +1,77 @@
/*
* Copyright 2002-2009 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.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
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.PollableChannel;
import org.springframework.integration.core.MessageChannel;
import org.springframework.integration.message.GenericMessage;
import org.springframework.integration.message.StringMessage;
import org.springframework.integration.router.AbstractMessageRouter;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* @author Mark Fisher
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class RouterFactoryBeanDelegationTests {
@Autowired @Qualifier("input")
private MessageChannel input;
@Autowired @Qualifier("strings")
private PollableChannel strings;
@Autowired @Qualifier("discard")
private PollableChannel discard;
@Autowired @Qualifier("org.springframework.integration.config.RouterFactoryBean#0")
private AbstractMessageRouter router;
@Test
public void checkResolutionRequiredConfiguredOnTargetRouter() {
boolean resolutionRequired = (Boolean) new DirectFieldAccessor(router).getPropertyValue("resolutionRequired");
assertTrue("The 'resolutionRequired' property should be 'true'", resolutionRequired);
}
@Test
public void routeWithMappedType() {
input.send(new StringMessage("test"));
assertNull(discard.receive(0));
assertNotNull(strings.receive(0));
}
@Test
public void routeWithUnmappedType() {
input.send(new GenericMessage<Integer>(123));
assertNull(strings.receive(0));
assertNotNull(discard.receive(0));
}
}