1 /*
2  * Copyright (c) 2017, 2020, 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  * @test
26  * @bug 4673940 4930794 8211842
27  * @summary Unit tests for inetd feature
28  * @requires (os.family == "linux" | os.family == "mac" | os.family == "freebsd" | os.family == "netbsd" | os.family == "openbsd")
29  * @library /test/lib
30  * @build jdk.test.lib.Utils
31  *        jdk.test.lib.Asserts
32  *        jdk.test.lib.JDKToolFinder
33  *        jdk.test.lib.JDKToolLauncher
34  *        jdk.test.lib.Platform
35  *        jdk.test.lib.process.*
36  *        UnixSocketTest StateTest StateTestService EchoTest EchoService
37  *        UnixDomainChannelTest CloseTest Launcher Util
38  * @run testng/othervm/native InheritedChannelTest
39  * @key intermittent
40  */
41 
42 import java.nio.file.Files;
43 import java.nio.file.Path;
44 import java.nio.file.Paths;
45 import java.util.ArrayList;
46 import java.util.List;
47 import java.util.Map;
48 
49 import jdk.test.lib.JDKToolFinder;
50 import jdk.test.lib.Utils;
51 import jdk.test.lib.process.ProcessTools;
52 import jdk.test.lib.Platform;
53 
54 import org.testng.annotations.DataProvider;
55 import org.testng.annotations.Test;
56 
57 import static java.util.Arrays.asList;
58 
59 public class InheritedChannelTest {
60 
61     private static final String TEST_SRC = System.getProperty("test.src");
62     private static final String TEST_CLASSPATH = System.getProperty("test.class.path");
63     private static final String TEST_CLASSES = System.getProperty("test.classes");
64     private static final Path POLICY_PASS = Paths.get(TEST_SRC, "java.policy.pass");
65     private static final Path POLICY_FAIL = Paths.get(TEST_SRC, "java.policy.fail");
66 
67     private static final String OS_NAME = System.getProperty("os.name").toLowerCase();
68 
69     private static final String ARCH = System.getProperty("os.arch");
70     private static final String OS_ARCH = ARCH.equals("i386") ? "i586" : ARCH;
71 
72     private static final Path libraryPath
73             = Paths.get(System.getProperty("java.library.path"));
74 
75     @DataProvider
testCases()76     public Object[][] testCases() {
77         return new Object[][] {
78             { "UnixDomainChannelTest", List.of(UnixDomainChannelTest.class.getName())},
79             { "UnixSocketTest", List.of(UnixSocketTest.class.getName())},
80             { "StateTest", List.of(StateTest.class.getName(), "-Dtest.classes="+TEST_CLASSES)},
81             { "EchoTest",  List.of(EchoTest.class.getName())  },
82             { "CloseTest", List.of(CloseTest.class.getName()) },
83 
84             // run StateTest with a SecurityManager set
85             // Note that the system properties are arguments to StateTest and not options.
86             // These system properties are passed to the launched service as options:
87             // java [-options] class [args...]
88 
89             { "StateTest run with " + POLICY_PASS, List.of(StateTest.class.getName(),
90                                                            "-Djava.security.manager",
91                                                            "-Dtest.classes=" + TEST_CLASSES,
92                                                            "-Djava.security.policy="
93                                                            + POLICY_PASS)
94             },
95             { "StateTest run with " + POLICY_FAIL, List.of(StateTest.class.getName(),
96                                                            "-expectFail",
97                                                            "-Djava.security.manager",
98                                                            "-Dtest.classes=" + TEST_CLASSES,
99                                                            "-Djava.security.policy="
100                                                            + POLICY_FAIL)
101             }
102         };
103     }
104 
105     @Test(dataProvider = "testCases", timeOut=30000)
test(String desc, List<String> opts)106     public void test(String desc, List<String> opts) throws Throwable {
107         String pathVar = Platform.sharedLibraryPathVariableName();
108         System.out.println(pathVar + "=" + libraryPath);
109 
110         List<String> args = new ArrayList<>();
111         args.add(JDKToolFinder.getJDKTool("java"));
112         args.addAll(asList(Utils.getTestJavaOpts()));
113         args.addAll(List.of("--add-opens", "java.base/java.io=ALL-UNNAMED",
114                             "--add-opens", "java.base/sun.nio.ch=ALL-UNNAMED"));
115         args.addAll(opts);
116 
117         ProcessBuilder pb = new ProcessBuilder(args);
118 
119         Map<String, String> env = pb.environment();
120         env.put("CLASSPATH", TEST_CLASSPATH);
121         env.put(pathVar, libraryPath.toString());
122 
123         ProcessTools.executeCommand(pb).shouldHaveExitValue(0);
124     }
125 }
126