blob: 60227b886a7217d03a87213b9fde7336d9fbfca2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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 v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.tests.eis.aq;
import org.eclipse.persistence.sessions.*;
import org.eclipse.persistence.sessions.server.*;
import org.eclipse.persistence.eis.*;
import org.eclipse.persistence.eis.adapters.aq.*;
import org.eclipse.persistence.testing.framework.TestCase;
/**
* Simple connect test. This tests connecting TopLink EIS to the native AQ JCA connector.
*/
public class ConnectTest extends TestCase {
public ConnectTest() {
setName("ConnectTest");
setDescription("This tests connecting TopLink EIS to the native AQ JCA connector.");
}
public void test() throws Exception {
testDatabaseSession();
testServerSession();
}
public void testDatabaseSession() throws Exception {
EISLogin login = new EISLogin(new AQPlatform());
AQEISConnectionSpec spec = new AQEISConnectionSpec();
login.setConnectionSpec(spec);
String url = (String)getSession().getDatasourceLogin().getProperty(AQEISConnectionSpec.URL);
login.setUserName("aquser");
login.setPassword("aquser");
login.setProperty(AQEISConnectionSpec.URL, url);
DatabaseSession session = new Project(login).createDatabaseSession();
session.setSessionLog(getSession().getSessionLog());
session.login();
session.logout();
}
public void testServerSession() throws Exception {
EISLogin login = new EISLogin(new AQPlatform());
AQEISConnectionSpec spec = new AQEISConnectionSpec();
login.setConnectionSpec(spec);
String url = (String)getSession().getDatasourceLogin().getProperty(AQEISConnectionSpec.URL);
login.setUserName("aquser");
login.setPassword("aquser");
login.setProperty(AQEISConnectionSpec.URL, url);
Server session = new Project(login).createServerSession();
session.setSessionLog(getSession().getSessionLog());
session.login();
session.logout();
}
}