1
1
/*
2
- * Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2024, 2025, Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
23
23
24
24
/*
25
25
* @test
26
- * @bug 8337506
27
- * @summary Verify Command Line arguments are not mapped with
28
- * "best-fit" mappings on Windows
26
+ * @bug 8337506 8349254
27
+ * @summary Verify command line arguments, including ones from
28
+ * "JDK_JAVA_OPTIONS" environment variables are not mapped
29
+ * with "best-fit" mappings on Windows
29
30
* @requires (os.family == "windows")
30
31
* @library /test/lib
31
32
* @run junit DisableBestFitMappingTest
34
35
import java .nio .charset .Charset ;
35
36
import java .nio .charset .CharsetEncoder ;
36
37
import java .util .stream .Stream ;
38
+
37
39
import jdk .test .lib .process .ProcessTools ;
38
40
39
- import org .junit .jupiter .api .Test ;
40
41
import org .junit .jupiter .params .ParameterizedTest ;
41
42
import org .junit .jupiter .params .provider .Arguments ;
42
43
import org .junit .jupiter .params .provider .MethodSource ;
@@ -49,10 +50,12 @@ public class DisableBestFitMappingTest {
49
50
Charset .forName (System .getProperty ("native.encoding" )).newEncoder ();
50
51
private static final String REPLACEMENT =
51
52
NATIVE_ENC .charset ().decode (ByteBuffer .wrap (NATIVE_ENC .replacement ())).toString ();
53
+ private static final String TEST_ENV_VAR = "JDK_JAVA_OPTIONS" ;
54
+ private static final String TEST_PROP_KEY = "testProp" ;
52
55
private static final int EXIT_SUCCESS = 0 ;
53
56
private static final int EXIT_FAILURE = -1 ;
54
57
55
- static Stream <Arguments > CMD_ARGS () {
58
+ static Stream <Arguments > TEST_ARGS () {
56
59
return Stream .of (
57
60
Arguments .of ("aa\uff02 \uff02 bb" , "aa" + REPLACEMENT + " " + REPLACEMENT + "bb" ),
58
61
Arguments .of ("aa\uff01 bb" , "aa" + REPLACEMENT + "bb" ),
@@ -61,23 +64,41 @@ static Stream<Arguments> CMD_ARGS() {
61
64
}
62
65
63
66
@ ParameterizedTest
64
- @ MethodSource ("CMD_ARGS " )
65
- void testDisableBestFitMapping (String arg , String expected ) throws Exception {
67
+ @ MethodSource ("TEST_ARGS " )
68
+ void testCommandLineArgument (String arg , String expected ) throws Exception {
66
69
// Only execute if the arg cannot be encoded
67
70
assumeFalse (NATIVE_ENC .canEncode (arg ),
68
71
"native.encoding (%s) can encode the argument '%s'. Test ignored."
69
72
.formatted (NATIVE_ENC .charset (), arg ));
70
73
71
- var result = ProcessTools .executeTestJava (
72
- DisableBestFitMappingTest .class .getSimpleName (), arg , expected );
74
+ var result = ProcessTools .executeTestJava (
75
+ DisableBestFitMappingTest .class .getSimpleName (), expected , arg );
76
+ result .asLines ().forEach (System .out ::println );
77
+ assertEquals (EXIT_SUCCESS , result .getExitValue (),
78
+ "Command line argument mapping failed" );
79
+ }
80
+
81
+ @ ParameterizedTest
82
+ @ MethodSource ("TEST_ARGS" )
83
+ void testEnvironmentVariable (String propVal , String expected ) throws Exception {
84
+ // Only execute if the arg from the environment variable cannot be encoded
85
+ assumeFalse (NATIVE_ENC .canEncode (propVal ),
86
+ "native.encoding (%s) can encode the argument '%s'. Test ignored."
87
+ .formatted (NATIVE_ENC .charset (), propVal ));
88
+
89
+ var pb = ProcessTools .createTestJavaProcessBuilder (
90
+ DisableBestFitMappingTest .class .getSimpleName (), expected );
91
+ pb .environment ().put (TEST_ENV_VAR , "-D" + TEST_PROP_KEY + "=\" " + propVal + "\" " );
92
+ var result = ProcessTools .executeProcess (pb );
73
93
result .asLines ().forEach (System .out ::println );
74
94
assertEquals (EXIT_SUCCESS , result .getExitValue (),
75
- "Disabling best-fit mapping failed" );
95
+ "Argument from JDK_JAVA_OPTIONS mapping failed" );
76
96
}
77
97
78
98
public static void main (String ... args ) {
79
- System .out .println (args [0 ]);
80
- System .out .println (args [1 ]);
81
- System .exit (args [0 ].equals (args [1 ]) ? EXIT_SUCCESS : EXIT_FAILURE );
99
+ var expected = args [0 ];
100
+ var actual = args .length > 1 ? args [1 ] : System .getProperty (TEST_PROP_KEY );
101
+ System .out .printf ("expected: %s, actual: %s%n" , expected , actual );
102
+ System .exit (expected .equals (actual ) ? EXIT_SUCCESS : EXIT_FAILURE );
82
103
}
83
104
}
0 commit comments