blob: 1762946ac2f55816caaa5936793515731fd1562f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010-2013 Oracle. 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:
* dclarke - Employee Demo 2.4
******************************************************************************/
package test;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persistence.LockModeType;
import org.eclipse.persistence.descriptors.ClassDescriptor;
import org.eclipse.persistence.jpa.JpaHelper;
import org.eclipse.persistence.queries.ReadObjectQuery;
import org.eclipse.persistence.queries.ReportQuery;
import org.eclipse.persistence.sessions.UnitOfWork;
import org.eclipse.persistence.sessions.server.ClientSession;
import org.eclipse.persistence.sessions.server.Server;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import eclipselink.example.jpa.employee.model.Address;
import eclipselink.example.jpa.employee.model.SamplePopulation;
import eclipselink.example.jpa.employee.services.Diagnostics;
import example.PersistenceTesting;
/**
* Simple test case illustrating pessimistic lock usage.
*
* @author dclarke
* @since EclispeLink 2.4.2
*/
public class PessimisticLockTest {
@Test
public void test() {
EntityManager em = getEmf().createEntityManager();
int id = em.createQuery("SELECT a.id FROM Address a", Number.class).getSingleResult().intValue();
em.getTransaction().begin();
Address addr = em.find(Address.class, id, LockModeType.PESSIMISTIC_WRITE);
Assert.assertNotNull(addr);
Assert.assertNull(addr.getCity());
Assert.assertEquals(em.getLockMode(addr), LockModeType.PESSIMISTIC_WRITE);
addr.setCity("Ottawa");
Assert.assertNotNull(addr.getCity());
em.lock(addr, LockModeType.PESSIMISTIC_WRITE);
Assert.assertEquals(em.getLockMode(addr), LockModeType.PESSIMISTIC_WRITE);
Assert.assertNotNull(addr.getCity());
em.getTransaction().rollback();
em.close();
}
@Test
public void testRefreshIfNewerTXN() {
EntityManager em = getEmf().createEntityManager();
int id = em.createQuery("SELECT a.id FROM Address a", Number.class).getSingleResult().intValue();
em.getTransaction().begin();
Address addr = em.find(Address.class, id);
Assert.assertNotNull(addr);
Assert.assertNull(addr.getCity());
addr.setCity("Ottawa");
Assert.assertNotNull(addr.getCity());
em.refresh(addr);
Assert.assertNotNull(addr.getCity());
em.getTransaction().rollback();
em.close();
}
@Test
public void testRefreshIfNewer() {
EntityManager em = getEmf().createEntityManager();
int id = em.createQuery("SELECT a.id FROM Address a", Number.class).getSingleResult().intValue();
Address addr = em.find(Address.class, id);
Assert.assertNotNull(addr);
Assert.assertNull(addr.getCity());
addr.setCity("Ottawa");
Assert.assertNotNull(addr.getCity());
em.refresh(addr);
Assert.assertNotNull(addr.getCity());
em.close();
}
@Test
public void testRefreshIfNewerNativeServer() {
Server session = JpaHelper.getServerSession(getEmf());
ReportQuery idQuery = new ReportQuery();
idQuery.setReferenceClass(Address.class);
idQuery.addAttribute("id");
idQuery.setShouldReturnSingleAttribute(true);
idQuery.setShouldReturnSingleValue(true);
int id = ((Number) session.executeQuery(idQuery)).intValue();
ReadObjectQuery addrQuery = new ReadObjectQuery();
addrQuery.setReferenceClass(Address.class);
addrQuery.setSelectionCriteria(addrQuery.getExpressionBuilder().get("id").equal(id));
Address addr = (Address) session.executeQuery(addrQuery);
Assert.assertNotNull(addr);
Assert.assertNull(addr.getCity());
addr.setCity("Ottawa");
Assert.assertNotNull(addr.getCity());
session.refreshObject(addr);
Assert.assertNotNull(addr.getCity());
}
@Test
public void testRefreshIfNewerNativeClientSession() {
Server session = JpaHelper.getServerSession(getEmf());
ClientSession cs = session.acquireClientSession();
ReportQuery idQuery = new ReportQuery();
idQuery.setReferenceClass(Address.class);
idQuery.addAttribute("id");
idQuery.setShouldReturnSingleAttribute(true);
idQuery.setShouldReturnSingleValue(true);
int id = ((Number) cs.executeQuery(idQuery)).intValue();
ReadObjectQuery addrQuery = new ReadObjectQuery();
addrQuery.setReferenceClass(Address.class);
addrQuery.setSelectionCriteria(addrQuery.getExpressionBuilder().get("id").equal(id));
Address addr = (Address) cs.executeQuery(addrQuery);
Assert.assertNotNull(addr);
Assert.assertNull(addr.getCity());
addr.setCity("Ottawa");
Assert.assertNotNull(addr.getCity());
cs.refreshObject(addr);
Assert.assertNotNull(addr.getCity());
}
@Test
public void testRefreshIfNewerNativeUOW() {
Server session = JpaHelper.getServerSession(getEmf());
UnitOfWork uow = session.acquireUnitOfWork();
ReportQuery idQuery = new ReportQuery();
idQuery.setReferenceClass(Address.class);
idQuery.addAttribute("id");
idQuery.setShouldReturnSingleAttribute(true);
idQuery.setShouldReturnSingleValue(true);
int id = ((Number) uow.executeQuery(idQuery)).intValue();
ReadObjectQuery addrQuery = new ReadObjectQuery();
addrQuery.setReferenceClass(Address.class);
addrQuery.setSelectionCriteria(addrQuery.getExpressionBuilder().get("id").equal(id));
Address addr = (Address) uow.executeQuery(addrQuery);
Assert.assertNotNull(addr);
Assert.assertNull(addr.getCity());
addr.setCity("Ottawa");
Assert.assertNotNull(addr.getCity());
uow.refreshObject(addr);
Assert.assertNotNull(addr.getCity());
}
@Test
public void verifyConfig() {
ClassDescriptor desc = JpaHelper.getServerSession(getEmf()).getClassDescriptorForAlias("Address");
Assert.assertNotNull(desc);
Assert.assertTrue(desc.getCachePolicy().shouldOnlyRefreshCacheIfNewerVersion());
}
private static EntityManagerFactory emf;
private static Diagnostics diagnostics;
public static EntityManagerFactory getEmf() {
return emf;
}
public static Diagnostics getDiagnostics() {
return diagnostics;
}
@BeforeClass
public static void createEMF() {
emf = PersistenceTesting.createEMF(true);
diagnostics = Diagnostics.getInstance(emf);
EntityManager em = emf.createEntityManager();
new SamplePopulation().createNewEmployees(em, 1);
Number count = em.createNamedQuery("Employee.count", Number.class).getSingleResult();
Assert.assertEquals(1, count.intValue());
em.close();
emf.getCache().evictAll();
}
@AfterClass
public static void closeEMF() {
if (emf != null && emf.isOpen()) {
emf.close();
}
emf = null;
}
@Before
public void clearCache() {
JpaHelper.getServerSession(getEmf()).getIdentityMapAccessor().initializeAllIdentityMaps();
}
}