author | sadayapalam |
Mon, 06 Feb 2017 18:14:51 +0530 | |
changeset 43584 | 63e67712246b |
parent 43267 | 81e70bde1b96 |
permissions | -rw-r--r-- |
36526 | 1 |
/* |
43267 | 2 |
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. |
36526 | 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 |
* @summary tests for multi-module mode compilation |
|
27 |
* @library /tools/lib |
|
28 |
* @modules |
|
29 |
* jdk.compiler/com.sun.tools.javac.api |
|
30 |
* jdk.compiler/com.sun.tools.javac.main |
|
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
31 |
* @build toolbox.ToolBox toolbox.JavacTask ModuleTestBase |
36526 | 32 |
* @run main MultiModuleModeTest |
33 |
*/ |
|
34 |
||
35 |
import java.nio.file.Files; |
|
36 |
import java.nio.file.Path; |
|
37 |
import java.util.ArrayList; |
|
38 |
import java.util.Arrays; |
|
39 |
import java.util.List; |
|
40 |
||
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
41 |
import toolbox.JavacTask; |
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
42 |
import toolbox.Task; |
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
43 |
import toolbox.ToolBox; |
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
44 |
|
36526 | 45 |
public class MultiModuleModeTest extends ModuleTestBase { |
46 |
||
47 |
public static void main(String... args) throws Exception { |
|
48 |
new MultiModuleModeTest().runTests(); |
|
49 |
} |
|
50 |
||
51 |
@Test |
|
37758 | 52 |
public void testDuplicateModules(Path base) throws Exception { |
36526 | 53 |
Path src = base.resolve("src"); |
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
54 |
Path src_m1 = src.resolve("m1x"); |
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
55 |
tb.writeJavaFiles(src_m1, "module m1x { }"); |
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
56 |
Path src_m2 = src.resolve("m2x"); |
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
57 |
tb.writeJavaFiles(src_m2, "module m1x { }"); |
36526 | 58 |
Path classes = base.resolve("classes"); |
59 |
tb.createDirectories(classes); |
|
60 |
||
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
61 |
String log = new JavacTask(tb) |
36526 | 62 |
.options("-XDrawDiagnostics", |
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
37758
diff
changeset
|
63 |
"--module-source-path", src.toString()) |
36526 | 64 |
.outdir(classes) |
65 |
.files(findJavaFiles(src)) |
|
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
66 |
.run(Task.Expect.FAIL) |
36526 | 67 |
.writeAll() |
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
68 |
.getOutput(Task.OutputKind.DIRECT); |
36526 | 69 |
|
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
70 |
if (!log.contains("module-info.java:1:1: compiler.err.duplicate.module: m1x")) |
36526 | 71 |
throw new Exception("expected output not found"); |
72 |
} |
|
73 |
||
74 |
@Test |
|
37758 | 75 |
public void testCantFindModule(Path base) throws Exception { |
36526 | 76 |
Path src = base.resolve("src"); |
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
77 |
Path src_m1 = src.resolve("m1x"); |
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
78 |
tb.writeJavaFiles(src_m1, "module m1x { }"); |
36526 | 79 |
Path misc = base.resolve("misc"); |
80 |
tb.writeJavaFiles(misc, "package p; class C { }"); |
|
81 |
Path classes = base.resolve("classes"); |
|
82 |
tb.createDirectories(classes); |
|
83 |
||
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
84 |
String log = new JavacTask(tb) |
36526 | 85 |
.options("-XDrawDiagnostics", |
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
37758
diff
changeset
|
86 |
"--module-source-path", src.toString()) |
36526 | 87 |
.outdir(classes) |
88 |
.files(join(findJavaFiles(src), findJavaFiles(misc))) |
|
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
89 |
.run(Task.Expect.FAIL) |
36526 | 90 |
.writeAll() |
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
91 |
.getOutput(Task.OutputKind.DIRECT); |
36526 | 92 |
|
43267 | 93 |
if (!log.contains("C.java:1:1: compiler.err.not.in.module.on.module.source.path")) |
36526 | 94 |
throw new Exception("expected output not found"); |
95 |
} |
|
96 |
||
97 |
@Test |
|
37758 | 98 |
public void testModuleNameMismatch(Path base) throws Exception { |
36526 | 99 |
Path src = base.resolve("src"); |
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
100 |
Path src_m1 = src.resolve("m1x"); |
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
101 |
tb.writeJavaFiles(src_m1, "module m2x { }"); |
36526 | 102 |
Path classes = base.resolve("classes"); |
103 |
tb.createDirectories(classes); |
|
104 |
||
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
105 |
String log = new JavacTask(tb) |
36526 | 106 |
.options("-XDrawDiagnostics", |
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
37758
diff
changeset
|
107 |
"--module-source-path", src.toString()) |
36526 | 108 |
.outdir(classes) |
109 |
.files(findJavaFiles(src)) |
|
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
110 |
.run(Task.Expect.FAIL) |
36526 | 111 |
.writeAll() |
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
112 |
.getOutput(Task.OutputKind.DIRECT); |
36526 | 113 |
|
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
114 |
if (!log.contains("module-info.java:1:8: compiler.err.module.name.mismatch: m2x, m1x")) |
36526 | 115 |
throw new Exception("expected output not found"); |
116 |
} |
|
117 |
||
118 |
@Test |
|
37758 | 119 |
public void testImplicitModuleSource(Path base) throws Exception { |
36526 | 120 |
Path src = base.resolve("src"); |
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
121 |
tb.writeJavaFiles(src.resolve("m1x"), "module m1x { }"); |
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
122 |
tb.writeJavaFiles(src.resolve("m2x"), "module m2x { requires m1x; }"); |
36526 | 123 |
Path modules = base.resolve("modules"); |
124 |
Files.createDirectories(modules); |
|
125 |
||
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
126 |
new JavacTask(tb) |
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
37758
diff
changeset
|
127 |
.options("--module-source-path", src.toString()) |
36526 | 128 |
.outdir(modules) |
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
129 |
.files(src.resolve("m2x/module-info.java")) |
36526 | 130 |
.run() |
131 |
.writeAll(); |
|
132 |
} |
|
133 |
||
134 |
@Test |
|
37758 | 135 |
public void testImplicitModuleClass(Path base) throws Exception { |
36526 | 136 |
Path src1 = base.resolve("src1"); |
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
137 |
tb.writeJavaFiles(src1.resolve("m1x"), "module m1x { }"); |
36526 | 138 |
Path modules1 = base.resolve("modules1"); |
139 |
Files.createDirectories(modules1); |
|
140 |
||
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
141 |
new JavacTask(tb) |
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
37758
diff
changeset
|
142 |
.options("--module-source-path", src1.toString()) |
36526 | 143 |
.outdir(modules1) |
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
144 |
.files(src1.resolve("m1x/module-info.java")) |
36526 | 145 |
.run() |
146 |
.writeAll(); |
|
147 |
||
148 |
Path src2= base.resolve("src2"); |
|
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
149 |
tb.writeJavaFiles(src2.resolve("m2x"), "module m2x { requires m1x; }"); |
36526 | 150 |
Path modules2 = base.resolve("modules2"); |
151 |
Files.createDirectories(modules2); |
|
152 |
||
36778
e04318f39f92
8152897: refactor ToolBox to allow reduced documented dependencies
jjg
parents:
36526
diff
changeset
|
153 |
new JavacTask(tb) |
40308
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
37758
diff
changeset
|
154 |
.options("--module-path", modules1.toString(), |
274367a99f98
8136930: Simplify use of module-system options by custom launchers
jjg
parents:
37758
diff
changeset
|
155 |
"--module-source-path", src2.toString()) |
36526 | 156 |
.outdir(modules2) |
42822
a84956e7ee4d
8170987: Module system implementation refresh (12/2016)
alanb
parents:
40308
diff
changeset
|
157 |
.files(src2.resolve("m2x/module-info.java")) |
36526 | 158 |
.run() |
159 |
.writeAll(); |
|
160 |
} |
|
161 |
||
162 |
Path[] join(Path[] a, Path[] b) { |
|
163 |
List<Path> result = new ArrayList<>(); |
|
164 |
result.addAll(Arrays.asList(a)); |
|
165 |
result.addAll(Arrays.asList(b)); |
|
166 |
return result.toArray(new Path[result.size()]); |
|
167 |
} |
|
168 |
} |