blob: e35f90b134fcdb5bcaa6523efcfe502c061980b4 [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 org.eclipse.persistence.testing.models.employee.domain.*;
import org.eclipse.persistence.queries.*;
import org.eclipse.persistence.sessions.*;
public abstract class ConformResultsInUnitOfWorkTest extends org.eclipse.persistence.testing.framework.AutoVerifyTestCase {
public ObjectLevelReadQuery conformedQuery;
public Object result;
public UnitOfWork unitOfWork;
public boolean shouldUseWrapperPolicy = false;
public abstract void buildConformQuery();
public abstract void prepareTest();
@Override
public void reset() {
getSession().getIdentityMapAccessor().initializeAllIdentityMaps();
rollbackTransaction();
if (shouldUseWrapperPolicy()) {
getSession().getDescriptor(Employee.class).setWrapperPolicy(null);
}
}
@Override
public void setup() {
beginTransaction();
getSession().getIdentityMapAccessor().initializeAllIdentityMaps();
unitOfWork = getSession().acquireUnitOfWork();
if (shouldUseWrapperPolicy()) {
EmployeeWrapperPolicy policy = new EmployeeWrapperPolicy();
getSession().getDescriptor(Employee.class).setWrapperPolicy(policy);
}
prepareTest();
buildConformQuery();
}
@Override
public void test() {
result = unitOfWork.executeQuery(conformedQuery);
unitOfWork.release();
}
@Override
public abstract void verify();
/**
* Added for bug 2766379: doesConform not unwrapping objects.
*/
public void setShouldUseWrapperPolicy(boolean value) {
this.shouldUseWrapperPolicy = value;
}
public boolean shouldUseWrapperPolicy() {
return shouldUseWrapperPolicy;
}
}