blob: 198445012390fb347fdfea925b40f036c1fac682 [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.testng;
import java.util.concurrent.TimeUnit;
import org.apache.camel.CamelContext;
import org.apache.camel.EndpointInject;
import org.apache.camel.Produce;
import org.apache.camel.ProducerTemplate;
import org.apache.camel.ServiceStatus;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.management.DefaultManagementStrategy;
import org.apache.camel.test.spring.StopWatchTestExecutionListener;
import org.apache.camel.util.StopWatch;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.annotation.DirtiesContext;
import org.springframework.test.context.ContextConfiguration;
import org.testng.annotations.Test;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;
import static org.testng.Assert.assertNull;
import static org.testng.Assert.assertTrue;
@ContextConfiguration
//Put here to prevent Spring context caching across tests since some tests inherit from this test and
//therefore use the same Spring context.
@DirtiesContext
public class AbstractCamelTestNGSpringContextTestsPlainTest
extends AbstractCamelTestNGSpringContextTests {
@Autowired
protected CamelContext camelContext;
@Autowired
protected CamelContext camelContext2;
@EndpointInject(uri = "mock:a", context = "camelContext")
protected MockEndpoint mockA;
@EndpointInject(uri = "mock:b", context = "camelContext")
protected MockEndpoint mockB;
@EndpointInject(uri = "mock:c", context = "camelContext2")
protected MockEndpoint mockC;
@Produce(uri = "direct:start", context = "camelContext")
protected ProducerTemplate start;
@Produce(uri = "direct:start2", context = "camelContext2")
protected ProducerTemplate start2;
@Test
public void testAppContextInject() {
assertNotNull(applicationContext);
}
@Test
public void testPositive() throws Exception {
assertEquals(ServiceStatus.Started, camelContext.getStatus());
assertEquals(ServiceStatus.Started, camelContext2.getStatus());
mockA.expectedBodiesReceived("David");
mockB.expectedBodiesReceived("Hello David");
mockC.expectedBodiesReceived("David");
start.sendBody("David");
start2.sendBody("David");
MockEndpoint.assertIsSatisfied(camelContext);
}
@Test
public void testJmx() throws Exception {
assertEquals(DefaultManagementStrategy.class, camelContext.getManagementStrategy().getClass());
}
@Test
public void testShutdownTimeout() throws Exception {
assertEquals(10, camelContext.getShutdownStrategy().getTimeout());
assertEquals(TimeUnit.SECONDS, camelContext.getShutdownStrategy().getTimeUnit());
}
@Test
public void testStopwatch() {
StopWatch stopWatch = StopWatchTestExecutionListener.getStopWatch();
assertNotNull(stopWatch);
assertTrue(stopWatch.taken() < 100);
}
@Test
public void testExcludedRoute() {
assertNotNull(camelContext.getRoute("excludedRoute"));
}
@Test
public void testProvidesBreakpoint() {
assertNull(camelContext.getDebugger());
assertNull(camelContext2.getDebugger());
}
@SuppressWarnings("deprecation")
@Test
public void testLazyLoadTypeConverters() {
assertTrue(camelContext.isLazyLoadTypeConverters());
assertTrue(camelContext2.isLazyLoadTypeConverters());
}
}