/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.test.integration.jmx; import java.util.HashMap; import java.util.Map; import java.util.Set; import javax.management.MBeanServerConnection; import javax.management.ObjectName; import javax.management.remote.JMXConnector; import javax.management.remote.JMXConnectorFactory; import javax.management.remote.JMXServiceURL; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.junit.Arquillian; import org.jboss.as.arquillian.api.ContainerResource; import org.jboss.as.arquillian.container.ManagementClient; import org.jboss.as.jmx.model.ModelControllerMBeanHelper; import org.jboss.as.test.integration.common.DefaultConfiguration; import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.xnio.IoUtils; /** * * @author <a href="kabir.khan@jboss.com">Kabir Khan</a> */ @RunWith(Arquillian.class) @RunAsClient public class ModelControllerMBeanTestCase { private static final String RESOLVED_DOMAIN = "jboss.as"; static final ObjectName RESOLVED_MODEL_FILTER = createObjectName(RESOLVED_DOMAIN + ":*"); static final ObjectName RESOLVED_ROOT_MODEL_NAME = ModelControllerMBeanHelper.createRootObjectName(RESOLVED_DOMAIN); static JMXConnector connector; static MBeanServerConnection connection; @ContainerResource private ManagementClient managementClient; @Before public void initialize() throws Exception { connection = setupAndGetConnection(); } @After public void closeConnection() throws Exception { IoUtils.safeClose(connector); } /** * Test that all the MBean infos can be read properly */ @Test public void testAllMBeanInfos() throws Exception { Set<ObjectName> names = connection.queryNames(RESOLVED_MODEL_FILTER, null); Map<ObjectName, Exception> failedInfos = new HashMap<ObjectName, Exception>(); for (ObjectName name : names) { try { Assert.assertNotNull(connection.getMBeanInfo(name)); } catch (Exception e) { failedInfos.put(name, e); } } Assert.assertTrue(failedInfos.toString(), failedInfos.isEmpty()); } private static ObjectName createObjectName(String name) { try { return ObjectName.getInstance(name); } catch (Exception e) { throw new RuntimeException(e); } } private MBeanServerConnection setupAndGetConnection() throws Exception { // Make sure that we can connect to the MBean server String urlString = System .getProperty("jmx.service.url", "service:jmx:http-remoting-jmx://" + managementClient.getMgmtAddress() + ":" + managementClient.getMgmtPort()); JMXServiceURL serviceURL = new JMXServiceURL(urlString); connector = JMXConnectorFactory.connect(serviceURL,DefaultConfiguration.credentials()); return connector.getMBeanServerConnection(); } }