blob: 55c6346f8c4dac890b413b9bc44a734d1554fa1e [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 org.eclipse.persistence.queries.ReadObjectQuery;
import org.eclipse.persistence.sessions.UnitOfWork;
import org.eclipse.persistence.testing.framework.TestErrorException;
import org.eclipse.persistence.testing.framework.TransactionalTestCase;
import org.eclipse.persistence.testing.models.employee.domain.Employee;
public class GetFromNewObjectWithConformTest extends TransactionalTestCase {
Employee emp;
/**
* Added for code coverage, this calss verifies that TopLink will find a new Object when conformed
* on a read object with no selection criteria
*/
public GetFromNewObjectWithConformTest() {
setDescription("Verifies that TopLink will find a new Object when conformed");
}
@Override
public void test() {
UnitOfWork uow = getSession().acquireUnitOfWork();
emp = new Employee();
emp.setFirstName("SomeName");
emp.setLastName("Some Last Name");
uow.registerObject(emp);
ReadObjectQuery query = new ReadObjectQuery(Employee.class);
query.conformResultsInUnitOfWork();
uow.getIdentityMapAccessor().initializeAllIdentityMaps();
emp = (Employee)uow.executeQuery(query);
uow.release();
}
// end of test()
@Override
public void verify() {
if (emp == null) {
throw new TestErrorException("New Object Not Found");
}
}
// end of verify()
}