1 /*
   2  * Copyright (c) 2017, 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 8177980
  27  * @library /lib/testlibrary
  28  * @modules jdk.compiler
  29  * @build CompilerUtils jdk.testlibrary.ProcessTools CaseInsensitiveNameClash
  30  * @run testng CaseInsensitiveNameClash
  31  */
  32 
  33 import java.nio.file.Files;
  34 import java.nio.file.Path;
  35 import java.nio.file.Paths;
  36 import jdk.testlibrary.ProcessTools;
  37 
  38 import org.testng.annotations.BeforeTest;
  39 import org.testng.annotations.Test;
  40 import static org.testng.Assert.*;
  41 
  42 public class CaseInsensitiveNameClash {
  43 
  44     private static final String TEST_SRC = System.getProperty("test.src");
  45 
  46     private static final Path SRC_DIR = Paths.get(TEST_SRC, "src");
  47     private static final Path MODS_DIR = Paths.get("mods");
  48 
  49     private static final String MODULE = "resbundle";
  50     private static final String MAIN_CLASS = MODULE + "/jdk.test.Main";
  51 
  52     /**
  53      * Compiles the module used by the test
  54      */
  55     @BeforeTest
  56     public void compileAll() throws Exception {
  57         Path msrc = SRC_DIR.resolve(MODULE);
  58         assertTrue(CompilerUtils.compile(msrc, MODS_DIR,
  59                                          "--module-source-path", SRC_DIR.toString()));
  60         Path propsFile = Paths.get("jdk", "test", "main.properties");
  61         Files.copy(msrc.resolve(propsFile), MODS_DIR.resolve(MODULE).resolve(propsFile));
  62     }
  63 
  64     @Test
  65     public void test() throws Exception {
  66         assertTrue(ProcessTools.executeTestJava("--module-path", MODS_DIR.toString(),
  67                                                 "-m", MAIN_CLASS)
  68                                .outputTo(System.out)
  69                                .errorTo(System.out)
  70                                .getExitValue() == 0);
  71     }
  72 }