blob: 46c35e369ed6f5eb96c426dbbd75d31f8a03f512 [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.distributedservers;
import java.io.Writer;
import org.eclipse.persistence.internal.sessions.AbstractSession;
import org.eclipse.persistence.testing.framework.TestErrorException;
import org.eclipse.persistence.testing.models.employee.domain.Employee;
/**
* Test changing private parts of an object.
*/
public class UpdateToNullTest extends ComplexUpdateTest {
protected Writer log;
public UpdateToNullTest() {
super();
}
public UpdateToNullTest(Employee originalObject) {
super(originalObject);
}
protected void changeObject() {
Employee employee = (Employee)this.workingCopy;
// Direct to field
employee.setFirstName(null);
// Object type
employee.setGender(null);
// Transformation
employee.setStartTime(null);
employee.setEndTime(null);
// Aggregate
employee.setPeriod(null);
// One to many
employee.setPhoneNumbers(null);
// Many to many
employee.setProjects(null);
// One to one private/public
employee.setAddress(null);
employee.setManager(null);
}
/**
* Verify if the objects match completely through allowing the session to use the descriptors.
* This will compare the objects and all of their privately owned parts.
*/
protected void verify() {
getSession().getIdentityMapAccessor().initializeIdentityMaps();
this.objectFromDatabase = getSession().executeQuery(this.query);
if (!(((AbstractSession)getSession()).compareObjects(this.objectToBeWritten, this.objectFromDatabase))) {
throw new TestErrorException("The object inserted into the database, '" + this.objectFromDatabase + "' does not match the original, '" + this.objectToBeWritten);
}
this.distributedCopy = getObjectFromDistributedSession(this.query);
if (!(((AbstractSession)getSession()).compareObjects(this.distributedCopy, this.objectFromDatabase))) {
throw new TestErrorException("The object inserted into the database, '" + this.objectFromDatabase + "' does not match the original, '" + this.objectToBeWritten);
}
}
}