From 37fcdbe4d791b8866fe40761ca1a0076a9d51a36 Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Mon, 8 Aug 2011 18:41:20 -0400 Subject: [PATCH] INT-2033 added test for 'order' attribute in AMQP module --- ...AmqpOutboundGatewayParserTests-context.xml | 28 +++++++++++++ .../AmqpOutboundGatewayParserTests.java | 39 +++++++++++++++++++ ...utboundGatewayIntegrationTests-context.xml | 3 +- 3 files changed, 69 insertions(+), 1 deletion(-) create mode 100644 spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/AmqpOutboundGatewayParserTests-context.xml create mode 100644 spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/AmqpOutboundGatewayParserTests.java diff --git a/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/AmqpOutboundGatewayParserTests-context.xml b/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/AmqpOutboundGatewayParserTests-context.xml new file mode 100644 index 0000000000..f564bbf447 --- /dev/null +++ b/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/AmqpOutboundGatewayParserTests-context.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + diff --git a/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/AmqpOutboundGatewayParserTests.java b/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/AmqpOutboundGatewayParserTests.java new file mode 100644 index 0000000000..e0b2d12052 --- /dev/null +++ b/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/AmqpOutboundGatewayParserTests.java @@ -0,0 +1,39 @@ +/* + * Copyright 2002-2011 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.amqp.config; + +import org.junit.Test; +import org.springframework.context.ApplicationContext; +import org.springframework.context.support.ClassPathXmlApplicationContext; +import org.springframework.integration.amqp.outbound.AmqpOutboundEndpoint; +import org.springframework.integration.test.util.TestUtils; + +import static org.junit.Assert.assertEquals; + +/** + * @author Oleg Zhurakousky + * + */ +public class AmqpOutboundGatewayParserTests { + + @Test + public void testGatewayConfig(){ + ApplicationContext context = new ClassPathXmlApplicationContext("AmqpOutboundGatewayParserTests-context.xml", this.getClass()); + AmqpOutboundEndpoint gateway = context.getBean(AmqpOutboundEndpoint.class); + assertEquals(5, gateway.getOrder()); + assertEquals(context.getBean("fromRabbit"), TestUtils.getPropertyValue(gateway, "outputChannel")); + } +} diff --git a/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/OutboundGatewayIntegrationTests-context.xml b/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/OutboundGatewayIntegrationTests-context.xml index 944c47f076..9f9fd7a6bc 100644 --- a/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/OutboundGatewayIntegrationTests-context.xml +++ b/spring-integration-amqp/src/test/java/org/springframework/integration/amqp/config/OutboundGatewayIntegrationTests-context.xml @@ -32,7 +32,8 @@ reply-channel="fromRabbit" exchange-name="si.test.exchange" routing-key="si.test.binding" - amqp-template="amqpTemplate"/> + amqp-template="amqpTemplate" + order="1"/>