blob: 5d5f7097114c1f5d9b51437c6158e5be732c5bc5 [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.unitofwork;
import java.util.Enumeration;
import java.util.Vector;
import org.eclipse.persistence.queries.ReadAllQuery;
import org.eclipse.persistence.testing.framework.TestErrorException;
import org.eclipse.persistence.testing.models.employee.domain.Employee;
import org.eclipse.persistence.testing.tests.queries.ConformResultsInUnitOfWorkTest;
public class DeleteAndConform extends ConformResultsInUnitOfWorkTest {
Employee employee;
@Override
public void buildConformQuery() {
conformedQuery = new ReadAllQuery();
conformedQuery.setReferenceClass(Employee.class);
conformedQuery.conformResultsInUnitOfWork();
}
@Override
public void prepareTest() {
//delete the object from unit of work, so it should not show up in the query results
employee = (Employee)getSession().readObject(Employee.class);
unitOfWork.deleteObject(employee);
}
@Override
public void verify() {
for (Enumeration enumtr = ((Vector)result).elements(); enumtr.hasMoreElements(); ) {
if (((Employee)enumtr.nextElement()).getId() == employee.getId()) {
throw new TestErrorException("The object deleted from unit of work shows up in ReadAllQuery using conformResultsInUnitOfWork().");
}
}
}
}