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
  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  *        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.classes");
  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             { "StateTest", List.of(StateTest.class.getName()) },
  77             { "EchoTest",  List.of(EchoTest.class.getName())  },
  78             { "CloseTest", List.of(CloseTest.class.getName()) },
  79 
  80             // run StateTest with a SecurityManager set
  81             // Note that the system properties are arguments to StateTest and not options.
  82             // These system properties are passed to the launched service as options:
  83             // java [-options] class [args...]
  84             { "StateTest run with " + POLICY_PASS, List.of(StateTest.class.getName(),
  85                                                            "-Djava.security.manager",
  86                                                            "-Djava.security.policy="
  87                                                            + POLICY_PASS)
  88             },
  89             { "StateTest run with " + POLICY_FAIL, List.of(StateTest.class.getName(),
  90                                                            "-expectFail",
  91                                                            "-Djava.security.manager",
  92                                                            "-Djava.security.policy="
  93                                                            + POLICY_FAIL)
  94             }
  95         };
  96     }
  97 
  98     @Test(dataProvider = "testCases")
  99     public void test(String desc, List<String> opts) throws Throwable {
 100         System.out.println("LD_LIBRARY_PATH=" + LD_LIBRARY_PATH);
 101 
 102         List<String> args = new ArrayList<>();
 103         args.add(JDKToolFinder.getJDKTool("java"));
 104         args.addAll(asList(Utils.getTestJavaOpts()));
 105         args.addAll(List.of("--add-opens", "java.base/java.io=ALL-UNNAMED",
 106                             "--add-opens", "java.base/sun.nio.ch=ALL-UNNAMED"));
 107         args.addAll(opts);
 108 
 109         ProcessBuilder pb = new ProcessBuilder(args);
 110 
 111         Map<String, String> env = pb.environment();
 112         env.put("CLASSPATH", TEST_CLASSES);
 113         env.put("LD_LIBRARY_PATH", LD_LIBRARY_PATH.toString());
 114 
 115         ProcessTools.executeCommand(pb)
 116                     .shouldHaveExitValue(0);
 117     }
 118 }