blob: f5f98cf6fc869ad518b23339c8b317fb5746366e [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.component.jms.tx;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit4.CamelSpringTestSupport;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* @version
*/
public class JmsToJmsTransactedSecurityTest extends CamelSpringTestSupport {
protected ClassPathXmlApplicationContext createApplicationContext() {
return new ClassPathXmlApplicationContext("/org/apache/camel/component/jms/tx/JmsToJmsTransactedSecurityTest.xml");
}
protected int getExpectedRouteCount() {
return 0;
}
@Test
public void testJmsSecurityFailure() throws Exception {
context.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
from("activemq:queue:foo")
.transacted()
.to("log:foo")
.to("activemq:queue:bar");
from("activemq:queue:bar").to("mock:bar");
}
});
context.start();
MockEndpoint mock = getMockEndpoint("mock:bar");
mock.expectedMessageCount(0);
template.sendBody("activemq:queue:foo", "Hello World");
mock.assertIsSatisfied(3000);
// should be in DLQ
String reply = consumer.receiveBody("activemq:queue:ActiveMQ.DLQ", 5000, String.class);
assertEquals("Hello World", reply);
}
@Test
public void testJmsSecurityOK() throws Exception {
context.addRoutes(new RouteBuilder() {
@Override
public void configure() throws Exception {
from("direct:start")
.to("log:start")
.to("activemq:queue:foo");
from("activemq:queue:foo").to("mock:foo");
}
});
context.start();
getMockEndpoint("mock:foo").expectedBodiesReceived("Hello World");
template.sendBody("direct:start", "Hello World");
assertMockEndpointsSatisfied();
}
}