/******************************************************************************* * Copyright (c) 1998, 2015 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: * tware - initial implementation ******************************************************************************/ package org.eclipse.persistence.testing.tests.collections.map; import java.util.Iterator; import java.util.List; import org.eclipse.persistence.sessions.UnitOfWork; import org.eclipse.persistence.testing.framework.TestCase; import org.eclipse.persistence.testing.framework.TestErrorException; import org.eclipse.persistence.testing.models.collections.map.AggregateEntityMapHolder; import org.eclipse.persistence.testing.models.collections.map.AggregateMapKey; import org.eclipse.persistence.testing.models.collections.map.EntityMapValue; public class TestUpdateKeyOnAggregateKeyCollectionTableMapping extends TestCase { private AggregateEntityMapHolder holder = null; public void setup(){ UnitOfWork uow = getSession().acquireUnitOfWork(); holder = new AggregateEntityMapHolder(); EntityMapValue value = new EntityMapValue(); value.setId(1); AggregateMapKey key = new AggregateMapKey(); key.setKey(11); holder.addAggregateToEntityMapItem(key, value); EntityMapValue value2 = new EntityMapValue(); value2.setId(2); key = new AggregateMapKey(); key.setKey(22); holder.addAggregateToEntityMapItem(key, value2); uow.registerObject(holder); uow.registerObject(value); uow.registerObject(value2); uow.commit(); getSession().getIdentityMapAccessor().initializeAllIdentityMaps(); } public void test(){ UnitOfWork uow = getSession().acquireUnitOfWork(); holder = (AggregateEntityMapHolder)uow.readObject(holder); Iterator i = holder.getAggregateToEntityMap().keySet().iterator(); while (i.hasNext()){ AggregateMapKey key = (AggregateMapKey)i.next(); key.setKey(key.getKey() + 1); } uow.commit(); } public void verify(){ getSession().getIdentityMapAccessor().initializeAllIdentityMaps(); holder = (AggregateEntityMapHolder)getSession().readObject(holder); if (holder == null){ throw new TestErrorException("AggregateKeyMapHolder could not be read."); } if (holder.getAggregateToEntityMap().size() != 2){ throw new TestErrorException("Incorrect Number of MapEntityValues was read."); } AggregateMapKey mapKey = new AggregateMapKey(); mapKey.setKey(11); EntityMapValue value = (EntityMapValue)holder.getAggregateToEntityMap().get(mapKey); if (value != null){ throw new TestErrorException("EntityMapValue 11 not changed."); } mapKey = new AggregateMapKey(); mapKey.setKey(12); value = (EntityMapValue)holder.getAggregateToEntityMap().get(mapKey); if (value == null){ throw new TestErrorException("EntityMapValue 11 not changed to 12."); } mapKey = new AggregateMapKey(); mapKey.setKey(22); value = (EntityMapValue)holder.getAggregateToEntityMap().get(mapKey); if (value != null){ throw new TestErrorException("EntityMapValue 22 not changed."); } mapKey = new AggregateMapKey(); mapKey.setKey(23); value = (EntityMapValue)holder.getAggregateToEntityMap().get(mapKey); if (value == null){ throw new TestErrorException("EntityMapValue 22 not changed to 23."); } } public void reset(){ UnitOfWork uow = getSession().acquireUnitOfWork(); uow.deleteObject(holder); List keys = uow.readAllObjects(EntityMapValue.class); uow.deleteAllObjects(keys); uow.commit(); } }