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