blob: 783394e52f3649e20224bc9ee07d0f8bd91feb11 [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:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.isolatedsession;
import org.eclipse.persistence.testing.framework.*;
import org.eclipse.persistence.sessions.*;
import org.eclipse.persistence.internal.sessions.IsolatedClientSession;
public class VerifyIsolationTest extends ClientServerTest {
public IsolatedEmployee readEmployee;
public VerifyIsolationTest(boolean isExclusive) {
super(isExclusive);
setDescription("This test verifies that certain data is only available to the client with exclusiveConnectionMode");
}
public VerifyIsolationTest(String exclusiveConnectionMode) {
super(exclusiveConnectionMode, true);
setDescription("This test verifies that certain data is only available to the client with exclusiveConnectionMode "+ this.exclusiveConnectionMode);
setName(getName() + " " + this.exclusiveConnectionMode);
}
@Override
public void test() {
Session session = (Session)this.clients.get(0);
if (!(session instanceof IsolatedClientSession)) {
throw new TestErrorException("The session created was not an Isolated Session");
}
readEmployee = (IsolatedEmployee)session.readObject(IsolatedEmployee.class);
//load a isolated related object into memory
readEmployee.getPhoneNumbers();
//load non isolated related object
readEmployee.getAddress();
}
@Override
public void verify() {
if (this.server.getIdentityMapAccessor().getFromIdentityMap(readEmployee) != null) {
throw new TestErrorException("The Employee class was not Isolated");
}
if (readEmployee.getPhoneNumbers().isEmpty() || (this.server.getIdentityMapAccessor().getFromIdentityMap(readEmployee.getPhoneNumbers().get(0)) != null)) {
throw new TestErrorException("The related class Phonenumber class was not Isolated");
}
if (this.server.getIdentityMapAccessor().getFromIdentityMap(readEmployee.getAddress()) == null) {
throw new TestErrorException("The related class address was isolated ");
}
}
}