blob: 6bb87d256e9b16ff975485e32be06c4e0b92b2b3 [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.queries.inmemory;
import org.eclipse.persistence.testing.models.employee.domain.*;
/**
* Test for cache on 1-1 traversal.
*
*/
public class OneToOneCacheHitTest extends CacheHitTest {
protected Employee employee;
public OneToOneCacheHitTest() {
setDescription("Test cache hit on a 1-1 traversal.");
}
/**
* Load the object into the cache.
*/
@Override
protected void loadObjectIntoCache() {
employee = (Employee)getSession().readObject(Employee.class);
objectToRead = employee.getAddress();// Find its address
getSession().getIdentityMapAccessor().initializeIdentityMaps();
// Read them again
employee = (Employee)getSession().readObject(Employee.class);
objectToRead = getSession().readObject(objectToRead);
getSession().readAllObjects(Address.class);
}
/**
* Query the object by primary key.
*/
@Override
protected Object readObject() {
return employee.getAddress();
}
}