blob: ee0337f67e4fce08f9e20d0ffba4db589c269a6b [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: idkey51 -->
<!-- Document: http://www.w3.org/TR/xslt -->
<!-- DocVersion: 19991116 -->
<!-- Section: 12.1 -->
<!-- Creator: David Marston -->
<!-- Purpose: Test two calls to generate-id() on the same file. All IDs should be
the same. If both filenames were given literally, the spec says that IDs must match.
Retrieving the name from the principal XML document should still clearly mean the
same file. Putting nodes in a variable is more of a gray area. -->
<xsl:output method="xml" encoding="UTF-8" indent="no"/>
<xsl:template match="doc">
<out>
<xsl:variable name="tn" select="document('idkey49a.xml')//doc/body/text()[1]" />
<xsl:choose>
<xsl:when test="generate-id(document('idkey49a.xml')//body) != generate-id(document(a)//body)">
<xsl:text>FAIL on body element: </xsl:text>
<xsl:value-of select="generate-id(document('idkey49c.xml')//body)"/><xsl:text>, </xsl:text>
<xsl:value-of select="generate-id(document(a)//body)"/><xsl:text>&#10;</xsl:text>
</xsl:when>
<xsl:when test="generate-id(document('idkey49a.xml')//text()[1]) != generate-id(document(a)//text()[1])">
<xsl:text>FAIL on first text node: </xsl:text>
<xsl:value-of select="generate-id(document('idkey49c.xml')//text()[1])"/><xsl:text>, </xsl:text>
<xsl:value-of select="generate-id(document(a)//text()[1])"/><xsl:text>&#10;</xsl:text>
</xsl:when>
<xsl:when test="generate-id(document('idkey49a.xml')//body/@att) != generate-id(document(a)//body/@att)">
<xsl:text>FAIL on body attribute: </xsl:text>
<xsl:value-of select="generate-id(document('idkey49c.xml')//body/@att)"/><xsl:text>, </xsl:text>
<xsl:value-of select="generate-id(document(a)//body/@att)"/><xsl:text>&#10;</xsl:text>
</xsl:when>
<xsl:when test="generate-id(document('idkey49a.xml')//comment()[1]) != generate-id(document(a)//comment()[1])">
<xsl:text>FAIL on first comment node: </xsl:text>
<xsl:value-of select="generate-id(document('idkey49c.xml')//comment()[1])"/><xsl:text>, </xsl:text>
<xsl:value-of select="generate-id(document(a)//comment()[1])"/><xsl:text>&#10;</xsl:text>
</xsl:when>
<!-- Now try the node in the variable -->
<xsl:when test="generate-id($tn) != generate-id(document(a)//doc/body/text()[1])">
<xsl:text>FAIL on inner text node: </xsl:text>
<xsl:value-of select="generate-id(document('idkey49c.xml')//text()[1])"/><xsl:text>, </xsl:text>
<xsl:value-of select="generate-id(document(a)//text()[1])"/><xsl:text>&#10;</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>Success</xsl:text>
</xsl:otherwise>
</xsl:choose>
</out>
</xsl:template>
<!--
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
</xsl:stylesheet>