blob: 1060db9f412cdb21c84b51b7a690b9489ccdefe1 [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.management;
import java.util.Set;
import javax.management.Attribute;
import javax.management.MBeanServer;
import javax.management.ObjectName;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
/**
* @version
*/
public class ManagedTimerTest extends ManagementTestSupport {
public void testTimer() throws Exception {
MBeanServer mbeanServer = getMBeanServer();
ObjectName name = ObjectName.getInstance("org.apache.camel:context=localhost/camel-1,type=endpoints,name=\"timer://foo\\?delay=5000&period=8000\"");
assertEquals("Should be registered", true, mbeanServer.isRegistered(name));
Long period = (Long) mbeanServer.getAttribute(name, "Period");
assertEquals(8000, period.longValue());
String camelId = (String) mbeanServer.getAttribute(name, "CamelId");
assertEquals("camel-1", camelId);
// change period and delay
mbeanServer.setAttribute(name, new Attribute("Period", 500));
mbeanServer.setAttribute(name, new Attribute("Delay", 250));
MockEndpoint mock = getMockEndpoint("mock:result");
mock.reset();
// restart consumer
Set<ObjectName> set = mbeanServer.queryNames(new ObjectName("*:type=consumers,*"), null);
assertEquals(1, set.size());
ObjectName on = set.iterator().next();
mbeanServer.invoke(on, "stop", null, null);
mbeanServer.invoke(on, "start", null, null);
// Take the time to check the service is started to help avoid
// sporadic failure on slower machines.
String state = (String) mbeanServer.getAttribute(on, "State");
assertEquals("Should be started", org.apache.camel.ServiceStatus.Started.name(), state);
// start and we should be done in at most 3 second
mock.expectedMinimumMessageCount(3);
mock.setResultWaitTime(3900);
assertMockEndpointsSatisfied();
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
from("timer://foo?delay=5000&period=8000").to("mock:result");
}
};
}
}