Skip to content

Commit 1433baf

Browse files
author
Alan Bateman
committedDec 1, 2020
8253751: Dependencies of automatic modules are not propagated through module layers
Reviewed-by: mchung
1 parent e3d0f27 commit 1433baf

File tree

2 files changed

+80
-10
lines changed

2 files changed

+80
-10
lines changed
 

‎src/java.base/share/classes/java/lang/module/Resolver.java

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -560,7 +560,7 @@ private Map<ResolvedModule, Set<ResolvedModule>> makeGraph(Configuration cf) {
560560
for (ModuleDescriptor.Requires requires : descriptor.requires()) {
561561
String dn = requires.name();
562562

563-
ResolvedModule m2 = null;
563+
ResolvedModule m2;
564564
ModuleReference mref2 = nameToReference.get(dn);
565565
if (mref2 != null) {
566566
// same configuration
@@ -572,6 +572,14 @@ private Map<ResolvedModule, Set<ResolvedModule>> makeGraph(Configuration cf) {
572572
assert requires.modifiers().contains(Modifier.STATIC);
573573
continue;
574574
}
575+
576+
// m2 is automatic module in parent configuration => m1 reads
577+
// all automatic modules that m2 reads.
578+
if (m2.descriptor().isAutomatic()) {
579+
m2.reads().stream()
580+
.filter(d -> d.descriptor().isAutomatic())
581+
.forEach(reads::add);
582+
}
575583
}
576584

577585
// m1 requires m2 => m1 reads m2
@@ -838,9 +846,7 @@ private ResolvedModule findInParent(String mn) {
838846
* Invokes the beforeFinder to find method to find the given module.
839847
*/
840848
private ModuleReference findWithBeforeFinder(String mn) {
841-
842849
return beforeFinder.find(mn).orElse(null);
843-
844850
}
845851

846852
/**

‎test/jdk/java/lang/module/AutomaticModulesTest.java

+70-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,6 +23,7 @@
2323

2424
/**
2525
* @test
26+
* @bug 8142968 8253751
2627
* @library /test/lib
2728
* @build AutomaticModulesTest
2829
* jdk.test.lib.util.JarUtils
@@ -42,7 +43,6 @@
4243
import java.lang.module.ResolvedModule;
4344
import java.nio.file.Files;
4445
import java.nio.file.Path;
45-
import java.nio.file.Paths;
4646
import java.util.Optional;
4747
import java.util.Set;
4848
import java.util.jar.Attributes;
@@ -60,8 +60,7 @@
6060
@Test
6161
public class AutomaticModulesTest {
6262

63-
private static final Path USER_DIR
64-
= Paths.get(System.getProperty("user.dir"));
63+
private static final Path USER_DIR = Path.of(System.getProperty("user.dir"));
6564

6665
@DataProvider(name = "jarnames")
6766
public Object[][] createJarNames() {
@@ -166,7 +165,6 @@ public void testBadNames(String fn, String ignore) throws IOException {
166165
ModuleFinder.of(dir).findAll();
167166
}
168167

169-
170168
@DataProvider(name = "modulenames")
171169
public Object[][] createModuleNames() {
172170
return new Object[][] {
@@ -910,6 +908,72 @@ public void testInConfiguration6() throws IOException {
910908
assertTrue(auto3.reads().contains(base));
911909
}
912910

911+
/**
912+
* Basic test for a module requiring an automatic module in a parent
913+
* configuration. If an explicit module in a child configuration reads an
914+
* automatic module in a parent configuration then it should read all
915+
* automatic modules in the parent configuration.
916+
*/
917+
public void testInConfiguration7() throws Exception {
918+
// m1 requires auto1
919+
ModuleDescriptor descriptor1 = ModuleDescriptor.newModule("m1")
920+
.requires("auto1")
921+
.build();
922+
923+
Path dir1 = Files.createTempDirectory(USER_DIR, "mods");
924+
createDummyJarFile(dir1.resolve("auto1.jar"), "p1/C.class");
925+
createDummyJarFile(dir1.resolve("auto2.jar"), "p2/C.class");
926+
927+
// module finder locates m1, auto1, and auto2
928+
ModuleFinder finder1 = ModuleFinder.compose(ModuleUtils.finderOf(descriptor1),
929+
ModuleFinder.of(dir1));
930+
931+
Configuration parent = ModuleLayer.boot().configuration();
932+
ResolvedModule base = parent.findModule("java.base").orElseThrow();
933+
934+
Configuration cf1 = resolve(parent, finder1, "m1");
935+
assertTrue(cf1.modules().size() == 3);
936+
937+
ResolvedModule m1 = cf1.findModule("m1").orElseThrow();
938+
ResolvedModule auto1 = cf1.findModule("auto1").orElseThrow();
939+
ResolvedModule auto2 = cf1.findModule("auto2").orElseThrow();
940+
941+
assertTrue(m1.reads().size() == 3);
942+
assertTrue(m1.reads().contains(base));
943+
assertTrue(m1.reads().contains(auto1));
944+
assertTrue(m1.reads().contains(auto2));
945+
946+
assertTrue(auto1.reads().contains(base));
947+
assertTrue(auto1.reads().contains(m1));
948+
assertTrue(auto1.reads().contains(auto2));
949+
950+
assertTrue(auto2.reads().contains(base));
951+
assertTrue(auto2.reads().contains(m1));
952+
assertTrue(auto2.reads().contains(auto1));
953+
954+
// m2 requires auto1
955+
ModuleDescriptor descriptor2 = ModuleDescriptor.newModule("m2")
956+
.requires("auto1")
957+
.build();
958+
959+
Path dir2 = Files.createTempDirectory(USER_DIR, "mods");
960+
createDummyJarFile(dir1.resolve("auto3.jar"), "p3/C.class");
961+
962+
// module finder locates m2 and auto3
963+
ModuleFinder finder2 = ModuleFinder.compose(ModuleUtils.finderOf(descriptor2),
964+
ModuleFinder.of(dir2));
965+
966+
Configuration cf2 = resolve(cf1, finder2, "m2");
967+
assertTrue(cf2.modules().size() == 1); // auto3 should not be resolved
968+
969+
ResolvedModule m2 = cf2.findModule("m2").orElseThrow();
970+
971+
assertTrue(m2.reads().size() == 3);
972+
assertTrue(m2.reads().contains(base));
973+
assertTrue(m2.reads().contains(auto1));
974+
assertTrue(m2.reads().contains(auto2));
975+
}
976+
913977
/**
914978
* Basic test of a configuration created with automatic modules
915979
* a requires b* and c*
@@ -1105,7 +1169,7 @@ static Path createDummyJarFile(Path jarfile, Manifest man, String... entries)
11051169
Files.createFile(file);
11061170
}
11071171

1108-
Path[] paths = Stream.of(entries).map(Paths::get).toArray(Path[]::new);
1172+
Path[] paths = Stream.of(entries).map(Path::of).toArray(Path[]::new);
11091173
JarUtils.createJarFile(jarfile, man, dir, paths);
11101174
return jarfile;
11111175
}

0 commit comments

Comments
 (0)
Please sign in to comment.