blob: 9bea3edc40fa164b99951bf6bbbb18a5e93abeef [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.activemq.spring;
import org.apache.activemq.broker.BrokerService;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpringTest extends SpringTestSupport {
/**
* Uses ActiveMQConnectionFactory to create the connection context.
* Configuration file is /resources/spring.xml
*
* @throws Exception
*/
public void testSenderWithSpringXml() throws Exception {
String config = "spring.xml";
assertSenderConfig(config);
}
/**
* Spring configured test that uses ActiveMQConnectionFactory for
* connection context and ActiveMQQueue for destination. Configuration
* file is /resources/spring-queue.xml.
*
* @throws Exception
*/
public void testSenderWithSpringXmlAndQueue() throws Exception {
String config = "spring-queue.xml";
assertSenderConfig(config);
}
/**
* Spring configured test that uses JNDI. Configuration file is
* /resources/spring-jndi.xml.
*
* @throws Exception
*/
public void testSenderWithSpringXmlUsingJNDI() throws Exception {
String config = "spring-jndi.xml";
assertSenderConfig(config);
}
/**
* Spring configured test where in the connection context is set to use
* an embedded broker. Configuration file is /resources/spring-embedded.xml
* and /resources/activemq.xml.
*
* @throws Exception
*/
public void testSenderWithSpringXmlEmbeddedBrokerConfiguredViaXml() throws Exception {
String config = "spring-embedded.xml";
assertSenderConfig(config);
}
/**
* Spring configured test case that tests the remotely deployed xsd
* http://people.apache.org/repository/org.apache.activemq/xsds/activemq-core-4.1-SNAPSHOT.xsd
*
* @throws Exception
*/
public void testSenderWithSpringXmlUsingSpring2NamespacesWithEmbeddedBrokerConfiguredViaXml() throws Exception {
String config = "spring-embedded-xbean.xml";
assertSenderConfig(config);
}
/**
* Spring configured test case that tests the locally generated xsd
*
* @throws Exception
*/
public void testSenderWithSpringXmlUsingSpring2NamespacesWithEmbeddedBrokerConfiguredViaXmlUsingLocalXsd() throws Exception {
String config = "spring-embedded-xbean-local.xml";
assertSenderConfig(config);
}
public void testStartFalse() throws Exception {
String config = "spring-start-false.xml";
Thread.currentThread().setContextClassLoader(SpringTest.class.getClassLoader());
context = new ClassPathXmlApplicationContext(config);
BrokerService broker = (BrokerService)context.getBean(BrokerService.class);
assertFalse("Broker is started", broker.isStarted());
}
}