Package com.sun.jini.test.spec.lookupservice.test_set02

Source Code of com.sun.jini.test.spec.lookupservice.test_set02.ExpiredEventLeaseRenew$Listener

/*
* 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.lookupservice.test_set02;
import com.sun.jini.qa.harness.QAConfig;

import java.util.logging.Level;
import com.sun.jini.qa.harness.TestException;

import java.rmi.RemoteException;
import java.io.IOException;
import com.sun.jini.test.spec.lookupservice.QATestRegistrar;
import com.sun.jini.test.spec.lookupservice.QATestUtils;
import net.jini.core.lookup.ServiceRegistrar;
import net.jini.core.lookup.ServiceItem;
import net.jini.core.lookup.ServiceRegistration;
import net.jini.core.lookup.ServiceMatches;
import net.jini.core.lookup.ServiceTemplate;
import net.jini.core.lease.*;
import net.jini.core.event.*;

/** This class is used to test the UnknownLeaseException throws by
*  Event Lease renew(). It create nInstances of EventLease, then
*  wait for the leases to expire, then call renew on each lease.
*  verify that we get UnknownLeaseException each time when calling
*  renew().
*/
public class ExpiredEventLeaseRenew extends QATestRegistrar {
    /** the expected number of matches when testing lookup by ID */
    private static int EXPECTED_N_MATCHES = 1;
    /* lease duration to 10 seconds */
    private final static long DEFAULT_LEASEDURATION = 10000;
    private static long leaseDuration = DEFAULT_LEASEDURATION;
    private ServiceItem[] srvcItems ;
    private ServiceRegistration[] srvcRegs ;
    private Lease[] srvcLeases ;
    private ServiceTemplate[] srvcIDTmpls;
    private ServiceRegistrar proxy;
    private int nInstances = 0;
    private long leaseStartTime;
    private LeaseMap leaseMap;
    private Lease[] evntLeases ;
    private EventRegistration[] evntRegs;

    /** Class which handles all events sent by the lookup service */
    private class Listener extends BasicListener
                           implements RemoteEventListener, java.io.Serializable
    {
  Listener() throws RemoteException {
      super();
  }
        /** Method called remotely by lookup to handle the generated event. */
  public void notify(RemoteEvent theEvent)
                  throws UnknownEventException, java.rmi.RemoteException
  {
  }
    }

    /** The event handler for the services registered by this class */
    private static RemoteEventListener listener;

    /** Performs actions necessary to prepare for execution of the
     *  current QA test.
     *
     *  Creates the lookup service. Loads and instantiates all service
     *  classes. Retrieves the proxy to the lookup Registrar. Establishes
     *  an approximate service lease start time for each service item by
     *  retrieving the current system time. Registers each service class
     *  instance with a specified lease duration. Creates an array of
     *  Leases in which each element contains the service lease of one
     *  of the registered services. Creates an array of ServiceTemplates
     *  in which each element contains the service ID of one of the
     *  registered service items.
     *  @exception QATestException will usually indicate an "unresolved"
     *  condition because at this point the test has not yet begun.
     */
    public void setup(QAConfig sysConfig) throws Exception {
        int i;
  super.setup(sysConfig);
  listener = new Listener();
        nInstances = super.getNInstances();
  srvcItems = super.createServiceItems(TEST_SRVC_CLASSES);
  proxy = super.getProxy();
  srvcIDTmpls = new ServiceTemplate[nInstances];
   srvcRegs = registerAll(leaseDuration);
        srvcLeases = new Lease[srvcRegs.length];

  for(i=0; i<srvcLeases.length; i++) {
      srvcLeases[i] = getRegistrationLease(srvcRegs[i]);
  }
  for(i=0; i<srvcIDTmpls.length; i++) {
      srvcIDTmpls[i] = new ServiceTemplate(srvcRegs[i].getServiceID(),
                                                 null,null);
  }
   evntRegs = new EventRegistration[nInstances];
  evntLeases = new Lease[nInstances];
  registerAllEvents();
  leaseStartTime = QATestUtils.getCurTime();
   }

    public void run() throws Exception {
  QATestUtils.computeDurAndWait(leaseStartTime, leaseDuration + 1000);
  doLeaseRenew();
    }

    /* For each registered service, registers an event notification request,
     * with a specified lease duration, based on the contents of the
     * corresponding template created during setup and corresponding to
     * the appropriate transition mask. Populates the array of Leases so
     * that each element contains one of the event leases returned by the
     * event notification registration process.
     */
    private void registerAllEvents() throws Exception {
        for(int i=0; i<evntRegs.length; i++) {
      EventRegistration er;
      er = proxy.notify(srvcIDTmpls[i],
            ServiceRegistrar.TRANSITION_NOMATCH_MATCH 
            | ServiceRegistrar.TRANSITION_MATCH_NOMATCH
            | ServiceRegistrar.TRANSITION_MATCH_MATCH,
            listener,
            null,
            leaseDuration);
      evntRegs[i] = prepareEventRegistration(er);
      evntLeases[i] = getEventLease(evntRegs[i]);
  }
    } 

    private void doLeaseRenew() throws Exception {
  for(int i=0; i<evntLeases.length; i++) {
      try {
    evntLeases[i].renew(leaseDuration);
                throw new TestException("UnknownLeaseException was not thrown");
      } catch (UnknownLeaseException e) {
      }
  }
    }
}
TOP

Related Classes of com.sun.jini.test.spec.lookupservice.test_set02.ExpiredEventLeaseRenew$Listener

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.