Package org.jacorb.test.orb

Source Code of org.jacorb.test.orb.ReleaseTest

package org.jacorb.test.orb;

/*
*        JacORB  - a free Java ORB
*
*   Copyright (C) 1997-2012 Gerald Brose / The JacORB Team.
*
*   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.
*/

import junit.framework.Test;
import junit.framework.TestSuite;
import org.jacorb.test.BasicServer;
import org.jacorb.test.BasicServerHelper;
import org.jacorb.test.common.ClientServerSetup;
import org.jacorb.test.common.ClientServerTestCase;
import org.jacorb.test.common.JacORBTestSuite;

public class ReleaseTest extends ClientServerTestCase
{
    private BasicServer server;

    public ReleaseTest(String name, ClientServerSetup setup)
    {
        super(name, setup);
    }

    public void setUp() throws Exception
    {
        server = BasicServerHelper.narrow( setup.getServerObject() );
    }

    protected void tearDown() throws Exception
    {
        server = null;
    }

    public static Test suite()
    {
        TestSuite suite = new JacORBTestSuite("Basic client/server tests",
                                              ReleaseTest.class);
        ClientServerSetup setup =
            new ClientServerSetup( suite,
                                   "org.jacorb.test.orb.BasicServerImpl" );

        // long tests
        suite.addTest( new ReleaseTest( "test_release", setup ) );

        return setup;
    }

    /**
     * Verify that after releasing an object the system will transparently reconnect.
     */
    public void test_release()
    {
        server.bounce_long( 14 );

        server._release();
        System.err.println ("### Released!");

        int x = server.bounce_long( 100 );

        assertTrue (x==100);
    }
}
TOP

Related Classes of org.jacorb.test.orb.ReleaseTest

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.