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