9

我有 2 个 xml 文件:

问题在于属性前缀。

<element xmlns:prefix1="namespace" prefix1:attribute="some value">Some text</element>


<element xmlns:prefix2="namespace" prefix2:attribute="some value">Some text</element>

这两个 xml 是相同的,具有相同的命名空间,但具有不同的前缀。如果我与 xmlunit 进行比较-> 断言失败。我该如何处理?

在相似()或相同()比较的情况下,我有错误:

预期属性名称“消息:MessageNameString”但为“null”
预期属性名称“消息:MessageVersion”但为“null”
预期属性名称“null”但为“mes:MessageNameString”
预期属性名称“null”但为“mes:消息版本'

4

3 回答 3

6

以下测试通过了“相似”检查但未通过“相同”检查:

    String control = "<prefix1:element xmlns:prefix1=\"namespace\" prefix1:attribute=\"x\">Some text</prefix1:element>";
    String test = "<prefix2:element xmlns:prefix2=\"namespace\" prefix2:attribute=\"x\">Some text</prefix2:element>";
    try
    {
        Diff diff = XMLUnit.compareXML( control, test );
        assertTrue( "Similar", diff.similar() );
        assertTrue( "Identical", diff.identical() );
    }
    catch ( Exception e )
    {
        fail( e.getMessage() );
    }

来自 xmlunit API 文档:

  • 相同:文档中节点的内容和顺序完全相同
  • 相似:文档中节点的内容相同,但存在细微差别,例如兄弟元素的排序、命名空间前缀的值、隐含属性值的使用

因此,使用“类似”检查应该会给你你想要的。

编辑:添加前缀属性,结果相同。

于 2012-11-13T10:08:17.373 回答
0

使用 XMLUnit 1.x:

// Similar
XMLAssert.assertXMLEqual()

// Identical
XMLAssert.assertXMLIdentical()

使用 XMLUnit 2.x:

import static org.xmlunit.assertj.XmlAssert.assertThat;
...

// Similar
assertThat(xmlResult).and(xmlExpected).areSimilar();

// Identical
assertThat(xmlResult).and(xmlExpected).areIdentical();

https://github.com/xmlunit/xmlunit#comparing-two-documents

于 2018-09-24T22:05:21.670 回答
0
// identical
XMLAssert.assertXMLEqual(XMLUnit.compareXML(control, test), true)
// similar
XMLAssert.assertXMLEqual(XMLUnit.compareXML(control, test), false)
于 2017-06-29T17:15:57.297 回答