blob: 9392162632dde207a3f3e615e3823d54a05b2ef8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 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:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.tests.remote;
import org.eclipse.persistence.testing.framework.*;
import org.eclipse.persistence.testing.tests.queries.options.QueryOptionEmployee;
public class RefreshRemoteIdentityMapResultsTest extends TestCase {
protected QueryOptionEmployee originalObject;
protected String firstName;
public RefreshRemoteIdentityMapResultsTest() {
setDescription("This test verifies if the refresh remote identity map feature works properly");
}
public void reset() {
getSession().getIdentityMapAccessor().initializeIdentityMaps();
}
protected void setup() {
originalObject =
(QueryOptionEmployee)getSession().executeQuery("refreshRemoteIdentityMapResultsQuery", QueryOptionEmployee.class);
}
public void test() {
firstName = originalObject.getName();
originalObject.setName("Godzilla");
// ((ReadObjectQuery)getSession().getDescriptor(org.eclipse.persistence.demos.employee.domain.Employee.class).getQueryManager().getQuery("refreshRemoteIdentityMapResultsQuery")).setSelectionObject(originalObject);
getSession().executeQuery("refreshRemoteIdentityMapResultsQuery", QueryOptionEmployee.class);
}
protected void verify() {
if (!(originalObject.getName().equals(firstName))) {
throw new TestErrorException("The refresh remote identity map results test failed.");
}
}
}