blob: 8cc9156994f72a2dd40744154b77c423c592da42 [file] [log] [blame]
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<!-- FileName: idkey30 -->
<!-- Document: http://www.w3.org/TR/xslt -->
<!-- DocVersion: 19991116 -->
<!-- Section: 12.4 Miscellaneous Additional Functions -->
<!-- Creator: David Marston -->
<!-- Purpose: Test that 'generate-id()' on various kinds of nodes yields unique values for each -->
<xsl:output method="xml" encoding="UTF-8" indent="no"/>
<xsl:template match="doc">
<out>
<!-- Get in position so we have nodes on the following axis. -->
<xsl:apply-templates select="side"/>
</out>
</xsl:template>
<xsl:template match="side">
<!-- Build up a string containing generated IDs for nodes on the following axis, plus attributes they carry. -->
<xsl:variable name="accumulated">
<!-- Since call-template doesn't change context, iterate by position number. -->
<xsl:call-template name="nextnode">
<xsl:with-param name="this" select="1" />
<xsl:with-param name="max" select="count(following::node()|following::*/@*)" />
<xsl:with-param name="idset" select="'+'" />
<!-- Use + as delimiter to avoid spoofs from adjacent strings.
Returned string from generate-id() can't contain +. -->
</xsl:call-template>
</xsl:variable>
<!-- Summary data, so we have output when we pass. -->
<xsl:text>Number of IDs accumulated: </xsl:text>
<xsl:value-of select="count(following::node()|following::*/@*)"/>
<!-- Now, take one node of each kind, whose generated ID should not be in the accumulated string,
surround generated ID by + to avoid substring matches, and see if it's in there. -->
<!-- Now see if we duplicated an ID with the root -->
<xsl:if test="contains($accumulated,concat('+',generate-id(/),'+'))">
<xsl:text>FAIL on root node whose ID is </xsl:text>
<xsl:value-of select="generate-id(/)"/>
</xsl:if>
<!-- Now see if we duplicated an ID with the element -->
<xsl:if test="contains($accumulated,concat('+',generate-id(.),'+'))">
<xsl:text>FAIL on side node whose ID is </xsl:text>
<xsl:value-of select="generate-id(.)"/>
</xsl:if>
<!-- Now see if we duplicated an ID with the attribute -->
<xsl:if test="contains($accumulated,concat('+',generate-id(./@att),'+'))">
<xsl:text>FAIL on side/@att node whose ID is </xsl:text>
<xsl:value-of select="generate-id(./@att)"/>
</xsl:if>
<!-- Now see if we duplicated an ID with the text node -->
<xsl:if test="contains($accumulated,concat('+',generate-id(./text()),'+'))">
<xsl:text>FAIL on side/text() node whose ID is </xsl:text>
<xsl:value-of select="generate-id(./text())"/>
</xsl:if>
<!-- Now see if we duplicated an ID with the comment node -->
<xsl:if test="contains($accumulated,concat('+',generate-id(./comment()),'+'))">
<xsl:text>FAIL on side/comment() node whose ID is </xsl:text>
<xsl:value-of select="generate-id(./comment())"/>
</xsl:if>
<!-- Now see if we duplicated an ID with the PI node -->
<xsl:if test="contains($accumulated,concat('+',generate-id(./processing-instruction('s-pi')),'+'))">
<xsl:text>FAIL on side/processing-instruction('s-pi') node whose ID is </xsl:text>
<xsl:value-of select="generate-id(./processing-instruction('s-pi'))"/>
</xsl:if>
<!-- Now see if we duplicated an ID with a namespace node -->
<xsl:if test="contains($accumulated,concat('+',generate-id(./namespace::*[1]),'+'))">
<xsl:text>FAIL on side/namespace::*[1] node whose ID is </xsl:text>
<xsl:value-of select="generate-id(./namespace::*[1])"/>
</xsl:if>
</xsl:template>
<xsl:template name="nextnode">
<xsl:param name="this"/>
<xsl:param name="max"/>
<xsl:param name="idset"/>
<!-- Params this and max are index numbers, idset is the string we're accumulating. -->
<xsl:variable name="this-id" select="generate-id((following::node()|following::*/@*)[position() = $this])"/>
<xsl:choose>
<xsl:when test="$this &lt;= $max">
<!-- Recurse, adding current ID to string of all IDs on "begin" sub-tree, with separators -->
<xsl:call-template name="nextnode">
<xsl:with-param name="this" select="$this+1" />
<xsl:with-param name="max" select="$max" />
<xsl:with-param name="idset" select="concat($idset,$this-id,'+')" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<!-- "return" the final idset -->
<xsl:value-of select="$idset"/>
</xsl:otherwise>
</xsl:choose>
</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>