Package org.jacorb.test.common

Examples of org.jacorb.test.common.ClientServerSetup


        client_props.setProperty ("org.omg.PortableInterceptor.ORBInitializerClass.bidir_init", "org.jacorb.orb.giop.BiDirConnectionInitializer");
        server_props.setProperty ("org.omg.PortableInterceptor.ORBInitializerClass.bidir_init", "org.jacorb.orb.giop.BiDirConnectionInitializer");

        // Note that I have activated BiDir connections through the above
        // property and am using my own ClientServerSetup class.
        ClientServerSetup setup =
            new ClientServerSetup( suite,
                                   "org.jacorb.test.orb.BasicServerImpl",
                                   client_props,
                                   server_props)
                                   {
            public String getTestServerMain()
View Full Code Here


    {
        TestSuite suite = new TestSuite("DII tests (" + DiiTest.class.getName() + ")");

        Properties props = new Properties();

        ClientServerSetup setup = new ClientServerSetup(suite, DynamicServer.class.getName(), props, props);

        TestUtils.addToSuite(suite, setup, DiiTest.class);

        return setup;
    }
View Full Code Here

        if (TestUtils.isJDK13())
        {
            client_props.setProperty(CommonSetup.JACORB_REGRESSION_DISABLE_SECURITY, "true");
        }

        ClientServerSetup setup =
            new ClientServerSetup( suite,
                                   ConnectionTimeoutServerImpl.class.getName(),
                                   client_props,
                                   null );

        TestUtils.addToSuite(suite, setup, ClientConnectionTimeoutTest.class);
View Full Code Here

        if (TestUtils.isJDK13())
        {
            server_props.setProperty(CommonSetup.JACORB_REGRESSION_DISABLE_SECURITY, "true");
        }

        ClientServerSetup setup =
            new ClientServerSetup( suite,
                                   ConnectionTimeoutServerImpl.class.getName(),
                                   null,
                                   server_props );

        TestUtils.addToSuite(suite, setup, ServerConnectionTimeoutTest.class);
View Full Code Here

            "jacorb.transport.factories",
            "org.jacorb.orb.iiop.IIOPFactories,org.jacorb.test.orb.etf.wiop.WIOPFactories"
        );
        server_props.setProperty("jacorb.regression.disable_security", "true");

        ClientServerSetup setup = new ClientServerSetup
        (
            suite,
            "org.jacorb.test.bugs.bugjac192.JAC192Impl",
            client_props,
            server_props
View Full Code Here

        client_props.setProperty("jacorb.interop.sun", "on");
        client_props.setProperty("jacorb.regression.disable_security", "true");

        Properties server_props = TestUtils.newForeignORBProperties();

        ClientServerSetup setup =
            new ClientServerSetup( suite,
                                   "org.jacorb.test.orb.rmi.RMITestServant",
                                   client_props,
                                   server_props);

        TestUtils.addToSuite(suite, setup, JacORBSunRMITest.class);
View Full Code Here

        server_props.setProperty("jacorb.interop.strict_check_on_tc_creation", "off");
        server_props.setProperty("jacorb.interop.chunk_custom_rmi_valuetypes", "on");
        server_props.setProperty("jacorb.interop.sun", "on");

        ClientServerSetup setup =
            new ClientServerSetup( suite,
                                   "org.jacorb.test.orb.rmi.RMITestServant",
                                   client_props,
                                   server_props);

        TestUtils.addToSuite(suite, setup, JacORBJacORBRMITest.class);
View Full Code Here

        Properties client_props = TestUtils.newForeignORBProperties();
        Properties server_props = TestUtils.newForeignORBProperties();
        client_props.setProperty("jacorb.regression.disable_security", "true");
        server_props.setProperty("jacorb.regression.disable_security", "true");

        ClientServerSetup setup =
            new ClientServerSetup( suite,
                                   "org.jacorb.test.orb.rmi.RMITestServant",
                                   client_props,
                                   server_props);

        TestUtils.addToSuite(suite, setup, SunSunRMITest.class);
View Full Code Here

        }

        server_props.setProperty ("jacorb.logfile.append", "on");


        ClientServerSetup setup =
        new ClientServerSetup( suite,
                               "org.jacorb.test.orb.CodesetServerImpl",
                               client_props,
                               server_props);

View Full Code Here

    }

    public static Test suite()
    {
        TestSuite suite = new TestSuite();
        ClientServerSetup setup = new ClientServerSetup(suite, BasicServerImpl.class.getName());

        TestUtils.addToSuite(suite, setup, ORBInitRefTest.class);

        return setup;
    }
View Full Code Here

TOP

Related Classes of org.jacorb.test.common.ClientServerSetup

Copyright © 2018 www.massapicom. 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.