blob: 7b371972be282a1c54e2c4fab36f0b99316b3c23 [file] [log] [blame]
/**
* 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.itest.jms;
import javax.naming.Context;
import org.apache.activemq.camel.component.ActiveMQComponent;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.builder.NotifyBuilder;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.apache.camel.util.jndi.JndiContext;
import org.junit.Test;
import static org.apache.camel.Exchange.CONTENT_TYPE;
import static org.apache.camel.Exchange.HTTP_METHOD;
import static org.apache.camel.Exchange.HTTP_RESPONSE_CODE;
/**
* Based on user forum.
*
* @version
*/
public class JmsHttpPostIssueTest extends CamelTestSupport {
@Test
public void testJmsInOnlyHttpPostIssue() throws Exception {
NotifyBuilder notify = new NotifyBuilder(context).whenCompleted(1).from("jms*").create();
template.sendBody("jms:queue:in", "Hello World");
assertTrue("Should complete the JMS route", notify.matchesMockWaitTime());
}
@Test
public void testJmsInOutHttpPostIssue() throws Exception {
String out = template.requestBody("jms:queue:in", "Hello World", String.class);
assertEquals("OK", out);
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
public void configure() {
from("jms:queue:in")
.setBody().simple("name=${body}")
.setHeader(CONTENT_TYPE).constant("application/x-www-form-urlencoded")
.setHeader(HTTP_METHOD).constant("POST")
.to("http://localhost:9080/myservice");
from("jetty:http://0.0.0.0:9080/myservice")
.process(new Processor() {
@Override
public void process(Exchange exchange) throws Exception {
String body = exchange.getIn().getBody(String.class);
assertEquals("name=Hello World", body);
exchange.getOut().setBody("OK");
exchange.getOut().setHeader(CONTENT_TYPE, "text/plain");
exchange.getOut().setHeader(HTTP_RESPONSE_CODE, 200);
}
});
}
};
}
@Override
protected Context createJndiContext() throws Exception {
JndiContext answer = new JndiContext();
// add ActiveMQ with embedded broker
ActiveMQComponent amq = ActiveMQComponent.activeMQComponent("vm://localhost?broker.persistent=false");
amq.setCamelContext(context);
answer.bind("jms", amq);
return answer;
}
}