blob: 77750ae26c2cd60fea2b3a8aef84e439d0e44e95 [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.interfaces;
import org.eclipse.persistence.sessions.UnitOfWork;
import org.eclipse.persistence.expressions.ExpressionBuilder;
import org.eclipse.persistence.testing.framework.*;
import org.eclipse.persistence.testing.models.interfaces.*;
/**
* This test is all about code coverage and forcing the code to execute specific
* code within VariableOneToOneMapping.
* However, it still 'tests' the deletion of an employee which has
* a VariableOneToOneMapping.
*/
public class VariableOneToOneDeleteTest extends TransactionalTestCase {
private Employee employee;
@Override
public void setup() {
super.setup();
UnitOfWork uow = getSession().acquireUnitOfWork();
Employee emp = (Employee)uow.registerObject(Employee.example1());
emp.setName("Guy");
uow.commit();
}
@Override
public void test() {
employee = (Employee)getSession().readObject(Employee.class, new ExpressionBuilder().get("name").equal("Guy"));
UnitOfWork uow = getSession().acquireUnitOfWork();
Employee e = (Employee)uow.registerObject(employee);
e.setName("Guy Pelletier");
Phone p = Phone.example3();
p.setNumber("6138236262");
e.setContact(p);
p.setEmp(e);
uow.deleteObject(employee);
uow.commit();
}
@Override
protected void verify() {
if (!verifyDelete(employee)) {
throw new TestErrorException("The object '" + employee + "' was not completely deleted from the database.");
}
if (getSession().readObject(Employee.class, new ExpressionBuilder().get("name").equal("Guy Pelletier")) != null) {
throw new TestErrorException("The object '" + employee + "' was not completely deleted from the database.");
}
}
}