Alan Bateman db4d383614 8142968: Module System implementation
Initial integration of JEP 200, JEP 260, JEP 261, and JEP 282

Co-authored-by: Alex Buckley <alex.buckley@oracle.com>
Co-authored-by: Jonathan Gibbons <jonathan.gibbons@oracle.com>
Co-authored-by: Karen Kinnear <karen.kinnear@oracle.com>
Co-authored-by: Mandy Chung <mandy.chung@oracle.com>
Co-authored-by: Mark Reinhold <mark.reinhold@oracle.com>
Co-authored-by: Chris Hegarty <chris.hegarty@oracle.com>
Co-authored-by: Alexandr Scherbatiy <alexandr.scherbatiy@oracle.com>
Co-authored-by: Amy Lu <amy.lu@oracle.com>
Co-authored-by: Calvin Cheung <calvin.cheung@oracle.com>
Co-authored-by: Daniel Fuchs <daniel.fuchs@oracle.com>
Co-authored-by: Erik Joelsson <erik.joelsson@oracle.com>
Co-authored-by: Harold Seigel <harold.seigel@oracle.com>
Co-authored-by: Jaroslav Bachorik <jaroslav.bachorik@oracle.com>
Co-authored-by: Jean-Francois Denise <jean-francois.denise@oracle.com>
Co-authored-by: Jan Lahoda <jan.lahoda@oracle.com>
Co-authored-by: James Laskey <james.laskey@oracle.com>
Co-authored-by: Lois Foltan <lois.foltan@oracle.com>
Co-authored-by: Miroslav Kos <miroslav.kos@oracle.com>
Co-authored-by: Huaming Li <huaming.li@oracle.com>
Co-authored-by: Sean Mullan <sean.mullan@oracle.com>
Co-authored-by: Naoto Sato <naoto.sato@oracle.com>
Co-authored-by: Masayoshi Okutsu <masayoshi.okutsu@oracle.com>
Co-authored-by: Peter Levart <peter.levart@gmail.com>
Co-authored-by: Philip Race <philip.race@oracle.com>
Co-authored-by: Claes Redestad <claes.redestad@oracle.com>
Co-authored-by: Sergey Bylokhov <sergey.bylokhov@oracle.com>
Co-authored-by: Alexandre Iline <alexandre.iline@oracle.com>
Co-authored-by: Volker Simonis <volker.simonis@gmail.com>
Co-authored-by: Staffan Larsen <staffan.larsen@oracle.com>
Co-authored-by: Stuart Marks <stuart.marks@oracle.com>
Co-authored-by: Semyon Sadetsky <semyon.sadetsky@oracle.com>
Co-authored-by: Serguei Spitsyn <serguei.spitsyn@oracle.com>
Co-authored-by: Sundararajan Athijegannathan <sundararajan.athijegannathan@oracle.com>
Co-authored-by: Valerie Peng <valerie.peng@oracle.com>
Co-authored-by: Vincent Ryan <vincent.x.ryan@oracle.com>
Co-authored-by: Weijun Wang <weijun.wang@oracle.com>
Co-authored-by: Yuri Nesterenko <yuri.nesterenko@oracle.com>
Co-authored-by: Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
Co-authored-by: Alexander Kulyakthin <alexander.kulyakhtin@oracle.com>
Co-authored-by: Felix Yang <felix.yang@oracle.com>
Co-authored-by: Andrei Eremeev <andrei.eremeev@oracle.com>
Co-authored-by: Frank Yuan <frank.yuan@oracle.com>
Co-authored-by: Sergei Pikalev <sergei.pikalev@oracle.com>
Co-authored-by: Sibabrata Sahoo <sibabrata.sahoo@oracle.com>
Co-authored-by: Tiantian Du <tiantian.du@oracle.com>
Co-authored-by: Sha Jiang <sha.jiang@oracle.com>
Reviewed-by: alanb, mchung, naoto, rriggs, psandoz, plevart, mullan, ascarpino, vinnie, prr, sherman, dfuchs, mhaupt
2016-03-17 19:04:16 +00:00

168 lines
5.8 KiB
Java

/*
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import java.lang.module.Configuration;
import java.lang.module.ResolvedModule;
import java.lang.reflect.Layer;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
/**
* Basic test of Class getResource and getResourceAsStream when invoked from
* code in named modules.
*/
public class Main {
static final String NAME = "myresource";
public static void main(String[] args) throws IOException {
// create m1/myresource containing "m1"
Path file = directoryFor("m1").resolve(NAME);
Files.write(file, "m1".getBytes("UTF-8"));
// create m2/myresource containing "m2"
file = directoryFor("m2").resolve(NAME);
Files.write(file, "m2".getBytes("UTF-8"));
// check that m3/myresource does not exist
assertTrue(Files.notExists(directoryFor("m3").resolve(NAME)));
// invoke Class getResource from the unnamed module
URL url0 = Main.class.getResource("/" + NAME);
assertNull(url0);
// invoke Class getResource from modules m1-m3
URL url1 = p1.Main.getResource("/" + NAME);
URL url2 = p2.Main.getResource("/" + NAME);
URL url3 = p3.Main.getResource("/" + NAME);
assertNotNull(url1);
assertNotNull(url2);
assertNull(url3);
// check contents of resurces at url1 and url2
assertEquals(new String(readAll(url1), "UTF-8"), "m1");
assertEquals(new String(readAll(url2), "UTF-8"), "m2");
// invoke Class getResourceAsStream from the unnamed module
InputStream in0 = Main.class.getResourceAsStream("/" + NAME);
assertNull(in0);
// invoke Class getResourceAsStream from modules m1-m3
try (InputStream in = p1.Main.getResourceAsStream("/" + NAME)) {
String s = new String(in.readAllBytes(), "UTF-8");
assertEquals(s, "m1");
}
try (InputStream in = p2.Main.getResourceAsStream("/" + NAME)) {
String s = new String(in.readAllBytes(), "UTF-8");
assertEquals(s, "m2");
}
InputStream in3 = p3.Main.getResourceAsStream("/" + NAME);
assertNull(in3);
// invoke Module getResources on modules m1-m3
InputStream in1 = p1.Main.class.getModule().getResourceAsStream("/" + NAME);
InputStream in2 = p2.Main.class.getModule().getResourceAsStream("/" + NAME);
in3 = p3.Main.class.getModule().getResourceAsStream("/" + NAME);
assertNotNull(in1);
assertNotNull(in2);
assertNull(in3);
// check the content of in1 and in2
String s1 = new String(in1.readAllBytes(), "UTF-8");
String s2 = new String(in2.readAllBytes(), "UTF-8");
assertEquals(s1, "m1");
assertEquals(s2, "m2");
// SecurityManager case
System.setSecurityManager(new SecurityManager());
assertNull(Main.class.getResource("/" + NAME));
assertNull(p1.Main.getResource("/" + NAME));
assertNull(p2.Main.getResource("/" + NAME));
assertNull(p3.Main.getResource("/" + NAME));
assertNull(Main.class.getResourceAsStream("/" + NAME));
assertNull(p1.Main.getResourceAsStream("/" + NAME));
assertNull(p2.Main.getResourceAsStream("/" + NAME));
assertNull(p3.Main.getResourceAsStream("/" + NAME));
System.out.println("Success!");
}
/**
* Returns the directory for the given module (by name).
*/
static Path directoryFor(String name) {
Configuration cf = Layer.boot().configuration();
ResolvedModule resolvedModule = cf.findModule(name).orElse(null);
if (resolvedModule == null)
throw new RuntimeException("not found: " + name);
Path dir = Paths.get(resolvedModule.reference().location().get());
if (!Files.isDirectory(dir))
throw new RuntimeException("not a directory: " + dir);
return dir;
}
static byte[] readAll(URL url) throws IOException {
try (InputStream in = url.openStream()) {
return in.readAllBytes();
}
}
static void assertTrue(boolean condition) {
if (!condition) throw new RuntimeException();
}
static void assertNull(Object o) {
assertTrue(o == null);
}
static void assertNotNull(Object o) {
assertTrue(o != null);
}
static void assertEquals(Object actual, Object expected) {
if (expected == null) {
assertNull(actual);
} else {
assertTrue(expected.equals(actual));
}
}
static void assertNotEquals(Object actual, Object expected) {
if (expected == null) {
assertNotNull(actual);
} else {
assertTrue(!expected.equals(actual));
}
}
}