/******************************************************************************* * Copyright (c) 1998, 2015 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.proxyindirection; import org.eclipse.persistence.expressions.ExpressionBuilder; import org.eclipse.persistence.testing.framework.AutoVerifyTestCase; import org.eclipse.persistence.testing.framework.TestErrorException; public class DeleteTest extends AutoVerifyTestCase { public DeleteTest() { setDescription("Tests deleting with private ownership with Proxy Indirection."); } public void reset() { getAbstractSession().rollbackTransaction(); getSession().getIdentityMapAccessor().initializeAllIdentityMaps(); } public void setup() { getAbstractSession().beginTransaction(); } public void test() { Cubicle cube = (Cubicle)getSession().readObject(Cubicle.class, new ExpressionBuilder().get("employee").get("firstName").equal("Rick")); getAbstractSession().deleteObject(cube); // Rick should be deleted too. } public void verify() { getSession().getIdentityMapAccessor().initializeIdentityMaps(); Employee emp = (Employee)getSession().readObject(Employee.class, new ExpressionBuilder().get("firstName").equal("Rick")); if (emp != null) { throw new TestErrorException("Employee was not deleted along with Cubicle."); } } }