setting order on all AbstractMessageHandlers (not just reply-producers)

This commit is contained in:
Mark Fisher
2009-07-03 02:57:21 +00:00
parent fc51ac5216
commit 960555849a
5 changed files with 130 additions and 13 deletions

View File

@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/integration"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
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">
<channel id="channel"/>
<bridge id="endpoint5" input-channel="cannel" order="5"/>
<header-enricher id="endpoint11" input-channel="channel" correlation-id="x" order="11"/>
<splitter id="endpoint1" ref="bean" method="handle" input-channel="channel" order="1"/>
<object-to-string-transformer id="endpoint13" input-channel="channel" order="13"/>
<filter id="endpoint8" input-channel="channel" ref="bean" method="filter" order="8"/>
<resequencer id="endpoint10" input-channel="channel" order="10"/>
<chain id="endpoint6" input-channel="channel" order="6">
<service-activator ref="bean"/>
</chain>
<service-activator id="endpoint3" input-channel="channel" ref="bean" method="handle" order="3"/>
<payload-deserializing-transformer id="endpoint12" input-channel="channel" order="12"/>
<aggregator id="endpoint4" input-channel="channel" order="4"/>
<payload-serializing-transformer id="endpoint9" input-channel="channel" order="9"/>
<router id="endpoint7" input-channel="channel" ref="bean" method="handle" order="7"/>
<transformer id="endpoint2" input-channel="channel" ref="bean" order="2"/>
<beans:bean id="bean" class="org.springframework.integration.config.xml.OrderedHandlersTests$TestBean"/>
</beans:beans>

View File

@@ -0,0 +1,66 @@
/*
* 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.xml;
import static org.junit.Assert.assertEquals;
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.context.ApplicationContext;
import org.springframework.core.Ordered;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* @author Mark Fisher
* @since 1.0.3
*/
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class OrderedHandlersTests {
@Autowired
private ApplicationContext context;
@Test
public void verifyOrder() {
for (int i = 1; i < 14; i++) {
Object consumer = context.getBean("endpoint" + i);
Object handler = new DirectFieldAccessor(consumer).getPropertyValue("handler");
assertTrue(handler instanceof Ordered);
assertEquals(i, ((Ordered) handler).getOrder());
}
}
static class TestBean {
public Object handle(Object o) {
return o;
}
public boolean filter() {
return true;
}
}
}

View File

@@ -78,7 +78,6 @@ public class OrderedAwareLinkedHashSetTests {
setToTest.add(o9);
setToTest.add(o10);
assertEquals(10, setToTest.size());
System.out.println(setToTest);
Object[] elements = setToTest.toArray();
assertEquals(o7, elements[0]);
assertEquals(o8, elements[1]);
@@ -118,7 +117,6 @@ public class OrderedAwareLinkedHashSetTests {
assertEquals(10, tempList.size());
OrderedAwareLinkedHashSet orderAwareSet = new OrderedAwareLinkedHashSet();
orderAwareSet.addAll(tempList);
System.out.println(orderAwareSet);
Object[] elements = orderAwareSet.toArray();
assertEquals(o7, elements[0]);
assertEquals(o8, elements[1]);