-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18790 from famod/ea-jdk-jwt
Disable TokenUtilsEncryptTest#testFailAlgorithm on Java 17+
- Loading branch information
Showing
3 changed files
with
67 additions
and
1 deletion.
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
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,4 @@ | ||
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> | ||
<!-- The xml plugin chokes on the redirect, so re-map it to directly https --> | ||
<system systemId="http://testng.org/testng-1.0.dtd" uri="https://testng.org/testng-1.0.dtd"/> | ||
</catalog> |
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,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> | ||
<!-- Retain DTD (yes, with http instead of https, otherwise testng will issue a warning) --> | ||
<xsl:output method="xml" doctype-system="http://testng.org/testng-1.0.dtd"/> | ||
|
||
<!-- Identity transform --> | ||
<xsl:template match="@* | node()"> | ||
<xsl:copy> | ||
<xsl:apply-templates select="@* | node()"/> | ||
</xsl:copy> | ||
</xsl:template> | ||
|
||
<!-- Exclude TokenUtilsEncryptTest#testFailAlgorithm due to https://github.com/quarkusio/quarkus/issues/18372#issuecomment-877864662 --> | ||
<xsl:template match="class[@name = 'org.eclipse.microprofile.jwt.tck.util.TokenUtilsEncryptTest']"> | ||
<xsl:copy> | ||
<xsl:copy-of select="@*"/> | ||
<xsl:copy-of select="node()"/> | ||
<methods><exclude name="testFailAlgorithm" /></methods> | ||
</xsl:copy> | ||
</xsl:template> | ||
|
||
</xsl:stylesheet> |