|
| 1 | +/* |
| 2 | + * Copyright (c) 2020, Red Hat, Inc. |
| 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 | + * @test |
| 26 | + * @summary UseContainerSupport flag should reflect Metrics being available |
| 27 | + * @requires docker.support |
| 28 | + * @library /test/lib |
| 29 | + * @modules java.base/jdk.internal.platform |
| 30 | + * @build CheckUseContainerSupport |
| 31 | + * @run main/timeout=360 TestUseContainerSupport |
| 32 | + */ |
| 33 | + |
| 34 | +import jdk.test.lib.Utils; |
| 35 | +import jdk.test.lib.containers.docker.Common; |
| 36 | +import jdk.test.lib.containers.docker.DockerRunOptions; |
| 37 | +import jdk.test.lib.containers.docker.DockerTestUtils; |
| 38 | + |
| 39 | +public class TestUseContainerSupport { |
| 40 | + private static final String imageName = Common.imageName("useContainerSupport"); |
| 41 | + |
| 42 | + public static void main(String[] args) throws Exception { |
| 43 | + if (!DockerTestUtils.canTestDocker()) { |
| 44 | + return; |
| 45 | + } |
| 46 | + |
| 47 | + DockerTestUtils.buildJdkDockerImage(imageName, "Dockerfile-BasicTest", "jdk-docker"); |
| 48 | + |
| 49 | + try { |
| 50 | + testUseContainerSupport(true); |
| 51 | + testUseContainerSupport(false); |
| 52 | + } finally { |
| 53 | + DockerTestUtils.removeDockerImage(imageName); |
| 54 | + } |
| 55 | + } |
| 56 | + |
| 57 | + private static void testUseContainerSupport(boolean useContainerSupport) throws Exception { |
| 58 | + String testMsg = " with -XX:" + (useContainerSupport ? "+" : "-") + "UseContainerSupport"; |
| 59 | + Common.logNewTestCase("Test TestUseContainerSupport" + testMsg); |
| 60 | + DockerRunOptions opts = |
| 61 | + new DockerRunOptions(imageName, "/jdk/bin/java", "CheckUseContainerSupport"); |
| 62 | + opts.addClassOptions(Boolean.valueOf(useContainerSupport).toString()); |
| 63 | + opts.addDockerOpts("--memory", "200m") |
| 64 | + .addDockerOpts("--volume", Utils.TEST_CLASSES + ":/test-classes/"); |
| 65 | + if (useContainerSupport) { |
| 66 | + opts.addJavaOpts("-XX:+UseContainerSupport"); |
| 67 | + } else { |
| 68 | + opts.addJavaOpts("-XX:-UseContainerSupport"); |
| 69 | + } |
| 70 | + opts.addJavaOpts("-cp", "/test-classes/"); |
| 71 | + opts.addJavaOpts("--add-exports", "java.base/jdk.internal.platform=ALL-UNNAMED"); |
| 72 | + DockerTestUtils.dockerRunJava(opts).shouldHaveExitValue(0).shouldContain("TEST PASSED!!!"); |
| 73 | + } |
| 74 | +} |
0 commit comments