/******************************************************************************* * Copyright (c) 2005, 2015 SAP. 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: * SAP - initial API and implementation ******************************************************************************/ package org.eclipse.persistence.testing.tests.wdf.jpa1.entitymanager; import javax.persistence.EntityManager; import org.eclipse.persistence.testing.framework.wdf.JPAEnvironment; import org.eclipse.persistence.testing.models.wdf.jpa1.employee.Department; import org.eclipse.persistence.testing.tests.wdf.jpa1.JPA1Base; import org.junit.Test; public class TestClear extends JPA1Base { @Test public void testClearActiveTransaction() { JPAEnvironment env = getEnvironment(); EntityManager em = env.getEntityManager(); try { Department dep1 = new Department(1, "one"); Department dep2 = new Department(2, "two"); env.beginTransaction(em); em.persist(dep1); env.commitTransactionAndClear(em); env.beginTransaction(em); dep1 = em.find(Department.class, new Integer(dep1.getId())); em.persist(dep2); verify(em.contains(dep1), "entity not managed"); verify(em.contains(dep2), "entity not managed"); dep1.setName("changed"); // unflushed changes em.clear(); verify(!em.contains(dep1), "entity managed"); verify(!em.contains(dep2), "entity managed"); env.commitTransactionAndClear(em); Department dep = em.find(Department.class, new Integer(dep1.getId())); verify(dep != null, "department with id " + dep1.getId() + " does not exist"); verify("one".equals(dep.getName()), "department has wrong name: " + dep.getName()); dep = em.find(Department.class, new Integer(dep2.getId())); verify(dep == null, "department with id " + dep2.getId() + " exists"); } finally { closeEntityManager(em); } } @Test public void testClearNoTransaction() { JPAEnvironment env = getEnvironment(); EntityManager em = env.getEntityManager(); boolean extended = env.usesExtendedPC(); try { Department dep1 = new Department(11, "one"); Department dep2 = new Department(12, "two"); env.beginTransaction(em); em.persist(dep1); env.commitTransactionAndClear(em); dep1 = em.find(Department.class, new Integer(dep1.getId())); if (extended) { em.persist(dep2); verify(em.contains(dep1), "entity not managed"); verify(em.contains(dep2), "entity not managed"); } else { verify(!em.contains(dep1), "entity managed"); } em.clear(); verify(!em.contains(dep1), "entity managed"); verify(!em.contains(dep2), "entity managed"); } finally { closeEntityManager(em); } } }