7297
|
1 |
/*
|
|
2 |
* Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
|
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
4 |
*
|
|
5 |
* This code is free software; you can redistribute it and/or modify it
|
|
6 |
* under the terms of the GNU General Public License version 2 only, as
|
|
7 |
* published by the Free Software Foundation.
|
|
8 |
*
|
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that
|
|
13 |
* accompanied this code).
|
|
14 |
*
|
|
15 |
* You should have received a copy of the GNU General Public License version
|
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
18 |
*
|
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
20 |
* or visit www.oracle.com if you need additional information or have any
|
|
21 |
* questions.
|
|
22 |
*/
|
|
23 |
import java.io.File;
|
|
24 |
import java.io.IOException;
|
|
25 |
|
|
26 |
/*
|
|
27 |
* @test
|
|
28 |
* @bug 6994753
|
|
29 |
* @summary tests -XshowSettings options
|
|
30 |
* @compile -XDignore.symbol.file Settings.java TestHelper.java
|
|
31 |
* @run main Settings
|
|
32 |
* @author ksrini
|
|
33 |
*/
|
|
34 |
public class Settings {
|
|
35 |
private static File testJar = null;
|
|
36 |
|
|
37 |
static void init() throws IOException {
|
|
38 |
if (testJar != null) {
|
|
39 |
return;
|
|
40 |
}
|
|
41 |
testJar = new File("test.jar");
|
|
42 |
StringBuilder tsrc = new StringBuilder();
|
|
43 |
tsrc.append("public static void main(String... args) {\n");
|
|
44 |
tsrc.append(" for (String x : args) {\n");
|
|
45 |
tsrc.append(" System.out.println(x);\n");
|
|
46 |
tsrc.append(" }\n");
|
|
47 |
tsrc.append("}\n");
|
|
48 |
TestHelper.createJar(testJar, tsrc.toString());
|
|
49 |
}
|
|
50 |
|
|
51 |
static void checkContains(TestHelper.TestResult tr, String str) {
|
|
52 |
if (!tr.contains(str)) {
|
|
53 |
System.out.println(tr);
|
|
54 |
throw new RuntimeException(str + " not found");
|
|
55 |
}
|
|
56 |
}
|
|
57 |
|
|
58 |
static void checkNoContains(TestHelper.TestResult tr, String str) {
|
|
59 |
if (tr.contains(str)) {
|
|
60 |
System.out.println(tr.status);
|
|
61 |
throw new RuntimeException(str + " found");
|
|
62 |
}
|
|
63 |
}
|
|
64 |
|
|
65 |
private static final String VM_SETTINGS = "VM settings:";
|
|
66 |
private static final String PROP_SETTINGS = "Property settings:";
|
|
67 |
private static final String LOCALE_SETTINGS = "Locale settings:";
|
|
68 |
|
|
69 |
static void containsAllOptions(TestHelper.TestResult tr) {
|
|
70 |
checkContains(tr, VM_SETTINGS);
|
|
71 |
checkContains(tr, PROP_SETTINGS);
|
|
72 |
checkContains(tr, LOCALE_SETTINGS);
|
|
73 |
}
|
|
74 |
|
|
75 |
static void runTestOptionDefault() throws IOException {
|
|
76 |
TestHelper.TestResult tr = null;
|
7810
|
77 |
tr = TestHelper.doExec(TestHelper.javaCmd, "-Xms64m", "-Xmx512m",
|
|
78 |
"-Xss128k", "-XshowSettings", "-jar", testJar.getAbsolutePath());
|
|
79 |
containsAllOptions(tr);
|
|
80 |
if (!tr.isOK()) {
|
|
81 |
System.out.println(tr.status);
|
|
82 |
throw new RuntimeException("test fails");
|
|
83 |
}
|
|
84 |
tr = TestHelper.doExec(TestHelper.javaCmd, "-Xms65536k", "-Xmx712m",
|
|
85 |
"-Xss122880", "-XshowSettings", "-jar", testJar.getAbsolutePath());
|
7297
|
86 |
containsAllOptions(tr);
|
|
87 |
if (!tr.isOK()) {
|
|
88 |
System.out.println(tr.status);
|
|
89 |
throw new RuntimeException("test fails");
|
|
90 |
}
|
|
91 |
}
|
|
92 |
|
|
93 |
static void runTestOptionAll() throws IOException {
|
|
94 |
init();
|
|
95 |
TestHelper.TestResult tr = null;
|
|
96 |
tr = TestHelper.doExec(TestHelper.javaCmd, "-XshowSettings:all");
|
|
97 |
containsAllOptions(tr);
|
|
98 |
}
|
|
99 |
|
|
100 |
static void runTestOptionVM() throws IOException {
|
|
101 |
TestHelper.TestResult tr = null;
|
|
102 |
tr = TestHelper.doExec(TestHelper.javaCmd, "-XshowSettings:vm");
|
|
103 |
checkContains(tr, VM_SETTINGS);
|
|
104 |
checkNoContains(tr, PROP_SETTINGS);
|
|
105 |
checkNoContains(tr, LOCALE_SETTINGS);
|
|
106 |
}
|
|
107 |
|
|
108 |
static void runTestOptionProperty() throws IOException {
|
|
109 |
TestHelper.TestResult tr = null;
|
|
110 |
tr = TestHelper.doExec(TestHelper.javaCmd, "-XshowSettings:properties");
|
|
111 |
checkNoContains(tr, VM_SETTINGS);
|
|
112 |
checkContains(tr, PROP_SETTINGS);
|
|
113 |
checkNoContains(tr, LOCALE_SETTINGS);
|
|
114 |
}
|
|
115 |
|
|
116 |
static void runTestOptionLocale() throws IOException {
|
|
117 |
TestHelper.TestResult tr = null;
|
|
118 |
tr = TestHelper.doExec(TestHelper.javaCmd, "-XshowSettings:locale");
|
|
119 |
checkNoContains(tr, VM_SETTINGS);
|
|
120 |
checkNoContains(tr, PROP_SETTINGS);
|
|
121 |
checkContains(tr, LOCALE_SETTINGS);
|
|
122 |
}
|
|
123 |
|
|
124 |
static void runTestBadOptions() throws IOException {
|
|
125 |
TestHelper.TestResult tr = null;
|
|
126 |
tr = TestHelper.doExec(TestHelper.javaCmd, "-XshowSettingsBadOption");
|
|
127 |
checkNoContains(tr, VM_SETTINGS);
|
|
128 |
checkNoContains(tr, PROP_SETTINGS);
|
|
129 |
checkNoContains(tr, LOCALE_SETTINGS);
|
|
130 |
checkContains(tr, "Unrecognized option: -XshowSettingsBadOption");
|
|
131 |
}
|
|
132 |
public static void main(String... args) {
|
|
133 |
try {
|
|
134 |
runTestOptionAll();
|
|
135 |
runTestOptionDefault();
|
|
136 |
runTestOptionVM();
|
|
137 |
runTestOptionProperty();
|
|
138 |
runTestOptionLocale();
|
|
139 |
runTestBadOptions();
|
|
140 |
} catch (IOException ioe) {
|
|
141 |
throw new RuntimeException(ioe);
|
|
142 |
}
|
|
143 |
}
|
|
144 |
}
|