XSL:如何逃脱 document() 的范围?

XSL: How do I escape the scope of document()?

我目前正在尝试创建一个 xsl 文档,该文档使用当前 xml 中的值以及使用 select='document()'.[=14= 的外部引用文档]

我的代码:

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="root">
    <results>
      <xsl:apply-templates select=".//TestLog"/>
    </results>
  </xsl:template>

  <xsl:template match="TestLog">
    <xsl:variable name="id" select='data/testcase/id'/>
    <testcase>
      <xsl:attribute name="internalid">
        <xsl:value-of select="document('internal_ids.xml', /)//testcase[custom_fields/custom_field/value=$id]/@internalid"/>
      </xsl:attribute>
      <desc><xsl:value-of select="data/testcase/description"/></desc>
      <more_data><xsl:value-of select="data/testcase/more_data"/></more_data>
    </testcase>
  </xsl:template>

问题是我想在 internal_ids.xml 中获取与 TestLog 具有相同 pid 的测试用例的内部 ID。我不能使用 'variable' 因为它不会针对每个处理的 TestLog 动态更改,但我需要一些方法来引用当前正在处理的 TestLog 的 id,同时在 document() 的范围内。使用 'xsl:variable' 将所有测试用例 internalid 设置为相同的值,因为变量不会改变。我可以不使用变量,而是以某种方式在 document() 范围内引用 TestLog 节点,这样我就可以在没有 XPATH 引用 document() 的 data/testcase/id?[=14= 的情况下测试 value='data/testcase/id' ]

internal_ids.xml:

<testsuite>
  <testcase internalid="123" name="stuff">
    <custom_fields>
      <custom_field>
        <name>pid</name>
        <value>TC-878</value>
      </custom_field>
    </custom_fields>
  </testcase>
  <testcase internalid="456" name="stuff2">
    <custom_fields>
      <custom_field>
        <name>pid</name>
        <value>TC-200</value>
      </custom_field>
    </custom_fields>
  </testcase>
</testsuite>

original.xml:

<root>
  <TestLog>
    <data>
      <testcase>
        <id>TC-878</id>
        <description>Foo bar foo bar</description>
        <more_data>More data is here</more_data>
      </testcase>
    </data>
  </TestLog>
  <TestLog>
    <data>
      <testcase>
        <id>TC-200</id>
        <description>Blah blah</description>
        <more_data> baz </more_data>
      </testcase>
    </data>
  </TestLog>
</root>

我想要的 output.xml:

<results>
  <testcase internalid="123">
    <desc>Foo bar foo bar</desc>
    <more_data>More data is here</more_data>
  </testcase>
  <testcase internalid="456">
    <desc>Blah Blah</desc>
    <more_data> baz </more_data>
  </testcase>
</results>

以下样式表:

XSLT 1.0

<xsl:stylesheet version="1.0" 
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="root">
    <results>
        <xsl:apply-templates/>
    </results>
</xsl:template>

<xsl:template match="TestLog">
    <xsl:variable name="id" select='data/testcase/id'/>
    <testcase>
      <xsl:attribute name="internalid">
        <xsl:value-of select="document('internal_ids.xml')/testsuite/testcase[custom_fields/custom_field/value=$id]/@internalid"/>
      </xsl:attribute>
      <desc><xsl:value-of select="data/testcase/description"/></desc>
      <more_data><xsl:value-of select="data/testcase/more_data"/></more_data>
    </testcase>
</xsl:template>

</xsl:stylesheet>

应用于以下输入文档:

XML

<root>
  <TestLog>
    <data>
      <testcase>
        <id>TC-878</id>
        <description>Foo bar foo bar</description>
        <more_data>More data is here</more_data>
      </testcase>
    </data>
  </TestLog>
  <TestLog>
    <data>
      <testcase>
        <id>TC-200</id>
        <description>Blah blah</description>
        <more_data> baz </more_data>
      </testcase>
    </data>
  </TestLog>
</root>

internal_ids.xml

<testsuite>
  <testcase internalid="123" name="stuff">
    <custom_fields>
      <custom_field>
        <name>a testcase</name>
        <value>TC-878</value>
      </custom_field>
    </custom_fields>
  </testcase>
  <testcase internalid="456" name="stuff2">
    <custom_fields>
      <custom_field>
        <name>Another testcase</name>
        <value>TC-200</value>
      </custom_field>
    </custom_fields>
  </testcase>
</testsuite>

returns:

结果

<?xml version="1.0" encoding="UTF-8"?>
<results>
   <testcase internalid="123">
      <desc>Foo bar foo bar</desc>
      <more_data>More data is here</more_data>
   </testcase>
   <testcase internalid="456">
      <desc>Blah blah</desc>
      <more_data> baz </more_data>
   </testcase>
</results>

最好使用 key 从其他文档中获取值 - 特别是。如果使用 XSLT 2.0,其中键跨文档工作。