Package org.jacorb.test.ir

Source Code of org.jacorb.test.ir.IFRServerSetup

/*
*        JacORB  - a free Java ORB
*
*   Copyright (C) 1997-2006 The JacORB project.
*
*   This library is free software; you can redistribute it and/or
*   modify it under the terms of the GNU Library General Public
*   License as published by the Free Software Foundation; either
*   version 2 of the License, or (at your option) any later version.
*
*   This library is distributed in the hope that it will be useful,
*   but WITHOUT ANY WARRANTY; without even the implied warranty of
*   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
*   Library General Public License for more details.
*
*   You should have received a copy of the GNU Library General Public
*   License along with this library; if not, write to the Free
*   Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

package org.jacorb.test.ir;

import java.io.File;
import java.util.Properties;

import junit.extensions.TestSetup;
import junit.framework.Test;

import org.jacorb.test.common.ClientServerSetup;
import org.jacorb.test.common.CommonSetup;
import org.jacorb.test.common.IDLTestSetup;
import org.omg.CORBA.Repository;
import org.omg.CORBA.RepositoryHelper;
import org.omg.PortableServer.POA;

/**
* @author Alphonse Bendt
* @version $Id$
*/
public class IFRServerSetup extends TestSetup
{
    private final IDLTestSetup idlSetup;
    private final Properties additionalProps = new Properties();
    private ClientServerSetup clientServerSetup;

    public IFRServerSetup(Test test, Object idlFile, Object idlArgs, Properties optionalIRServerProps)
    {
        super(test);

        idlSetup = new IDLTestSetup(test, idlFile, idlArgs);

        if (optionalIRServerProps != null)
        {
            additionalProps.putAll(optionalIRServerProps);
        }
    }

    public void setUp() throws Exception
    {
        idlSetup.setUp();

        File dirGeneration = idlSetup.getDirectory();

        final File iorFile = File.createTempFile("IFR_IOR", ".ior");
        iorFile.deleteOnExit();

        Properties serverProps = new Properties();
        serverProps.setProperty(CommonSetup.JACORB_REGRESSION_DISABLE_SECURITY, "true");
        serverProps.setProperty("jacorb.test.ir.classpath", dirGeneration.toString());
        serverProps.setProperty("jacorb.test.ir.iorfile", iorFile.toString());
        serverProps.setProperty("jacorb.ir.log.verbosity", "2");

        serverProps.putAll(this.additionalProps);

        Properties clientProps = new Properties();
        clientProps.setProperty("ORBInitRef.InterfaceRepository", "file://" + iorFile.toString());
        clientProps.setProperty(CommonSetup.JACORB_REGRESSION_DISABLE_SECURITY, "true");

        clientServerSetup = new ClientServerSetup(null, IRServerRunner.class.getName(), "ignored", clientProps, serverProps);

        clientServerSetup.setUp();
    }

    public void tearDown() throws Exception
    {
        clientServerSetup.tearDown();
        additionalProps.clear();
        clientServerSetup = null;

        idlSetup.tearDown();
    }

    public Repository getRepository()
    {
        return RepositoryHelper.narrow(clientServerSetup.getServerObject());
    }

    public POA getClientRootPOA()
    {
        return clientServerSetup.getClientRootPOA();
    }
}
TOP

Related Classes of org.jacorb.test.ir.IFRServerSetup

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.