Skip to content
Snippets Groups Projects
Commit fd76de44 authored by anttil's avatar anttil
Browse files

Bugfix: Consistent creation of dataset parent-child relationships.

SVN: 26118
parent 938f631c
No related branches found
No related tags found
No related merge requests found
......@@ -169,7 +169,9 @@ public class RelationshipService implements IRelationshipService
public void addParentToDataSet(IAuthSession session, DataPE data, DataPE parent)
{
PersonPE actor = session.tryGetPerson();
data.addParentRelationship(new DataSetRelationshipPE(parent, data, actor));
DataSetRelationshipPE relationship = new DataSetRelationshipPE(parent, data, actor);
data.addParentRelationship(relationship);
parent.addChildRelationship(relationship);
}
@Override
......
......@@ -16,7 +16,6 @@
package ch.systemsx.cisd.openbis.systemtest.base.matcher;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
......@@ -28,13 +27,16 @@ import ch.systemsx.cisd.openbis.generic.shared.basic.dto.ExternalData;
public class ExternalDataHasChildrenMatcher extends TypeSafeMatcher<ExternalData>
{
private Set<ExternalData> expectedChildren;
private Set<String> expectedChildren;
public ExternalDataHasChildrenMatcher(ExternalData first, ExternalData... rest)
{
this.expectedChildren = new HashSet<ExternalData>();
expectedChildren.add(first);
expectedChildren.addAll(Arrays.asList(rest));
this.expectedChildren = new HashSet<String>();
expectedChildren.add(first.getCode());
for (ExternalData d : rest)
{
expectedChildren.add(d.getCode());
}
}
@Override
......@@ -53,7 +55,7 @@ public class ExternalDataHasChildrenMatcher extends TypeSafeMatcher<ExternalData
for (ExternalData child : actual.getChildren())
{
if (!expectedChildren.contains(child))
if (expectedChildren.contains(child.getCode()) == false)
{
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment