blob: 5a7d3d370ee3ab1999750789b9b56cdfcb89a97b [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.jmx;
import java.io.File;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import java.util.Collections;
import javax.management.MBeanServerFactory;
import javax.management.remote.JMXConnectorServer;
import javax.management.remote.JMXConnectorServerFactory;
import javax.management.remote.JMXServiceURL;
import org.junit.After;
import org.junit.Test;
/**
* Tests against a "remote" JMX server. Creates an RMI Registry at port 61000
* and registers the simple mbean
* <p/>
* Only test here is the notification test since everything should work the
* same as the platform server. May want to refactor the exisiting tests to
* run the full suite on the local platform and this "remote" setup.
*/
public class JMXRemoteTest extends SimpleBeanFixture {
JMXServiceURL url;
JMXConnectorServer connector;
Registry registry;
@After
public void tearDown() throws Exception {
super.tearDown();
connector.stop();
}
@SuppressWarnings("unchecked")
@Override
protected void initServer() throws Exception {
registry = LocateRegistry.createRegistry(61000);
url = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://localhost:61000/" + DOMAIN);
// create MBean server
server = MBeanServerFactory.createMBeanServer(DOMAIN);
// create JMXConnectorServer MBean
connector = JMXConnectorServerFactory.newJMXConnectorServer(url, Collections.EMPTY_MAP, server);
connector.start();
}
@Override
protected JMXUriBuilder buildFromURI() {
String uri = url.toString();
return super.buildFromURI().withServerName(uri);
}
@Test
public void notification() throws Exception {
getSimpleMXBean().touch();
getMockFixture().waitForMessages();
getMockFixture().assertMessageReceived(new File("src/test/resources/consumer-test/touched.xml"));
}
}