author | alanb |
Fri, 07 Apr 2017 08:05:54 +0000 | |
changeset 44545 | 83b611b88ac8 |
parent 43712 | 5dfd0950317c |
permissions | -rw-r--r-- |
36511 | 1 |
/* |
39124
2f46f5082cd7
8159879: Some typo and minor test bugs in ava/lang/module/ModuleReferenceTest.java and ConfigurationTest.java
mli
parents:
36511
diff
changeset
|
2 |
* Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. |
36511 | 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 |
* @run testng ModuleReferenceTest |
|
27 |
* @summary Basic tests for java.lang.module.ModuleReference |
|
28 |
*/ |
|
29 |
||
30 |
import java.lang.module.ModuleDescriptor; |
|
31 |
import java.lang.module.ModuleReader; |
|
32 |
import java.lang.module.ModuleReference; |
|
33 |
import java.net.URI; |
|
43712
5dfd0950317c
8173393: Module system implementation refresh (2/2017)
alanb
parents:
42703
diff
changeset
|
34 |
import java.util.Set; |
36511 | 35 |
|
36 |
import org.testng.annotations.Test; |
|
37 |
import static org.testng.Assert.*; |
|
38 |
||
39 |
@Test |
|
40 |
public class ModuleReferenceTest { |
|
41 |
||
42703
20c39ea4a507
8170987: Module system implementation refresh (12/2016)
alanb
parents:
42338
diff
changeset
|
42 |
private ModuleReference newModuleReference(ModuleDescriptor descriptor, URI uri) { |
20c39ea4a507
8170987: Module system implementation refresh (12/2016)
alanb
parents:
42338
diff
changeset
|
43 |
return new ModuleReference(descriptor, uri) { |
20c39ea4a507
8170987: Module system implementation refresh (12/2016)
alanb
parents:
42338
diff
changeset
|
44 |
@Override |
20c39ea4a507
8170987: Module system implementation refresh (12/2016)
alanb
parents:
42338
diff
changeset
|
45 |
public ModuleReader open() { |
20c39ea4a507
8170987: Module system implementation refresh (12/2016)
alanb
parents:
42338
diff
changeset
|
46 |
throw new UnsupportedOperationException(); |
20c39ea4a507
8170987: Module system implementation refresh (12/2016)
alanb
parents:
42338
diff
changeset
|
47 |
} |
20c39ea4a507
8170987: Module system implementation refresh (12/2016)
alanb
parents:
42338
diff
changeset
|
48 |
}; |
36511 | 49 |
} |
50 |
||
51 |
public void testBasic() throws Exception { |
|
52 |
ModuleDescriptor descriptor |
|
43712
5dfd0950317c
8173393: Module system implementation refresh (2/2017)
alanb
parents:
42703
diff
changeset
|
53 |
= ModuleDescriptor.newModule("m") |
36511 | 54 |
.exports("p") |
55 |
.exports("q") |
|
43712
5dfd0950317c
8173393: Module system implementation refresh (2/2017)
alanb
parents:
42703
diff
changeset
|
56 |
.packages(Set.of("p.internal")) |
36511 | 57 |
.build(); |
58 |
||
59 |
URI uri = URI.create("module:/m"); |
|
60 |
||
42703
20c39ea4a507
8170987: Module system implementation refresh (12/2016)
alanb
parents:
42338
diff
changeset
|
61 |
ModuleReference mref = newModuleReference(descriptor, uri); |
36511 | 62 |
|
63 |
assertTrue(mref.descriptor().equals(descriptor)); |
|
64 |
assertTrue(mref.location().get().equals(uri)); |
|
65 |
} |
|
66 |
||
67 |
@Test(expectedExceptions = { NullPointerException.class }) |
|
68 |
public void testNullDescriptor() throws Exception { |
|
69 |
URI location = URI.create("module:/m"); |
|
42703
20c39ea4a507
8170987: Module system implementation refresh (12/2016)
alanb
parents:
42338
diff
changeset
|
70 |
newModuleReference(null, location); |
36511 | 71 |
} |
72 |
||
73 |
public void testNullLocation() { |
|
74 |
ModuleDescriptor descriptor |
|
43712
5dfd0950317c
8173393: Module system implementation refresh (2/2017)
alanb
parents:
42703
diff
changeset
|
75 |
= ModuleDescriptor.newModule("m") |
36511 | 76 |
.exports("p") |
77 |
.build(); |
|
42703
20c39ea4a507
8170987: Module system implementation refresh (12/2016)
alanb
parents:
42338
diff
changeset
|
78 |
ModuleReference mref = newModuleReference(descriptor, null); |
36511 | 79 |
assertTrue(!mref.location().isPresent()); |
80 |
} |
|
81 |
||
82 |
} |