protected void setUp() throws Exception {
super.setUp();
URL impactsUrl = ImpactsParserTest.class.getResource("test-impacts.xml");
ImpactsParser parser = new ImpactsParser();
this.impacts = parser.parseAsList(impactsUrl);
}
public void testImpactsParsing() {
System.out.println(this.impactInfo = (ImpactInfo)this.impacts.get(0));
System.out.println(this.impactInfo = (ImpactInfo)this.impacts.get(1));
it gives different values than my test xml given below as:
ImpactInfo onObject='impact1' onAction='show' toObject='impacted1' toAction='onshow' value='true' reversible='true'
ConditionInfo: onObject='impact1.dcr1' onAction='show' value='true'
ConditionInfo: onObject='impact1.dcr2' onAction='show' value='false'
ConditionInfo: onObject='impact1.dcr3' onAction='onshow' value='true'
ImpactInfo onObject='impact1.dcr1' onAction='onshow' toObject='impacted1' toAction='onshow' value='true' reversible='true'
ConditionInfo: onObject='impact1' onAction='show' value='true'
ConditionInfo: onObject='impact1.dcr2' onAction='show' value='false'
ConditionInfo: onObject='impact1.dcr3' onAction='onshow' value='true'
whereas xml file contains,
test-impacts.xml:
<impacts>
<impact onObject="impact1" onAction="show" toObject="impacted1" toAction="onshow" value="true">
<condition onObject="impact1.dcr1" onAction="show" value="true"/>
<condition onObject="impact1.dcr2" onAction="show" value="false"/>
<condition onObject="impact1.dcr3" onAction="onshow"/>
</impact>
<impact onObject="impact2" onAction="select" toObject="impacted2" toAction="onselect" value="false">
<condition onObject="impact2.dcr1" onAction="onshow" value="true"/>
<condition onObject="impact2.dcr2" onAction="onselect" value="false"/>
<condition onObject="impact2.dcr3" onAction="show"/>
<condition onObject="impact2.dcr4" onAction="select"/>
</impact>
</impacts>
why i am getting different values than original xml values ?
ImpactsParser.java:
public List<ImpactInfo> parseAsList(URL url) {
SAXReader reader = new SAXReader();
Document doc = reader.read(url);
Element descriptionsTag = doc.getRootElement();
return parseImpacts(descriptionsTag);
}
private List<ImpactInfo> parseImpacts(Element descriptionsTag) {
LinkedList<ImpactInfo> impacts = new LinkedList<ImpactInfo>();
for (Iterator<Element> iter = descriptionsTag.elementIterator(TAG_IMPACT); iter.hasNext();) {
Element ele = iter.next();
// iterate on all onObjects
Set<String> onObjectsSet = getValuesFromElementAttribute(ele, ATT_ON_OBJECT, ",");
Set<String> toObjectsSet = getValuesFromElementAttribute(ele, ATT_TO_OBJECT, ",");
for (Iterator<String> it = onObjectsSet.iterator(); it.hasNext();) {
String onObject = it.next();
for (Iterator<String> itt = toObjectsSet.iterator(); itt.hasNext();) {
ImpactInfo impactInfo = parseImpactInfo(onObject, itt.next(), ele);
impacts.add(impactInfo);
// create inverted impacts for impacts with conditions
if ((impactInfo.getConditions() != null) && (impactInfo.getConditions().size() > 0)) {
impacts.addAll(createInvertedImpacts(impactInfo));
}
}
}
}
return impacts;
}
protected Set<String> getValuesFromElementAttribute(Element element, String attributeName, String separator) {
Set<String> names = new HashSet<String>();
if (element.attribute(attributeName) != null) {
String[] dcrs = element.attribute(attributeName).getValue().split(separator);
for (int index = 0; index < dcrs.length; index++) {
if (dcrs[index] != null) {
names.add(dcrs[index].trim());
}
}
}
return names;
}
