blob: 87d7894ab889982fdb779cda02256b29efeb90e9 [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.relationshipmaintenance;
import java.util.Vector;
import org.eclipse.persistence.sessions.UnitOfWork;
import org.eclipse.persistence.testing.models.relationshipmaintenance.FieldOffice;
import org.eclipse.persistence.testing.models.relationshipmaintenance.SalesPerson;
public class AddReferencedObjectTest extends org.eclipse.persistence.testing.framework.AutoVerifyTestCase {
public FieldOffice fieldOfficeClone;
public FieldOffice secondOfficeClone;
public SalesPerson sales = null;
public void reset() {
rollbackTransaction();
getSession().getIdentityMapAccessor().initializeAllIdentityMaps();
}
public void setup() {
getSession().getIdentityMapAccessor().initializeAllIdentityMaps();
beginTransaction();
}
public void test() {
UnitOfWork uow = getSession().acquireUnitOfWork();
Vector offices = uow.readAllObjects(FieldOffice.class);
this.fieldOfficeClone = (FieldOffice)offices.elementAt(0);
this.secondOfficeClone = (FieldOffice)offices.elementAt(1);
this.sales = (SalesPerson)this.fieldOfficeClone.getSalespeople().iterator().next();
this.secondOfficeClone.getSalespeople().add(sales);
uow.commit();
}
public void verify() {
if ((!this.secondOfficeClone.getSalespeople().contains(this.sales)) || (this.sales.getFieldOffice() == null) || (this.fieldOfficeClone.getSalespeople().contains(this.sales))) {
throw new org.eclipse.persistence.testing.framework.TestErrorException("Failed to set the backPointer information");
}
}
}