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

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

/*
* 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 java.util.logging.Level;

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

import com.sun.jini.test.share.LocatorsUtil;
import com.sun.jini.test.share.JoinAdminUtil;

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

import net.jini.admin.JoinAdmin;
import net.jini.discovery.LookupDiscoveryService;

import net.jini.core.discovery.LookupLocator;

import java.rmi.RemoteException;
import com.sun.jini.qa.harness.AbstractServiceAdmin;

/**
* This class determines whether or not the lookup discovery service can
* successfully return the locators with which it has been configured to join.
*
* This test attempts to retrieve the set of locators with which the service
* initially configured.
*
*
* @see com.sun.jini.qa.harness.QAConfig
* @see com.sun.jini.qa.harness.QATest
*/
public class GetLookupLocators extends AbstractBaseTest {

    private LookupLocator[] expectedLocators = null;

    /** Performs actions necessary to prepare for execution of the
     *  current test.
     *
     *  Starts one lookup discovery service, and then retrieves from the
     *  tests's configuration property file, the set of locators whose
     *  member(s) correspond to the specific the lookup service(s) that
     *  the lookup discovery service is expected to attempt to join.
     */
    public void setup(QAConfig config) throws Exception {
        super.setup(config);
        String joinStr =
      config.getStringConfigVal(serviceName + ".tojoin", null);
        logger.log(Level.FINE, "joinStr from QAConfig = " + joinStr);
  AbstractServiceAdmin admin =
      (AbstractServiceAdmin) manager.getAdmin(discoverySrvc);
        if (admin == null) {
            return;
        }
        expectedLocators = admin.getLocators();
        if(expectedLocators != null){
            if(expectedLocators.length == 0) {
                logger.log(Level.FINE,
         "expectedLocators.length = {no locators}");
            } else {
                LocatorsUtil.displayLocatorSet(expectedLocators,
                                               "expectedLocators",
                                               Level.FINE);
            }
        } else {
            logger.log(Level.FINE, "expectedLocators = null");
        }
    }

    /** Executes the current test by doing the following:
     * 
     *  1. Retrieves the admin instance of the service under test.
     *  2. Through the admin, retrieves the set of locators that the service
     *     is currently configured to join.
     *  3. Determines if the set of locators retrieved through the admin is
     *     equivalent to the set of locators with which the service was
     *     configured when it was started.
     */
    public void run() throws Exception {
        logger.log(Level.FINE, "run()");
        if(discoverySrvc == null) {
            throw new TestException("could not successfully start service "
          + serviceName);
        }
  JoinAdmin joinAdmin = JoinAdminUtil.getJoinAdmin(discoverySrvc);
  LookupLocator[] curLocators = joinAdmin.getLookupLocators();
  LocatorsUtil.displayLocatorSet(curLocators,"curLocators",
               Level.FINE);
  if (!LocatorsUtil.compareLocatorSets(expectedLocators,
               curLocators,
               Level.FINE))
  {
      throw new TestException("Locator sets are not equivalent");
  }
    }
}

TOP

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

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.