blob: e9a4ad2dedcdf1d4046fcbc2acd67adc366facae [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 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.queries;
import java.util.*;
// TopLink imports
import org.eclipse.persistence.sessions.server.*;
/**
* We have added support so that there can be multiple queries
* with the same name (each with different argument sets) cached
* on the Client Session.
* This test verifies that by adding (using, and removing) more
* than one named query (with the same name but with different
* argument sets) to Clien Session.
*
* Separate test case will test addQuery on DescriptorQueryManager
* Class created on Mar 04/2002; CR#3716 in StarTeam; Predrag
*/
public class NamedQueriesClientSessionTest extends MultiNameQueriesTestCase {
protected Server serverSession;
protected ClientSession clientSession;
protected Exception caughtException;
/**
* Employee.class used to add two identically named NamedQueries
*/
public NamedQueriesClientSessionTest() {
setDescription("Verifies if a Named Queries with different argument sets" + " can be cached on Client Session");
}
@Override
public void reset() {
// do not want to keep named queries on serverSession
clientSession.removeQuery("namedQuerySameName");
this.clientSession.release();
this.serverSession.logout();
getSession().getIdentityMapAccessor().initializeAllIdentityMaps();
}
@Override
public void setup() {
org.eclipse.persistence.sessions.Project proj = new org.eclipse.persistence.testing.models.employee.relational.EmployeeProject();
proj.setDatasourceLogin(getSession().getDatasourceLogin().clone());
this.serverSession = proj.createServerSession(1, 1);
this.serverSession.useReadConnectionPool(1, 1);
this.serverSession.setSessionLog(getSession().getSessionLog());
this.serverSession.login();
this.clientSession = this.serverSession.acquireClientSession();
serverSession.getIdentityMapAccessor().initializeIdentityMaps();
addNamedQueryFirstName();
addNamedQueryFirstAndLastName();
}
// end of setup()
public void useNamedQueryFirstName() {
// do not use the following session's API,
// public Object executeQuery(queryName, domainClass, argumentValues)
// since it looks for query in DescriptorQueryManager, not in ClientSession
Vector empsByFirstName = (Vector)clientSession.executeQuery("namedQuerySameName", new String("Jill"));
}
// end of useNamedQueryFirstName
public void useNamedQueryFirstAndLastName() {
Vector empsByFirstAndLastName = (Vector)clientSession.executeQuery("namedQuerySameName", new String("Jill"), new String("May"));
}
// end of useNamedQueryFirstAndLastName
public void addNamedQueryFirstName() {
clientSession.addQuery("namedQuerySameName", getNamedQueryFirstName());
}
// end of addNamedQueryFirstName
public void addNamedQueryFirstAndLastName() {
clientSession.addQuery("namedQuerySameName", getNamedQueryFirstAndLastName());
}
// end of addNamedQueryFirstAndLastName
@Override
public void test() {
// Can more than one named query co-exist with the same name?
// Same name "namedQuerySameName" added twice to the very same
// clientSession, with different argument sets
try {
useNamedQueryFirstName();
useNamedQueryFirstAndLastName();
} catch (ClassCastException e) {
caughtException = e;
}
}
// end of test()
@Override
public void verify() {
if (caughtException != null) {
throw new org.eclipse.persistence.testing.framework.TestErrorException("Multiple queries with the same named cached on the ClientSession.\n" + "Each with different argument sets.\n" + "This exception thrown while testing test case.\n" + "----- NamedQueriesClientSessionTest() -----\n");
}
}
// end of verify()
}// end of public class NamedQueriesClientSessionTest