105 lines
4.0 KiB
Java
105 lines
4.0 KiB
Java
/*
|
|
* Copyright (c) 2024, 2025, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
/*
|
|
* @test
|
|
* @bug 8051959 8350689
|
|
* @summary Option to print extra information in java.security.debug output
|
|
* @library /test/lib
|
|
* @run junit DebugOptions
|
|
*/
|
|
|
|
import org.junit.jupiter.params.ParameterizedTest;
|
|
import org.junit.jupiter.params.provider.Arguments;
|
|
import org.junit.jupiter.params.provider.MethodSource;
|
|
|
|
import java.security.KeyStore;
|
|
import java.security.Security;
|
|
import java.util.stream.Stream;
|
|
|
|
import jdk.test.lib.process.OutputAnalyzer;
|
|
import jdk.test.lib.process.ProcessTools;
|
|
|
|
public class DebugOptions {
|
|
|
|
static final String DATE_REGEX = "\\d{4}-\\d{2}-\\d{2}";
|
|
static final String EXPECTED_PROP_REGEX =
|
|
"properties\\[.*\\|main|" + DATE_REGEX + ".*\\]:";
|
|
static final String EXPECTED_PROP_KEYSTORE_REGEX =
|
|
"properties\\[.*\\|main|" + DATE_REGEX +
|
|
".*\\Rkeystore\\[.*\\|main|" + DATE_REGEX + ".*\\]:";
|
|
static final String EXPECTED_ALL_REGEX =
|
|
"properties\\[.*\\|main.*\\|" + DATE_REGEX +
|
|
".*\\]((.*\\R)*)keystore\\[.*\\|main.*\\|"
|
|
+ DATE_REGEX + ".*\\]:";
|
|
|
|
private static Stream<Arguments> patternMatches() {
|
|
return Stream.of(
|
|
// test for thread and timestamp info
|
|
Arguments.of("properties",
|
|
EXPECTED_PROP_REGEX,
|
|
"properties:"),
|
|
// test for thread and timestamp info
|
|
Arguments.of("properties+thread",
|
|
EXPECTED_PROP_REGEX,
|
|
"properties:"),
|
|
// flip the arguments of previous test
|
|
Arguments.of("properties+thread+timestamp",
|
|
EXPECTED_PROP_REGEX,
|
|
"properties:"),
|
|
// regular keystore,properties component string
|
|
Arguments.of("keystore,properties",
|
|
EXPECTED_PROP_KEYSTORE_REGEX,
|
|
"properties:"),
|
|
// turn on all
|
|
Arguments.of("all",
|
|
EXPECTED_ALL_REGEX,
|
|
"properties:"),
|
|
// expect thread and timestamp info
|
|
Arguments.of("all+thread",
|
|
EXPECTED_ALL_REGEX,
|
|
"properties:")
|
|
);
|
|
}
|
|
|
|
@ParameterizedTest
|
|
@MethodSource("patternMatches")
|
|
public void shouldContain(String params, String expected, String notExpected) throws Exception {
|
|
OutputAnalyzer outputAnalyzer = ProcessTools.executeTestJava(
|
|
"-Djava.security.debug=" + params,
|
|
"DebugOptions"
|
|
);
|
|
outputAnalyzer.shouldHaveExitValue(0)
|
|
.shouldMatch(expected)
|
|
.shouldNotMatch(notExpected);
|
|
}
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
// something to trigger "properties" debug output
|
|
Security.getProperty("test");
|
|
// trigger "keystore" debug output
|
|
KeyStore ks = KeyStore.getInstance("PKCS12");
|
|
ks.load(null, null);
|
|
}
|
|
}
|