blob: 1fdd71ba64fd7b2697a46804173984bca3e86b14 [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:
// tware - initial implementation
package org.eclipse.persistence.testing.tests.collections.map;
import java.util.List;
import org.eclipse.persistence.expressions.Expression;
import org.eclipse.persistence.expressions.ExpressionBuilder;
import org.eclipse.persistence.indirection.IndirectMap;
import org.eclipse.persistence.mappings.AggregateCollectionMapping;
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.EntityAggregateMapHolder;
import org.eclipse.persistence.testing.models.collections.map.EntityMapKey;
import org.eclipse.persistence.testing.models.collections.map.AggregateMapValue;
public class TestReadEntityAggregateMapMapping extends TestCase {
protected List holders = null;
protected int fetchJoinRelationship = 0;
protected int oldFetchJoinValue = 0;
protected AggregateCollectionMapping mapping = null;
protected Expression holderExp;
public TestReadEntityAggregateMapMapping(){
super();
}
public TestReadEntityAggregateMapMapping(int fetchJoin){
this();
fetchJoinRelationship = fetchJoin;
setName("TestReadEntityAggregateMapMapping fetchJoin = " + fetchJoin);
}
@Override
public void setup(){
mapping = (AggregateCollectionMapping)getSession().getProject().getDescriptor(EntityAggregateMapHolder.class).getMappingForAttributeName("entityToAggregateMap");
oldFetchJoinValue = mapping.getJoinFetch();
mapping.setJoinFetch(fetchJoinRelationship);
getSession().getProject().getDescriptor(EntityAggregateMapHolder.class).reInitializeJoinedAttributes();
UnitOfWork uow = getSession().acquireUnitOfWork();
EntityAggregateMapHolder holder = new EntityAggregateMapHolder();
AggregateMapValue value = new AggregateMapValue();
value.setValue(1);
EntityMapKey key = new EntityMapKey();
key.setData("11");
key.setId(1);
holder.addEntityToAggregateMapItem(key, value);
uow.registerObject(key);
AggregateMapValue value2 = new AggregateMapValue();
value2.setValue(2);
key = new EntityMapKey();
key.setData("22");
key.setId(2);
holder.addEntityToAggregateMapItem(key, value2);
uow.registerObject(holder);
uow.registerObject(key);
uow.commit();
holderExp = (new ExpressionBuilder()).get("id").equal(holder.getId());
getSession().getIdentityMapAccessor().initializeAllIdentityMaps();
}
@Override
public void test(){
holders = getSession().readAllObjects(EntityAggregateMapHolder.class, holderExp);
}
@Override
public void verify(){
if (holders == null || holders.size() != 1){
throw new TestErrorException("Incorrect number of MapHolders was read.");
}
EntityAggregateMapHolder holder = (EntityAggregateMapHolder)holders.get(0);
if (!((IndirectMap)holder.getEntityToAggregateMap()).getValueHolder().isInstantiated() && fetchJoinRelationship >0){
throw new TestErrorException("Relationship was not properly joined.");
}
if (holder.getEntityToAggregateMap().size() != 2){
throw new TestErrorException("Incorrect Number of MapEntityValues was read.");
}
EntityMapKey mapKey = new EntityMapKey();
mapKey.setData("11");
mapKey.setId(1);
AggregateMapValue value = (AggregateMapValue)holder.getEntityToAggregateMap().get(mapKey);
if (value.getValue() != 1){
throw new TestErrorException("Incorrect MapEntityValues was read.");
}
}
@Override
public void reset(){
UnitOfWork uow = getSession().acquireUnitOfWork();
uow.deleteAllObjects(holders);
uow.commit();
if (!verifyDelete(holders.get(0))){
throw new TestErrorException("Delete was unsuccessful.");
}
mapping.setJoinFetch(oldFetchJoinValue);
}
}