Package com.sun.jini.test.impl.fiddler.joinadmin

Source Code of com.sun.jini.test.impl.fiddler.joinadmin.SetLookupGroupsDups

/*
* 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.impl.fiddler.joinadmin;

import com.sun.jini.test.share.GroupsUtil;
import com.sun.jini.qa.harness.AbstractServiceAdmin;

/**
* This class determines whether or not the lookup discovery service can
* successfully replace the set of groups with which it has been configured
* to join with a new set of groups.
*
* This test attempts to replace the finite set of groups with which the
* service is currently configured with another finite set of groups
* containing elements that duplicate at least one element of the initial
* set of groups (and may contain duplicates among its own elements).
*
* Note that this test class is a sub-class of the <code>SetLookupGroups</code>
* class. That parent class performs almost all of the processing for this
* test. This is because the only difference between this test and the test
* being performed by the parent class is in the contents of the set of
* groups with which the lookup discovery service under test is configured.
* Rather than running one test multiple times, editing a single shared
* configuration file for each run, running separate tests that perform
* identical functions but which are associated with different configuration
* files allows for efficient batching of the test runs. Thus, providing
* one parent test class from which all other related tests are sub-classed
* provides for efficient code re-use.
*
* @see <code>com.sun.jini.test.impl.fiddler.joinadmin.SetLookupGroups</code>
*
* @see <code>net.jini.discovery.DiscoveryGroupManagement</code>
*/
public class SetLookupGroupsDups extends SetLookupGroups {

    /** Constructs and returns the set of groups with which to replace
     *  the service's current set of groups (overrides the parent class'
     *  version of this method)
     */
    String[] getTestGroupSet() {
  AbstractServiceAdmin admin =
      (AbstractServiceAdmin) manager.getAdmin(discoverySrvc);
        return GroupsUtil.getGroupsWithDups(admin.getGroups());
    }
}

TOP

Related Classes of com.sun.jini.test.impl.fiddler.joinadmin.SetLookupGroupsDups

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.