blob: b090476fb2ae688129c6e5967abbb7f1719ce4eb [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:
// 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.");
}
@Override
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);
}
@Override
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.
}
}
@Override
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");
}
}
}