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

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

/*
* 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.LocatorsUtil;
import net.jini.core.discovery.LookupLocator;
import java.net.MalformedURLException;
import com.sun.jini.qa.harness.AbstractServiceAdmin;

/**
* This class determines whether or not the lookup discovery service can
* successfully replace set of locators with which it has been configured
* to join with a new set of locators.
*
* This test attempts to replace a non-empty set of locators with which the
* service is currently configured with another non-emtpy set of locators
* that contains elements that duplicate at least one element of the
* service's initial set of locators (and may contain duplicates among its
* own elements).
*
* Note that this test class is a sub-class of the class
* <code>SetLookupLocatorss</code>. 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 locators with which
* the test and/or 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.DiscoveryLocatorManagement</code>
*/
public class SetLookupLocatorsDups extends SetLookupLocators {

    /** Constructs and returns the set of locators with which to replace
     *  the service's current set of locators (overrides the parent class'
     *  version of this method)
     */
    LookupLocator[] getTestLocatorSet() throws MalformedURLException {
  AbstractServiceAdmin admin =
      (AbstractServiceAdmin) manager.getAdmin(discoverySrvc);
        return (LocatorsUtil.getLocatorsWithDups(admin.getLocators()));
    }
}

TOP

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

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.