/* * 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.brooklyn.entity.java; import static org.testng.Assert.assertEquals; import org.apache.brooklyn.core.entity.Entities; import org.apache.brooklyn.core.test.entity.TestApplication; import org.apache.brooklyn.entity.java.JmxSupport; import org.apache.brooklyn.entity.java.UsesJmx.JmxAgentModes; import org.apache.brooklyn.util.core.ResourceUtils; import org.apache.brooklyn.util.core.flags.TypeCoercions; import org.apache.brooklyn.util.exceptions.Exceptions; import org.apache.brooklyn.util.javalang.JavaClassNames; import org.apache.brooklyn.util.maven.MavenRetriever; import org.apache.brooklyn.util.stream.Streams; import org.apache.brooklyn.util.text.Strings; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.testng.Assert; import org.testng.annotations.AfterMethod; import org.testng.annotations.Test; @Test public class JmxSupportTest { private static final Logger log = LoggerFactory.getLogger(JmxSupportTest.class); private TestApplication app; @AfterMethod(alwaysRun = true) public void tearDown() { if (app!=null) Entities.destroyAll(app.getManagementContext()); } // defaults to JMXMP for most locations (or, in this case, if it does not yet know the location) public void testJmxAutodetect() { app = TestApplication.Factory.newManagedInstanceForTests(); JmxSupport support = new JmxSupport(app, null); Assert.assertEquals(support.getJmxAgentMode(), JmxAgentModes.JMXMP_AND_RMI); } public void testJmxmpJarExistence() { app = TestApplication.Factory.newManagedInstanceForTests(); app.config().set(JmxSupport.JMX_AGENT_MODE, JmxAgentModes.JMXMP); JmxSupport support = new JmxSupport(app, null); Assert.assertEquals(support.getJmxAgentJarMavenArtifact().getArtifactId(), "brooklyn-jmxmp-agent"); Assert.assertTrue(ResourceUtils.create(this).doesUrlExist(support.getJmxAgentJarUrl()), support.getJmxAgentJarUrl()); Assert.assertTrue(support.getJmxAgentJarUrl().contains("-shaded-"), support.getJmxAgentJarUrl()); } public void testJmxrmiJarExistence() { app = TestApplication.Factory.newManagedInstanceForTests(); JmxSupport support = new JmxSupport(app, null); app.config().set(JmxSupport.JMX_AGENT_MODE, JmxAgentModes.JMX_RMI_CUSTOM_AGENT); Assert.assertEquals(support.getJmxAgentJarMavenArtifact().getArtifactId(), "brooklyn-jmxrmi-agent"); Assert.assertTrue(ResourceUtils.create(this).doesUrlExist(support.getJmxAgentJarUrl()), support.getJmxAgentJarUrl()); } @Test public void testCoerceStringtoJmxAgentModes() { // Test coercions assertEquals(TypeCoercions.coerce("AUTODETECT", JmxAgentModes.class), JmxAgentModes.AUTODETECT); assertEquals(TypeCoercions.coerce("JMXMP_AND_RMI", JmxAgentModes.class), JmxAgentModes.JMXMP_AND_RMI); assertEquals(TypeCoercions.coerce("JMX_RMI_CUSTOM_AGENT", JmxAgentModes.class), JmxAgentModes.JMX_RMI_CUSTOM_AGENT); // Test different case format options assertEquals(TypeCoercions.coerce("jmxRmiCustomAgent", JmxAgentModes.class), JmxAgentModes.JMX_RMI_CUSTOM_AGENT); assertEquals(TypeCoercions.coerce("jmx_rmi_custom_agent", JmxAgentModes.class), JmxAgentModes.JMX_RMI_CUSTOM_AGENT); assertEquals(TypeCoercions.coerce("jmx-rmi-custom-agent", JmxAgentModes.class), JmxAgentModes.JMX_RMI_CUSTOM_AGENT); assertEquals(TypeCoercions.coerce("JmxRmiCustomAgent", JmxAgentModes.class), JmxAgentModes.JMX_RMI_CUSTOM_AGENT); } @Test(groups="Integration") public void testJmxmpJarHostedValidity() { app = TestApplication.Factory.newManagedInstanceForTests(); app.config().set(JmxSupport.JMX_AGENT_MODE, JmxAgentModes.JMXMP); JmxSupport support = new JmxSupport(app, null); // make sure we get a valid jar, big enough (no redirect, and classifier correclty set for this!) // (we don't want the unshaded jar, that would be no good!) checkValidArchive(MavenRetriever.hostedUrl(support.getJmxAgentJarMavenArtifact()), 100*1000); } @Test(groups="Integration") public void testJmxrmiJarHostedValidity() { app = TestApplication.Factory.newManagedInstanceForTests(); JmxSupport support = new JmxSupport(app, null); app.config().set(JmxSupport.JMX_AGENT_MODE, JmxAgentModes.JMX_RMI_CUSTOM_AGENT); // make sure we get a valid jar, big enough (no redirect) checkValidArchive(MavenRetriever.hostedUrl(support.getJmxAgentJarMavenArtifact()), 4000); } private void checkValidArchive(String url, long minSize) { byte[] bytes; try { bytes = Streams.readFully(ResourceUtils.create(this).getResourceFromUrl(url)); log.info("read "+bytes.length+" bytes from "+url+" for "+JavaClassNames.callerNiceClassAndMethod(1)); } catch (Exception e) { log.warn("Unable to read URL "+url+" for " +JavaClassNames.callerNiceClassAndMethod(1)+ "; this test may require hosted (sonatype/mavencentral) repo to be populated"); Assert.fail("Unable to read URL "+url+"; this test may require hosted (sonatype/mavencentral) repo to be populated"); throw Exceptions.propagate(e); } // confirm this follow redirects! Assert.assertTrue(bytes.length > minSize, "download of "+url+" is suspect ("+Strings.makeSizeString(bytes.length)+")"); // (could also check it is a zip etc) } }