/******************************************************************************* * 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: * James Sutherland - initial API and implementation ******************************************************************************/ package org.eclipse.persistence.testing.tests.distributedservers.rcm; import org.eclipse.persistence.expressions.*; import org.eclipse.persistence.queries.DataModifyQuery; import org.eclipse.persistence.sessions.*; import org.eclipse.persistence.sessions.broker.SessionBroker; import org.eclipse.persistence.testing.framework.*; import org.eclipse.persistence.testing.tests.distributedservers.*; import org.eclipse.persistence.testing.models.employee.domain.*; /** * Update the employee with raw SQL, and use invalidation API to invalidate. */ public class NativeUpdateObjectInvalidationTest extends ConfigurableCacheSyncDistributedTest { protected Employee employee; public NativeUpdateObjectInvalidationTest() { super(); setDescription("Update the employee with raw SQL, and use invalidation API to invalidate."); } public void setup() { super.setup(); // Create an Employee employee = new Employee(); employee.setFirstName("George"); employee.setLastName("Alpha"); UnitOfWork uow = getSession().acquireUnitOfWork(); uow.registerObject(employee); uow.commit(); // Ensure the employee exists in the Distributed Session ExpressionBuilder employees = new ExpressionBuilder(); Expression expression = employees.get("firstName").equal(employee.getFirstName()); expression = expression.and(employees.get("lastName").equal(employee.getLastName())); // Ensure our employee is in one of the distributed caches DistributedServer server = (DistributedServer)DistributedServersModel.getDistributedServers().firstElement(); Object result = server.getDistributedSession().readObject(Employee.class, expression); assertNotNull(result); } public void test() { UnitOfWork uow = getSession().acquireUnitOfWork(); DataModifyQuery query = new DataModifyQuery("update EMPLOYEE set F_NAME = 'Beta' where L_NAME = 'Alpha'"); if (getSession().isSessionBroker()) { query.setSessionName(((Session)((SessionBroker)getSession()).getSessionsByName().values().iterator().next()).getName()); } uow.executeQuery(query); uow.commit(); getSession().getIdentityMapAccessor().invalidateObject(employee, true); try { Thread.sleep(1000); } catch (Exception exception) { // Ignore. } } public void verify() { // The employee should exist in the distributed cache, and it should be invalidated if (isObjectValidOnDistributedServer(employee) == true) { throw new TestErrorException("Employee should have been invalidated in the distributed cache, descriptor was set to: INVALIDATE_CHANGED_OBJECTS"); } } }