-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bugzilla 896: check that existing mdrpi metadata on import matches th…
…e source Made a checking framework for this, and applied it to the ie_edugate channel (which doesn't yet have such metadata, but which we import) and the hu_eduid channel (which we don't import, but does have the metadata).
- Loading branch information
Showing
4 changed files
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
| check_regauth.xsl | ||
| Check that the registration authority on an entity is the expected one. | ||
| --> | ||
| <xsl:stylesheet version="1.0" | ||
| xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | ||
| xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" | ||
| xmlns:mdrpi="urn:oasis:names:tc:SAML:metadata:rpi" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xmlns="urn:oasis:names:tc:SAML:2.0:metadata"> | ||
|
|
||
| <!-- | ||
| Common support functions. | ||
| --> | ||
| <xsl:import href="../build/check_framework.xsl"/> | ||
|
|
||
| <!-- | ||
| expectedAuthority | ||
| Set this parameter from the calling context. | ||
| --> | ||
| <xsl:param name="expectedAuthority">(value not set)</xsl:param> | ||
|
|
||
| <xsl:template match="mdrpi:RegistrationInfo"> | ||
| <xsl:if test="@registrationAuthority != $expectedAuthority"> | ||
| <xsl:call-template name="error"> | ||
| <xsl:with-param name="m"> | ||
| <xsl:text>unexpected registration authority '</xsl:text> | ||
| <xsl:value-of select="@registrationAuthority"/> | ||
| <xsl:text>'; expected '</xsl:text> | ||
| <xsl:value-of select="$expectedAuthority"/> | ||
| <xsl:text>' for this channel</xsl:text> | ||
| </xsl:with-param> | ||
| </xsl:call-template> | ||
| </xsl:if> | ||
| </xsl:template> | ||
|
|
||
| </xsl:stylesheet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters