Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/jdk17u
Path: blob/master/test/hotspot/jtreg/containers/docker/TestMisc.java
64474 views
1
/*
2
* Copyright (c) 2017, 2022, 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
24
25
/*
26
* @test
27
* @summary Test miscellanous functionality related to JVM running in docker container
28
* @requires docker.support
29
* @library /test/lib
30
* @modules java.base/jdk.internal.misc
31
* java.management
32
* jdk.jartool/sun.tools.jar
33
* @build CheckContainerized sun.hotspot.WhiteBox PrintContainerInfo
34
* @run driver jdk.test.lib.helpers.ClassFileInstaller -jar whitebox.jar sun.hotspot.WhiteBox
35
* @run driver TestMisc
36
*/
37
import jdk.test.lib.containers.docker.Common;
38
import jdk.test.lib.containers.docker.DockerTestUtils;
39
import jdk.test.lib.containers.docker.DockerRunOptions;
40
import jdk.test.lib.process.OutputAnalyzer;
41
import jdk.test.lib.process.ProcessTools;
42
43
44
public class TestMisc {
45
private static final String imageName = Common.imageName("misc");
46
47
public static void main(String[] args) throws Exception {
48
if (!DockerTestUtils.canTestDocker()) {
49
return;
50
}
51
52
Common.prepareWhiteBox();
53
DockerTestUtils.buildJdkContainerImage(imageName);
54
55
try {
56
testMinusContainerSupport();
57
testIsContainerized();
58
testPrintContainerInfo();
59
testPrintContainerInfoActiveProcessorCount();
60
} finally {
61
DockerTestUtils.removeDockerImage(imageName);
62
}
63
}
64
65
66
private static void testMinusContainerSupport() throws Exception {
67
Common.logNewTestCase("Test related flags: '-UseContainerSupport'");
68
DockerRunOptions opts = new DockerRunOptions(imageName, "/jdk/bin/java", "-version");
69
opts.addJavaOpts("-XX:-UseContainerSupport", "-Xlog:os+container=trace");
70
71
Common.run(opts)
72
.shouldContain("Container Support not enabled");
73
}
74
75
76
private static void testIsContainerized() throws Exception {
77
Common.logNewTestCase("Test is_containerized() inside a docker container");
78
79
DockerRunOptions opts = Common.newOpts(imageName, "CheckContainerized");
80
Common.addWhiteBoxOpts(opts);
81
82
Common.run(opts)
83
.shouldContain(CheckContainerized.INSIDE_A_CONTAINER);
84
}
85
86
87
private static void testPrintContainerInfo() throws Exception {
88
Common.logNewTestCase("Test print_container_info()");
89
90
DockerRunOptions opts = Common.newOpts(imageName, "PrintContainerInfo");
91
Common.addWhiteBoxOpts(opts);
92
93
checkContainerInfo(Common.run(opts));
94
}
95
96
private static void testPrintContainerInfoActiveProcessorCount() throws Exception {
97
Common.logNewTestCase("Test print_container_info()");
98
99
DockerRunOptions opts = Common.newOpts(imageName, "PrintContainerInfo").addJavaOpts("-XX:ActiveProcessorCount=2");
100
Common.addWhiteBoxOpts(opts);
101
102
OutputAnalyzer out = Common.run(opts);
103
out.shouldContain("but overridden by -XX:ActiveProcessorCount 2");
104
}
105
106
private static void checkContainerInfo(OutputAnalyzer out) throws Exception {
107
String[] expectedToContain = new String[] {
108
"cpuset.cpus",
109
"cpuset.mems",
110
"CPU Shares",
111
"CPU Quota",
112
"CPU Period",
113
"OSContainer::active_processor_count",
114
"Memory Limit",
115
"Memory Soft Limit",
116
"Memory Usage",
117
"Maximum Memory Usage",
118
"memory_max_usage_in_bytes",
119
"maximum number of tasks",
120
"current number of tasks"
121
};
122
123
for (String s : expectedToContain) {
124
out.shouldContain(s);
125
}
126
}
127
128
}
129
130