Решение довольно простое.Вы можете настроить DifferenceEngine
для обработки ATTR_VALUE
различий.Напишите пользовательский класс прослушивателя разностей, который реализует DifferenceListener:
class IgnoreIDsDifferenceListener implements DifferenceListener {
private static final int[] IGNORE_VALUES = new int[] {
DifferenceConstants.ATTR_VALUE.getId(),
};
private boolean isIgnoredDifference(Difference difference) {
int differenceId = difference.getId();
for (int i=0; i < IGNORE_VALUES.length; ++i) {
if (differenceId == IGNORE_VALUES[i]) {
return true;
}
}
return false;
}
public int differenceFound(Difference difference) {
if (isIgnoredDifference(difference)) {
return RETURN_IGNORE_DIFFERENCE_NODES_IDENTICAL;
} else {
return RETURN_ACCEPT_DIFFERENCE;
}
}
public void skippedComparison(Node control, Node test) {
}
}
Здесь необходимо проверить, является ли имя атрибута «id».Стандартная функциональность Java DOM может помочь.Но я предпочитаю делать это с помощью регулярных выражений:
String controlNode = difference.getControlNodeDetail().getNode().toString();
controlNode .matches("^id=\".*\"")
PS Смотри также: http://xmlunit.sourceforge.net/api/org/custommonkey/xmlunit/Difference.html