FileDocCategorySizeDatePackage
BulkAccessTest.javaAPI DocGlassfish v2 API7780Fri May 04 22:23:54 BST 2007com.sun.enterprise.management.base

BulkAccessTest.java

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 * 
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 * 
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License. You can obtain
 * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
 * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 * 
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
 * Sun designates this particular file as subject to the "Classpath" exception
 * as provided by Sun in the GPL Version 2 section of the License file that
 * accompanied this code.  If applicable, add the following below the License
 * Header, with the fields enclosed by brackets [] replaced by your own
 * identifying information: "Portions Copyrighted [year]
 * [name of copyright owner]"
 * 
 * Contributor(s):
 * 
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
package com.sun.enterprise.management.base;

import java.util.Set;
import java.util.HashSet;

import javax.management.ObjectName;
import javax.management.MBeanServerConnection;
import javax.management.AttributeList;
import javax.management.MBeanInfo;
import javax.management.MBeanAttributeInfo;
import javax.management.MBeanOperationInfo;

import com.sun.appserv.management.util.jmx.JMXUtil;

import com.sun.appserv.management.util.misc.GSetUtil;
import com.sun.appserv.management.util.misc.ArrayUtil;
import com.sun.appserv.management.util.misc.CollectionUtil;
import com.sun.appserv.management.base.AMXAttributes;


import com.sun.enterprise.management.AMXTestBase;
import com.sun.enterprise.management.Capabilities;

/**
 */
public final class BulkAccessTest extends AMXTestBase
{
		public
	BulkAccessTest( )
	{
	}
	    public static Capabilities
	getCapabilities()
	{
	    return getOfflineCapableCapabilities( true );
	}
	

		public void
	testGetBulkAccess()
	{
		assert( getBulkAccess() != null );
	}
	
		public void
	testBulkGetMBeanAttributeInfos()
		throws Exception
	{
		final long	start	= now();
		
		final ObjectName[]	objectNames	= getTestUtil().getAllAMXArray();
		
		// get everything in bulk....
		final Object[]	infos	=
			getBulkAccess().bulkGetMBeanAttributeInfo( objectNames );
		
		// now verify that getting it singly yields the same result.
		final MBeanServerConnection	conn	= getConnection();
		for( int i = 0; i < infos.length; ++i )
		{
			
			final MBeanAttributeInfo[]	bulkAttributes	= (MBeanAttributeInfo[])infos[ i ];
			
			final MBeanInfo	info	= conn.getMBeanInfo( objectNames[ i ] );
			assert( ArrayUtil.arraysEqual( info.getAttributes(), bulkAttributes ) );
		}
		printElapsed( "testBulkGetMBeanAttributeInfos", objectNames.length, start );
	}
	
		public void
	testBulkGetMBeanOperationInfos()
		throws Exception
	{
		final long	start	= now();
		
		final ObjectName[]	objectNames	= getTestUtil().getAllAMXArray();
		
		final Object[]	infos	=
			getBulkAccess().bulkGetMBeanOperationInfo( objectNames );
		
		// now verify that getting it singly yields the same result.
		final MBeanServerConnection	conn	= getConnection();
		for( int i = 0; i < infos.length; ++i )
		{
			
			final MBeanOperationInfo[]	bulkOperations	= (MBeanOperationInfo[])infos[ i ];
			
			final MBeanInfo	info	= conn.getMBeanInfo( objectNames[ i ] );
			assert( ArrayUtil.arraysEqual( info.getOperations(), bulkOperations ) );			
		}
		printElapsed( "testBulkGetMBeanOperationInfos", objectNames.length, start );
	}
	
		public void
	testAttributeNamesAttributeCorrect()
		throws Exception
	{
		final long	start	= now();
		
		final ObjectName[]	objectNames	= getTestUtil().getAllAMXArray();
		
		final Object[]	nameArrays	=
			getBulkAccess().bulkGetAttributeNames( objectNames );
		
		final Set<ObjectName>   failed  = new HashSet<ObjectName>();
		// now verify that getting it singly yields the same result.
		for( int i = 0; i < nameArrays.length; ++i )
		{
			final String[]	bulkNames	= (String[])nameArrays[ i ];
			
			// verify that the AttributeNames Attribute contains all the names
			final String[]	attrNames	= (String[])
				getConnection().getAttribute( objectNames[ i ], "AttributeNames" );
			
			final Set<String>	bulkSet		= GSetUtil.newStringSet( bulkNames );
			final Set<String>	attrsSet	= GSetUtil.newStringSet( attrNames );
			if (! bulkSet.equals( attrsSet ) )
			{
			    warning( "testAttributeNamesAttributeCorrect failed for " + objectNames[ i ] );
			    failed.add( objectNames[ i ] );
			}
		}
		
		if ( failed.size() != 0  )
		{
		    assert false : "Failures: " + NEWLINE + CollectionUtil.toString( failed, NEWLINE );
		}
		
		printElapsed( "testAttributeNamesAttributeCorrect", objectNames.length, start );
	}
	
		public void
	testBulkGetMBeanAttributeNames()
		throws Exception
	{
		final long	start	= now();
		
		final ObjectName[]	objectNames	= getTestUtil().getAllAMXArray();
		
		final Object[]	nameArrays	=
			getBulkAccess().bulkGetAttributeNames( objectNames );
		
		for( int i = 0; i < nameArrays.length; ++i )
		{
			final String[]	bulkNames	= (String[])nameArrays[ i ];
			
			final MBeanInfo	info =
				getConnection().getMBeanInfo( objectNames[ i ] );
				
			final String[]	names	= 
				JMXUtil.getAttributeNames( info.getAttributes() );
				
			assert( ArrayUtil.arraysEqual( names, bulkNames ) );
		}
		
		printElapsed( "testBulkGetMBeanAttributeNames", objectNames.length, start );
	}
	
		public void
	testBulkGetAttribute()
		throws Exception
	{
		final long	start	= now();
		
		final String		attrName	= AMXAttributes.ATTR_OBJECT_NAME;
		final ObjectName[]	objectNames	= getTestUtil().getAllAMXArray();
		
		final Object[]	values	=
			getBulkAccess().bulkGetAttribute( objectNames, attrName );
		
		final MBeanServerConnection	conn	= getConnection();
		for( int i = 0; i < objectNames.length; ++i )
		{
			final Object	value	= conn.getAttribute( objectNames[ i ], attrName );
				
			assertEquals( values[ i ], value );
		}
		
		printElapsed( "testBulkGetAttribute", objectNames.length, start );
	}
	
	
		public void
	testBulkGetAttributes()
		throws Exception
	{
		final long	start	= now();
		
		final String[]		attrNames	=  new String[] {
		    "FullType", "Group", "Name", "DomainRootObjectName", "ContainerObjectName" };
		final ObjectName[]	objectNames	= getTestUtil().getAllAMXArray();
		
		final Object[]	values	=
			getBulkAccess().bulkGetAttributes( objectNames, attrNames );
		
		final MBeanServerConnection	conn	= getConnection();
		for( int i = 0; i < objectNames.length; ++i )
		{
			final AttributeList	bulkAttrs	= (AttributeList)values[ i ];
			
			final AttributeList	attrs	= (AttributeList)conn.getAttributes( objectNames[ i ], attrNames );
				
			assertEquals( bulkAttrs, attrs );
		}
		printElapsed( "testBulkGetAttributes", objectNames.length, start );
	}

}