blob: 113052dc5483d6567ac272c89850198414014c0e [file] [log] [blame]
/*
* Copyright (c) 1998, 2019 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.remote.suncorba;
import java.util.Properties;
import org.eclipse.persistence.sessions.Session;
import org.eclipse.persistence.sessions.remote.corba.sun.CORBAConnection;
import org.eclipse.persistence.testing.framework.TestErrorException;
import org.eclipse.persistence.testing.framework.TestSuite;
import org.eclipse.persistence.testing.tests.remote.RemoteModel;
import org.eclipse.persistence.testing.tests.remote.TransporterGenerator;
import org.omg.CORBA.ORB;
import org.omg.CosNaming.NameComponent;
import org.omg.CosNaming.NamingContext;
import org.omg.CosNaming.NamingContextHelper;
public class SunCORBARemoteModel extends RemoteModel {
public SunCORBARemoteModel() {
super();
}
public CORBAConnection createConnection() {
System.out.println("The following environment properties must be set to run this test.");
System.out.println("-Djava.naming.factory.initial=com.sun.jndi.cosnaming.CNCtxFactory -Djava.naming.provider.url=iiop://localhost:900");
System.out.println("The follwing corba naming server must also be started on the computer.");
System.out.println("<java_home>/bin/tnameserv.exe");
CORBAServerManager manager = null;
try {
// Initialize the ORB.
ORB orb = ORB.init(new String[0], new Properties());
org.omg.CORBA.Object objRef = orb.resolve_initial_references("NameService");
NamingContext ncRef = NamingContextHelper.narrow(objRef);
NameComponent nc = new NameComponent("CORBAServer", "");
NameComponent path[] = { nc };
manager = CORBAServerManagerHelper.narrow(ncRef.resolve(path));
} catch (Exception exception) {
throw new TestErrorException("Corba not configured correctly, see system.out.", exception);
}
return new CORBAConnection(manager.createRemoteSessionController());
}
@Override
public void setup() {
RemoteModel.originalSession = getSession();
new CORBAServerRunner(buildServerSession()).start();
// Must delay to let the stupid server start
try {
Thread.sleep(10000);
} catch (Exception e) {
System.out.println(e.toString());
}
CORBAConnection connection = createConnection();
Session remoteSession = connection.createRemoteSession();
remoteSession.setLog(RemoteModel.originalSession.getLog());
remoteSession.setLogLevel(RemoteModel.originalSession.getLogLevel());
getExecutor().setSession(remoteSession);
}
@Override
public void addTests() {
super.addTests();
addTest(getExceptionsTestSuite());
}
public static TestSuite getExceptionsTestSuite() {
TestSuite suite = new TestSuite();
suite.setName("ExceptionsTestSuite");
suite.setDescription("Verifies whether the right exceptions are thrown");
suite.addTest(new CORBAConnectionExceptionsTest(TransporterGenerator.SET_EXCEPTION_INTO_TRANSPORTER));
return suite;
}
}