/******************************************************************************* * Copyright (c) 1998, 2015 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.sessionsxml; import org.eclipse.persistence.testing.models.employee.domain.Employee; import org.eclipse.persistence.sessions.DatabaseSession; import org.eclipse.persistence.testing.framework.AutoVerifyTestCase; import org.eclipse.persistence.testing.framework.TestErrorException; import org.eclipse.persistence.sessions.factories.SessionManager; import org.eclipse.persistence.sessions.factories.XMLSessionConfigLoader; /** * Tests Sessions XML schema with project xml. * * @author Edwin Tang * @version 1.0 * @date December 14, 2004 */ public class SessionsXMLSchemaProjectXMLTest extends AutoVerifyTestCase { DatabaseSession employeeSession; public SessionsXMLSchemaProjectXMLTest() { setDescription("Test sessions XML schema with project xml"); } public void reset() { if (employeeSession != null && employeeSession.isConnected()) { employeeSession.logout(); // If session is logged in, log it out SessionManager.getManager().getSessions().remove(employeeSession); employeeSession = null; } } public void test() { XMLSessionConfigLoader loader = new XMLSessionConfigLoader("org/eclipse/persistence/testing/models/sessionsxml/XMLSchemaWithProjectXML.xml"); // log in the session employeeSession = (DatabaseSession)SessionManager.getManager().getSession(loader, "EmployeeSession", getClass().getClassLoader(), true, true); // refresh the session } protected void verify() { if (employeeSession == null) { throw new TestErrorException("Employee session is null"); } if (employeeSession.getDescriptor(Employee.class) == null) { throw new TestErrorException("Missing a descriptor from the Employee project"); } if (!employeeSession.isConnected()) { throw new TestErrorException("Employee session is connected"); } } }