blob: e0def90348821a92e2005923b2c658047ddc0012 [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.util.LinkedHashMap;
import org.junit.Test;
import static org.junit.Assert.assertEquals;
/**
* Various tests for the uri builder
*/
public class JMXUriBuilderTest {
@Test
public void defaultsToPlatform() throws Exception {
assertEquals("jmx:platform", new JMXUriBuilder().toString());
}
@Test
public void remote() throws Exception {
assertEquals("jmx:service:jmx:rmi:///jndi/rmi://localhost:1099/jmxrmi", new JMXUriBuilder("service:jmx:rmi:///jndi/rmi://localhost:1099/jmxrmi").toString());
}
@Test
public void withServerName() throws Exception {
assertEquals("jmx:service:jmx:rmi:///jndi/rmi://localhost:1099/jmxrmi", new JMXUriBuilder().withServerName("service:jmx:rmi:///jndi/rmi://localhost:1099/jmxrmi").toString());
}
@Test
public void format() throws Exception {
assertEquals("jmx:platform?format=raw", new JMXUriBuilder().withFormat("raw").toString());
}
@Test
public void credentials() throws Exception {
assertEquals("jmx:platform?user=me&password=pass", new JMXUriBuilder().withUser("me").withPassword("pass").toString());
}
@Test
public void objectName() throws Exception {
assertEquals("jmx:platform?objectDomain=myDomain&objectName=oname", new JMXUriBuilder().withObjectDomain("myDomain").withObjectName("oname").toString());
}
@Test
public void notificationFilter() throws Exception {
assertEquals("jmx:platform?notificationFilter=#foo", new JMXUriBuilder().withNotificationFilter("#foo").toString());
}
@Test
public void handback() throws Exception {
assertEquals("jmx:platform?handback=#hb", new JMXUriBuilder().withHandback("#hb").toString());
}
@Test
public void objectProperties() throws Exception {
LinkedHashMap<String, String> map = new LinkedHashMap<String, String>();
map.put("one", "1");
map.put("two", "2");
assertEquals("jmx:platform?key.one=1&key.two=2", new JMXUriBuilder().withObjectProperties(map).toString());
}
@Test
public void withObjectPropertiesReference() throws Exception {
assertEquals("jmx:platform?objectProperties=#op", new JMXUriBuilder().withObjectPropertiesReference("#op").toString());
}
@Test
public void withObjectPropertiesReferenceSansHashmark() throws Exception {
assertEquals("jmx:platform?objectProperties=#op", new JMXUriBuilder().withObjectPropertiesReference("op").toString());
}
}