Package org.codehaus.spice.jndikit.rmi.test

Source Code of org.codehaus.spice.jndikit.rmi.test.RMIContextTestCase

/*
* Copyright (C) The Spice Group. All rights reserved.
*
* This software is published under the terms of the Spice
* Software License version 1.1, a copy of which has been included
* with this distribution in the LICENSE.txt file.
*/
package org.codehaus.spice.jndikit.rmi.test;

import java.util.Hashtable;
import javax.naming.Context;
import javax.naming.NamingException;
import javax.naming.ServiceUnavailableException;

import org.codehaus.spice.jndikit.Namespace;
import org.codehaus.spice.jndikit.NamingProvider;
import org.codehaus.spice.jndikit.RemoteContext;
import org.codehaus.spice.jndikit.StandardNamespace;
import org.codehaus.spice.jndikit.rmi.RMIInitialContextFactory;
import org.codehaus.spice.jndikit.test.TestStateFactory;

/**
* Unit test for RMI context.
*
* @author Tim Anderson
* @version $Revision: 1.2 $
*/
public class RMIContextTestCase
    extends AbstractRMIContextTestCase
{
    public RMIContextTestCase()
    {
        super( new StandardNamespaceICF() );
    }

    static class StandardNamespaceICF extends RMIInitialContextFactory
    {

        public Context getInitialContext( Hashtable environment )
            throws NamingException
        {
            environment.put( Context.STATE_FACTORIES,
                             TestStateFactory.class.getName() );
            return super.getInitialContext( environment );
        }

        protected Namespace newNamespace( final Hashtable environment )
            throws NamingException
        {
            try
            {
                final NamingProvider provider =
                    ( NamingProvider ) environment.get(
                        RemoteContext.NAMING_PROVIDER );

                return new StandardNamespace( provider.getNameParser() );
            }
            catch( final Exception e )
            {
                if( e instanceof NamingException )
                {
                    throw ( NamingException ) e;
                }
                else
                {
                    final ServiceUnavailableException sue =
                        new ServiceUnavailableException( e.getMessage() );
                    sue.setRootCause( e );
                    throw sue;
                }
            }
        }
    }
}
TOP

Related Classes of org.codehaus.spice.jndikit.rmi.test.RMIContextTestCase

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.