blob: 4833c6379259753d4bf0efbce2d47a5687497fb0 [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.spring;
import java.util.Map;
import org.apache.camel.impl.DefaultConsumerTemplate;
import org.apache.camel.impl.DefaultProducerTemplate;
import org.springframework.context.support.AbstractXmlApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* @version
*/
public class CamelContextAwareTest extends SpringTestSupport {
protected CamelContextAwareBean bean1;
public void testInjectionPoints() throws Exception {
assertNotNull("No CamelContext injected!", bean1.getCamelContext());
Map<String, String> properties = bean1.getCamelContext().getProperties();
assertNotNull("the properties should not been null", properties);
assertEquals("No properties injected", properties.size(), 1);
assertEquals("Should get the value of org.apache.camel.test", properties.get("org.apache.camel.test"), "this is a test first");
}
public void testCamelTemplates() throws Exception {
DefaultProducerTemplate producer1 = getMandatoryBean(DefaultProducerTemplate.class, "producer1");
assertEquals("Inject a wrong camel context", producer1.getContext().getName(), "camel1");
DefaultProducerTemplate producer2 = getMandatoryBean(DefaultProducerTemplate.class, "producer2");
assertEquals("Inject a wrong camel context", producer2.getContext().getName(), "camel2");
DefaultConsumerTemplate consumer = getMandatoryBean(DefaultConsumerTemplate.class, "consumer");
assertEquals("Inject a wrong camel context", consumer.getCamelContext().getName(), "camel2");
}
@Override
protected void setUp() throws Exception {
super.setUp();
bean1 = getMandatoryBean(CamelContextAwareBean.class, "bean1");
}
protected AbstractXmlApplicationContext createApplicationContext() {
return new ClassPathXmlApplicationContext("org/apache/camel/spring/camelContextAwareBean.xml");
}
protected int getExpectedRouteCount() {
return 0;
}
}