8260286: Manual Test "ws/open/test/jdk/sun/security/tools/jarsigner/compatibility/Compatibility.java" fails

Reviewed-by: rhalade
This commit is contained in:
Fernando Guallini 2021-01-26 18:15:26 +00:00 committed by Rajan Halade
parent fd00ed747a
commit 9f0a043648
2 changed files with 21 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -23,7 +23,7 @@
/* /*
* @test * @test
* @bug 8217375 * @bug 8217375 8260286
* @summary This test is used to verify the compatibility of jarsigner across * @summary This test is used to verify the compatibility of jarsigner across
* different JDK releases. It also can be used to check jar signing (w/ * different JDK releases. It also can be used to check jar signing (w/
* and w/o TSA) and to verify some specific signing and digest algorithms. * and w/o TSA) and to verify some specific signing and digest algorithms.
@ -720,6 +720,7 @@ public class Compatibility {
expectedKeySize() + "-bit key" expectedKeySize() + "-bit key"
+ ")|(" + ")|("
+ " Digest algorithm: " + signItem.expectedDigestAlg() + " Digest algorithm: " + signItem.expectedDigestAlg()
+ (isWeakAlg(signItem.expectedDigestAlg()) ? " \\(weak\\)" : "")
+ (signItem.tsaIndex < 0 ? "" : + (signItem.tsaIndex < 0 ? "" :
")|(" ")|("
+ "Timestamped by \".+\" on .*" + "Timestamped by \".+\" on .*"
@ -805,7 +806,12 @@ public class Compatibility {
boolean warning = false; boolean warning = false;
for (String line : outputAnalyzer.getOutput().lines() for (String line : outputAnalyzer.getOutput().lines()
.toArray(String[]::new)) { .toArray(String[]::new)) {
if (line.isBlank()) continue; if (line.isBlank()) {
// If line is blank and warning flag is true, it is the end of warnings section
// This is needed when some info is added after warnings, such as timestamp expiration date
if (warning) warning = false;
continue;
}
if (Test.JAR_VERIFIED.equals(line)) continue; if (Test.JAR_VERIFIED.equals(line)) continue;
if (line.matches(Test.ERROR + " ?") && expectedExitCode == 0) { if (line.matches(Test.ERROR + " ?") && expectedExitCode == 0) {
System.out.println("verifyingStatus: error: line.matches(" + Test.ERROR + "\" ?\"): " + line); System.out.println("verifyingStatus: error: line.matches(" + Test.ERROR + "\" ?\"): " + line);
@ -835,6 +841,9 @@ public class Compatibility {
+ "not be able to validate this jar after the signer " + "not be able to validate this jar after the signer "
+ "certificate's expiration date \\([^\\)]+\\) or after " + "certificate's expiration date \\([^\\)]+\\) or after "
+ "any future revocation date[.]") && !tsa) continue; + "any future revocation date[.]") && !tsa) continue;
if (isWeakAlg(signItem.expectedDigestAlg())
&& line.contains(Test.WEAK_ALGORITHM_WARNING)) continue;
if (Test.CERTIFICATE_SELF_SIGNED.equals(line)) continue; if (Test.CERTIFICATE_SELF_SIGNED.equals(line)) continue;
if (Test.HAS_EXPIRED_CERT_VERIFYING_WARNING.equals(line) if (Test.HAS_EXPIRED_CERT_VERIFYING_WARNING.equals(line)
&& signItem.certInfo.expired) continue; && signItem.certInfo.expired) continue;
@ -844,6 +853,10 @@ public class Compatibility {
return warning ? Status.WARNING : Status.NORMAL; return warning ? Status.WARNING : Status.NORMAL;
} }
private static boolean isWeakAlg(String alg) {
return SHA1.equals(alg);
}
// Using specified jarsigner to sign the pre-created jar with specified // Using specified jarsigner to sign the pre-created jar with specified
// algorithms. // algorithms.
private static OutputAnalyzer signJar(String jarsignerPath, String sigalg, private static OutputAnalyzer signJar(String jarsignerPath, String sigalg,

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2013, 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -144,6 +144,10 @@ public abstract class Test {
= "This jar contains entries " = "This jar contains entries "
+ "whose signer certificate is not yet valid."; + "whose signer certificate is not yet valid.";
static final String WEAK_ALGORITHM_WARNING
= "algorithm is considered a security risk. "
+ "This algorithm will be disabled in a future update.";
static final String JAR_SIGNED = "jar signed."; static final String JAR_SIGNED = "jar signed.";
static final String JAR_VERIFIED = "jar verified."; static final String JAR_VERIFIED = "jar verified.";