blob: faa3c62e228515b41bf9974b5ef31d1f12da8745 [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.jetty;
import java.lang.management.ManagementFactory;
import java.util.List;
import java.util.Set;
import javax.management.MBeanServer;
import javax.management.MBeanServerConnection;
import javax.management.MBeanServerFactory;
import javax.management.ObjectName;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.Test;
public class JettyEnableJmxTest extends CamelTestSupport {
private String serverUri0 =
"http://localhost:9080/myservice?enableJmx=true";
private String serverUri1 =
"http://localhost:9081/myservice?enableJmx=true";
private String serverUri2 =
"http://localhost:9082/myservice?enableJmx=false";
private String serverUri3 =
"http://localhost:9083/myservice?enableJmx=false";
private MBeanServerConnection mbsc;
@Override
public void tearDown() throws Exception {
releaseMBeanServers();
mbsc = null;
super.tearDown();
disableJMX();
}
@Override
public void setUp() throws Exception {
enableJMX();
releaseMBeanServers();
super.setUp();
mbsc = getMBeanConnection();
}
@SuppressWarnings("unchecked")
@Test
public void testEnableJmxProperty() throws Exception {
MockEndpoint mock = getMockEndpoint("mock:result");
String expectedBody = "<html><body>foo</body></html>";
mock.expectedBodiesReceived(expectedBody, expectedBody, expectedBody, expectedBody);
mock.expectedHeaderReceived("x", "foo");
template.requestBody(serverUri0 + "&x=foo", null, Object.class);
template.requestBody(serverUri1 + "&x=foo", null, Object.class);
template.requestBody(serverUri2 + "&x=foo", null, Object.class);
template.requestBody(serverUri3 + "&x=foo", null, Object.class);
assertMockEndpointsSatisfied();
Set<ObjectName> s = mbsc.queryNames(new ObjectName("org.eclipse.jetty.server:type=server,*"), null);
assertEquals("Could not find 2 Jetty Server: " + s, 2, s.size());
}
@SuppressWarnings("unchecked")
@Test
public void testShutdown() throws Exception {
Set<ObjectName> s = mbsc.queryNames(new ObjectName("org.eclipse.jetty.server:type=server,*"), null);
assertEquals("Could not find 2 Jetty Server: " + s, 2, s.size());
context.stop();
s = mbsc.queryNames(new ObjectName("org.eclipse.jetty.server:type=server,*"), null);
assertEquals("Could not find 0 Jetty Server: " + s, 0, s.size());
}
@SuppressWarnings("unchecked")
@Test
public void testEndpointDisconnect() throws Exception {
Set<ObjectName> s = mbsc.queryNames(new ObjectName("org.eclipse.jetty.server:type=server,*"), null);
assertEquals("Could not find 2 Jetty Server: " + s, 2, s.size());
context.stopRoute("route0");
s = mbsc.queryNames(new ObjectName("org.eclipse.jetty.server:type=server,*"), null);
assertEquals("Could not find 1 Jetty Server: " + s, 1, s.size());
context.stopRoute("route2");
context.stopRoute("route3");
s = mbsc.queryNames(new ObjectName("org.eclipse.jetty.server:type=server,*"), null);
assertEquals("Could not find 1 Jetty Server: " + s, 1, s.size());
context.stopRoute("route1");
s = mbsc.queryNames(new ObjectName("org.eclipse.jetty.server:type=server,*"), null);
assertEquals("Could not find 0 Jetty Server: " + s, 0, s.size());
}
@Override
protected boolean useJmx() {
return true;
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
public void configure() throws Exception {
from("jetty:" + serverUri0)
.routeId("route0")
.setBody().simple("<html><body>${in.header.x}</body></html>")
.to("mock:result");
from("jetty:" + serverUri1)
.routeId("route1")
.setBody().simple("<html><body>${in.header.x}</body></html>")
.to("mock:result");
from("jetty:" + serverUri2)
.routeId("route2")
.setBody().simple("<html><body>${in.header.x}</body></html>")
.to("mock:result");
from("jetty:" + serverUri3)
.routeId("route3")
.setBody().simple("<html><body>${in.header.x}</body></html>")
.to("mock:result");
}
};
}
@SuppressWarnings("unchecked")
protected void releaseMBeanServers() {
List<MBeanServer> servers = MBeanServerFactory.findMBeanServer(null);
for (MBeanServer server : servers) {
MBeanServerFactory.releaseMBeanServer(server);
}
}
protected MBeanServerConnection getMBeanConnection() throws Exception {
if (mbsc == null) {
mbsc = ManagementFactory.getPlatformMBeanServer();
}
return mbsc;
}
}