blob: 9a0673befc8fc9eb9f6e04524e1993accb932479 [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.queries;
import org.eclipse.persistence.testing.framework.*;
import org.eclipse.persistence.testing.models.employee.domain.*;
import org.eclipse.persistence.queries.*;
import org.eclipse.persistence.descriptors.*;
import java.util.List;
/**
* Bug 4318924
* Ensure it is possible to get the translated strings from a multiple call query.
*/
public class TranslatedStringsTest extends AutoVerifyTestCase {
protected List translatedSQLStrings = null;
protected List sqlStrings = null;
protected List calls = null;
protected String translatedSQLString = null;
protected String sqlString = null;
protected Call call;
public TranslatedStringsTest() {
setDescription("Ensure it is possible to get the translated strings from a multiple call query.");
}
public void setup() {
getSession().getIdentityMapAccessor().initializeIdentityMaps();
beginTransaction();
}
public void test() {
Employee employee = new Employee();
employee.setFirstName("Sonny");
employee.setLastName("Corleone");
employee.setSalary(1000);
WriteObjectQuery query = new WriteObjectQuery(employee);
getSession().getDescriptor(Employee.class).getEventManager().addListener(new DescriptorEventAdapter() {
public void postInsert(org.eclipse.persistence.descriptors.DescriptorEvent event) {
translatedSQLStrings = event.getQuery().getTranslatedSQLStrings(event.getSession(), event.getQuery().getTranslationRow());
sqlStrings = event.getQuery().getSQLStrings();
calls = event.getQuery().getDatasourceCalls();
translatedSQLString = event.getQuery().getTranslatedSQLString(event.getSession(), event.getQuery().getTranslationRow());
sqlString = event.getQuery().getSQLString();
call = event.getQuery().getCall();
}
});
getSession().executeQuery(query);
}
public void verify() {
if (translatedSQLStrings.size() != 2) {
throw new TestErrorException("Translated SQL Strings were not properly returned.");
}
if (sqlStrings.size() != 2) {
throw new TestErrorException("SQL Strings were not properly returned.");
}
if (calls.size() != 2) {
throw new TestErrorException("Calls were not properly returned.");
}
if (translatedSQLString != null) {
throw new TestErrorException("Translated SQL String was returned even though it should be null..");
}
if (sqlString == null) {
throw new TestErrorException("SQL String was not returned even though it should have been.");
}
if (call == null) {
throw new TestErrorException("A Call was not returned even though it should have been..");
}
}
public void reset() {
getSession().getIdentityMapAccessor().initializeIdentityMaps();
rollbackTransaction();
}
}