Package com.sun.jini.test.spec.discoveryservice.event

Source Code of com.sun.jini.test.spec.discoveryservice.event.SetGroupsReplaceSome

/*
* 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 com.sun.jini.test.spec.discoveryservice.event;

import java.util.logging.Level;

import com.sun.jini.test.spec.discoveryservice.AbstractBaseTest;

import com.sun.jini.qa.harness.TestException;
import com.sun.jini.qa.harness.QAConfig;

import com.sun.jini.test.share.DiscoveryProtocolSimulator;
import com.sun.jini.test.share.GroupsUtil;

import net.jini.discovery.LookupDiscoveryRegistration;

import net.jini.core.lookup.ServiceRegistrar;

import java.io.IOException;
import java.rmi.RemoteException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

/**
* This class verifies that the lookup discovery service operates in a manner
* consistent with the specification. In particular, this class verifies
* that the lookup discovery service can successfully employ both the
* multicast and unicast discovery protocols on behalf of one or more clients
* registered with that service to discover a number of pre-determined lookup
* services and then, for each discovered lookup service, send to the
* appropriate registration listener, the appropriate remote event containing
* the set of member groups with which the discovered lookup service was
* configured.
*
* The environment in which this class expects to operate is as follows:
* <p><ul>
*   <li> one or more lookup services, each belonging to a finite set of
*        member groups
*   <li> one instance of the lookup discovery service
*   <li> one or more registrations with the lookup discovery service
*   <li> each registration with the lookup discovery service requests that
*        some of the lookup services be discovered through only group
*        discovery, some through only locator discovery, and some through
*        both group and locator discovery
*   <li> each registration with the lookup discovery service will receive
*        remote discovery events through an instance of RemoteEventListener
* </ul><p>
*
* If the lookup discovery service utility functions as specified, then
* for each discovered lookup service, a <code>RemoteDiscoveryEvent</code>
* instance indicating a discovered event will be sent to the listener of
* each registration that requested discovery of the lookup service.
* Additionally, each event received will accurately reflect the new set
* of member groups.
*/
public class SetGroupsReplaceSome extends AbstractBaseTest {

    protected String[] newGroupsToDiscover = new String[] {"SetGroups_newSet"};
    protected Map groupsMap = new HashMap(1);
    protected HashMap regInfoMap = registrationMap;
    protected HashSet proxiesReplaced = new HashSet(11);

    /** Performs actions necessary to prepare for execution of the
     *  current test (refer to the description of this method in the
     *  parent class).
     *
     *  Retrieves additional configuration values.
     */
    public void setup(QAConfig config) throws Exception {
        super.setup(config);
        useDiscoveryList = useGroupAndLocDiscovery0;
        groupsMap        = getPassiveCommDiscardMap(useDiscoveryList);
        discardType      = ACTIVE_DISCARDED;
        regInfoMap       = registrationMap;
    }//end setup

    /** Executes the current test by doing the following:
     * <p>
     *   <ul>
     *     <li> registers with the lookup discovery service, requesting
     *          the discovery of the the desired lookup services using the
     *          desired discovery protocol
     *     <li> verifies that the discovery process is working by waiting
     *          for the expected discovery events
     *     <li> verifies that the lookup discovery service utility under test
     *          sends the expected number of events - containing the expected
     *          set of member groups
     *   </ul>
     */
    public void run() throws Exception {
        setNewGroups(groupsMap);
        logger.log(Level.FINE, "run()");
        for(int i=0;i<nRegistrations;i++) {
            logger.log(Level.FINE,
                       "lookup discovery service registration_"+i+" --");
            doRegistration(getGroupsToDiscoverByIndex(i),
                           getLocatorsToDiscoverByIndex(i),
                           i, leaseDuration);
        }//end loop
        waitForDiscovery();
        setGroupsDo(newGroupsToDiscover);
        waitForDiscard(discardType);
    }//end run

    /** Common code, shared by this class and its sub-classes, that is
     *  invoked by the run() method. This method constructs the new
     *  set of groups with which to re-configure the each registration for
     *  discovery.
     */
    void setNewGroups(Map groupsMap) {
        ArrayList groupsList = new ArrayList();
        Iterator iter = genMap.keySet().iterator();
        for(int i=0;iter.hasNext();i++) {
            DiscoveryProtocolSimulator curGen =
                                       (DiscoveryProtocolSimulator)iter.next();
            String[]         curGroups   = curGen.getMemberGroups();
            ServiceRegistrar lookupProxy = curGen.getLookupProxy();
            if( groupsMap.containsKey(lookupProxy) ) {
                for(int j=0;j<curGroups.length;j++) {
                    groupsList.add(curGroups[j]+"_new");
                }//end loop
                proxiesReplaced.add(lookupProxy);
            } else {
                for(int j=0;j<curGroups.length;j++) {
                    groupsList.add(curGroups[j]);
                }//end loop
      }//endif
        }//end loop
        newGroupsToDiscover = (String[])(groupsList).toArray
                                              (new String[groupsList.size()]);
    }//end setNewGroups

    /** Common code, shared by this class and its sub-classes, that is
     *  invoked by the run() method. This method invokes the setGroups()
     *  method on each registration.
     */
    void setGroupsDo(String[] newGroups) throws Exception {
        Set eSet = regInfoMap.entrySet();
        Iterator iter = eSet.iterator();
        for(int j=0;iter.hasNext();j++) {
            Map.Entry pair = (Map.Entry)iter.next();
            LookupDiscoveryRegistration ldsReg =
                                    (LookupDiscoveryRegistration)pair.getKey();

            LDSEventListener regListener = (LDSEventListener)pair.getValue();
            RegistrationInfo regInfo = regListener.getRegInfo();
            int rID = regInfo.handback;
      logger.log(Level.FINE,
           "registration_"+rID
           +" -- request discovery of new groups");
      if((newGroups != null)&&(newGroups.length <= 0)) {
    logger.log(Level.FINE, "   NO_GROUPS");
      } else {
    GroupsUtil.displayGroupSet(newGroups,
             "   newGroup",Level.FINE);
      }//endif
      setExpectedDiscardedMap(regInfo);
      ldsReg.setGroups(newGroups);
        }//end loop(j)
    }//end setGroupsDo

    void setExpectedDiscardedMap(RegistrationInfo regInfo) {
        Map gMap = getPassiveCommDiscardMap
                              ( getGroupListToUseByIndex(regInfo.handback) );
        Map expectedMap = getExpectedDiscardedMap(regInfo,discardType);
        Set kSet = expectedMap.keySet();
        Iterator iter = kSet.iterator();
        for(int j=0;iter.hasNext();j++) {
            ServiceRegistrar lookupProxy = (ServiceRegistrar)iter.next();
            if(    !gMap.containsKey(lookupProxy)
                || !proxiesReplaced.contains(lookupProxy)
                || (    (regInfo.groupsToDiscover!=null)
                     && (regInfo.groupsToDiscover).length == 0) )
            {
                iter.remove();
      }//endif
  }//end loop
    }//end setExpectedDiscardedMap

} //end class SetGroupsReplaceSome
TOP

Related Classes of com.sun.jini.test.spec.discoveryservice.event.SetGroupsReplaceSome

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.