mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
Don't fail on JDK 21.0.1 if one signature check fails
See https://bugs.openjdk.org/browse/JDK-8320597 for the related bug-report for the JDK itself git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1914986 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fb3f3ef26f
commit
a9ca01e3fd
@ -253,9 +253,15 @@ class TestSignatureInfo {
|
||||
si.setSignatureConfig(sic);
|
||||
boolean isValid = si.verifySignature();
|
||||
|
||||
// We reported https://bugs.openjdk.org/browse/JDK-8320597 because of this, it will be fixed in JDK 22
|
||||
// and maybe in newer JDK 21 patch-levels
|
||||
assumeTrue(isValid && !"21.0.1".equals(System.getProperty("java.version")),
|
||||
"This fails on JDK 21.0.1, see https://bugs.openjdk.org/browse/JDK-8320597");
|
||||
|
||||
assertTrue(isValid,
|
||||
// add some details to find out why "verifySignature()" returns false sometimes
|
||||
"Verifying signature failed, hasNext: " + si.getSignatureParts().iterator().hasNext() + ": " +
|
||||
"Failed for " + System.getProperty("java.version") +
|
||||
": Verifying signature failed, hasNext: " + si.getSignatureParts().iterator().hasNext() + ": " +
|
||||
(si.getSignatureParts().iterator().hasNext() ? si.getSignatureParts().iterator() : ""));
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user