Return-Path: Delivered-To: apmail-camel-commits-archive@www.apache.org Received: (qmail 29401 invoked from network); 4 Feb 2010 05:34:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Feb 2010 05:34:22 -0000 Received: (qmail 19715 invoked by uid 500); 4 Feb 2010 05:34:22 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 19666 invoked by uid 500); 4 Feb 2010 05:34:22 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 19657 invoked by uid 99); 4 Feb 2010 05:34:21 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2010 05:34:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 04 Feb 2010 05:34:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DCD8D23889BF; Thu, 4 Feb 2010 05:34:00 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r906371 - /camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ChangeHeaderCaseIssueTest.java Date: Thu, 04 Feb 2010 05:34:00 -0000 To: commits@camel.apache.org From: davsclaus@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100204053400.DCD8D23889BF@eris.apache.org> Author: davsclaus Date: Thu Feb 4 05:34:00 2010 New Revision: 906371 URL: http://svn.apache.org/viewvc?rev=906371&view=rev Log: Added unit test based on user forum issue Added: camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ChangeHeaderCaseIssueTest.java (with props) Added: camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ChangeHeaderCaseIssueTest.java URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ChangeHeaderCaseIssueTest.java?rev=906371&view=auto ============================================================================== --- camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ChangeHeaderCaseIssueTest.java (added) +++ camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ChangeHeaderCaseIssueTest.java Thu Feb 4 05:34:00 2010 @@ -0,0 +1,66 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.apache.camel.issues; + +import java.util.HashMap; +import java.util.Map; + +import org.apache.camel.ContextTestSupport; +import org.apache.camel.Exchange; +import org.apache.camel.Processor; +import org.apache.camel.builder.RouteBuilder; +import org.apache.camel.component.mock.MockEndpoint; + +/** + * @version $Revision$ + */ +public class ChangeHeaderCaseIssueTest extends ContextTestSupport { + + @SuppressWarnings("unchecked") + public void testChangeHeaderCaseIssue() throws Exception { + MockEndpoint mock = getMockEndpoint("mock:result"); + mock.expectedBodiesReceived("Hello World"); + mock.expectedHeaderReceived("SoapAction", "cool"); + + template.sendBodyAndHeader("direct:start", "Hello World", "SOAPAction", "cool"); + + assertMockEndpointsSatisfied(); + + // only the changed case header should exist + Map headers = new HashMap(mock.getReceivedExchanges().get(0).getIn().getHeaders()); + assertEquals("cool", headers.get("SoapAction")); + assertEquals(null, headers.get("SOAPAction")); + } + + @Override + protected RouteBuilder createRouteBuilder() throws Exception { + return new RouteBuilder() { + @Override + public void configure() throws Exception { + interceptSendToEndpoint("mock:result").process(new Processor() { + public void process(Exchange exchange) throws Exception { + // change the case of the header + Object value = exchange.getIn().removeHeader("SOAPAction"); + exchange.getIn().setHeader("SoapAction", value); + } + }); + + from("direct:start").to("mock:result"); + } + }; + } +} Propchange: camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ChangeHeaderCaseIssueTest.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: camel/trunk/camel-core/src/test/java/org/apache/camel/issues/ChangeHeaderCaseIssueTest.java ------------------------------------------------------------------------------ svn:keywords = Rev Date