mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-21 20:45:10 +00:00
test: Use XMLUnit to compare XMI
The XMLUnit DiffBuilder used can ignore element order, but still checks for correct nesting, which the string sorting could not.
This commit is contained in:
parent
1899280e21
commit
7b1f67a57e
@ -33,6 +33,7 @@ dependencies {
|
|||||||
testImplementation("io.github.glytching:junit-extensions:2.6.0")
|
testImplementation("io.github.glytching:junit-extensions:2.6.0")
|
||||||
testImplementation("org.assertj:assertj-core:3.24.2")
|
testImplementation("org.assertj:assertj-core:3.24.2")
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
||||||
|
testImplementation("org.xmlunit:xmlunit-core:2.9.+")
|
||||||
if (JavaVersion.current().isJava8) {
|
if (JavaVersion.current().isJava8) {
|
||||||
testImplementation("org.mockito:mockito-core:4.+")
|
testImplementation("org.mockito:mockito-core:4.+")
|
||||||
testImplementation("org.mockito:mockito-junit-jupiter:4.+")
|
testImplementation("org.mockito:mockito-junit-jupiter:4.+")
|
||||||
|
@ -28,6 +28,7 @@ dependencies {
|
|||||||
testImplementation("org.assertj:assertj-core:3.24.2")
|
testImplementation("org.assertj:assertj-core:3.24.2")
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
||||||
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
||||||
|
testImplementation("org.xmlunit:xmlunit-core:2.9.+")
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -28,6 +28,7 @@ dependencies {
|
|||||||
testImplementation("org.assertj:assertj-core:3.24.2")
|
testImplementation("org.assertj:assertj-core:3.24.2")
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
||||||
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
||||||
|
testImplementation("org.xmlunit:xmlunit-core:2.9.+")
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -28,6 +28,7 @@ dependencies {
|
|||||||
testImplementation("org.assertj:assertj-core:3.24.2")
|
testImplementation("org.assertj:assertj-core:3.24.2")
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
||||||
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
||||||
|
testImplementation("org.xmlunit:xmlunit-core:2.9.+")
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -28,6 +28,7 @@ dependencies {
|
|||||||
testImplementation("org.assertj:assertj-core:3.24.2")
|
testImplementation("org.assertj:assertj-core:3.24.2")
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
||||||
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
||||||
|
testImplementation("org.xmlunit:xmlunit-core:2.9.+")
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -28,6 +28,7 @@ dependencies {
|
|||||||
testImplementation("org.assertj:assertj-core:3.24.2")
|
testImplementation("org.assertj:assertj-core:3.24.2")
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
testImplementation("org.junit.jupiter:junit-jupiter:5.10.1")
|
||||||
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
||||||
|
testImplementation("org.xmlunit:xmlunit-core:2.9.+")
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -12,9 +12,12 @@ import java.nio.file.Path;
|
|||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
|
||||||
import java.util.TreeMap;
|
import org.xmlunit.builder.DiffBuilder;
|
||||||
import java.util.concurrent.atomic.AtomicInteger;
|
import org.xmlunit.builder.Input;
|
||||||
|
import org.xmlunit.diff.DefaultNodeMatcher;
|
||||||
|
import org.xmlunit.diff.Diff;
|
||||||
|
import org.xmlunit.diff.ElementSelectors;
|
||||||
|
|
||||||
import net.sourceforge.plantuml.FileFormat;
|
import net.sourceforge.plantuml.FileFormat;
|
||||||
import net.sourceforge.plantuml.FileFormatOption;
|
import net.sourceforge.plantuml.FileFormatOption;
|
||||||
@ -30,44 +33,31 @@ public class XmiTest {
|
|||||||
final String star = removeVersion(runPlantUML(expectedDescription, FileFormat.XMI_STAR));
|
final String star = removeVersion(runPlantUML(expectedDescription, FileFormat.XMI_STAR));
|
||||||
final String starExpected = readStringFromSourceFile(getDiagramFile(), "{{{star", "}}}star");
|
final String starExpected = readStringFromSourceFile(getDiagramFile(), "{{{star", "}}}star");
|
||||||
|
|
||||||
// This is really a hack. Since XML generation does not guarantee the order of
|
assertXMIEqual(star, starExpected);
|
||||||
// attributes, we make an easy to do check by sorting characters.
|
|
||||||
// Of course, this is really incomplete: a faulty String may match the expected
|
|
||||||
// result if, for example, an attribute is moved from a node to another.
|
|
||||||
// However, we consider that it is a good start.
|
|
||||||
if (sortString(star).equals(sortString(starExpected)) == false) {
|
|
||||||
assertEquals(starExpected, star, "XmiStar: Generated GraphML is not ok");
|
|
||||||
}
|
|
||||||
|
|
||||||
final String argo = removeVersion(runPlantUML(expectedDescription, FileFormat.XMI_ARGO));
|
final String argo = removeVersion(runPlantUML(expectedDescription, FileFormat.XMI_ARGO));
|
||||||
final String argoExpected = readStringFromSourceFile(getDiagramFile(), "{{{argo", "}}}argo");
|
final String argoExpected = readStringFromSourceFile(getDiagramFile(), "{{{argo", "}}}argo");
|
||||||
|
|
||||||
if (sortString(argo).equals(sortString(argoExpected)) == false) {
|
assertXMIEqual(argo, argoExpected);
|
||||||
assertEquals(argoExpected, argo, "XmiArgo: Generated GraphML is not ok");
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
private void assertXMIEqual(final String actual, final String expected) {
|
||||||
|
// XMI is XML, so we can just use the xmlunit diffbuilder
|
||||||
|
// Compare elements with the same xmi ID
|
||||||
|
// checkForSimilar required to ignore order
|
||||||
|
Diff diff = DiffBuilder.compare(Input.fromString(actual)).withTest(Input.fromString(expected))
|
||||||
|
.ignoreWhitespace().ignoreComments().checkForSimilar()
|
||||||
|
.withNodeMatcher(new DefaultNodeMatcher(ElementSelectors.byNameAndAttributes("xmi.id"))).build();
|
||||||
|
|
||||||
|
if (diff.hasDifferences()) {
|
||||||
|
assertTrue(false, diff.fullDescription());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private String removeVersion(String xmi) {
|
private String removeVersion(String xmi) {
|
||||||
return xmi.replaceFirst("\\<XMI.exporterVersion\\>.*\\</XMI.exporterVersion\\>", "");
|
return xmi.replaceFirst("\\<XMI.exporterVersion\\>.*\\</XMI.exporterVersion\\>", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
private String sortString(String s) {
|
|
||||||
final Map<Character, AtomicInteger> map = new TreeMap<>();
|
|
||||||
for (int i = 0; i < s.length(); i++) {
|
|
||||||
final char ch = s.charAt(i);
|
|
||||||
// We ignore non writable characters
|
|
||||||
if (ch <= ' ')
|
|
||||||
continue;
|
|
||||||
|
|
||||||
AtomicInteger count = map.get(ch);
|
|
||||||
if (count == null)
|
|
||||||
map.put(ch, new AtomicInteger(1));
|
|
||||||
else
|
|
||||||
count.addAndGet(1);
|
|
||||||
}
|
|
||||||
return map.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
private String getLocalFolder() {
|
private String getLocalFolder() {
|
||||||
return "test/" + getPackageName().replace(".", "/");
|
return "test/" + getPackageName().replace(".", "/");
|
||||||
|
Loading…
Reference in New Issue
Block a user