1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
|
/*
* Copyright (c) 2015, 2023, 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.
*/
/*
* @test
* @bug 8137317 8139238 8210408
* @summary Visibility tests for ResourceBundle.getBundle with and without
* an unnamed module argument.
* @requires vm.flagless
* @library /test/lib
* ..
* @build jdk.test.lib.JDKToolLauncher
* jdk.test.lib.Utils
* jdk.test.lib.compiler.CompilerUtils
* jdk.test.lib.process.ProcessTools
* ModuleTestUtil
* @run testng VisibilityTest
*/
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.List;
import java.util.stream.Stream;
import jdk.test.lib.JDKToolLauncher;
import jdk.test.lib.Utils;
import jdk.test.lib.process.ProcessTools;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.DataProvider;
import org.testng.annotations.Test;
import static org.testng.Assert.assertEquals;
@Test
public class VisibilityTest {
private static final Path SRC_DIR = Paths.get(Utils.TEST_SRC, "src");
private static final Path MODS_DIR = Paths.get(Utils.TEST_CLASSES, "mods");
private static final Path CLASSES_DIR = Paths.get(Utils.TEST_CLASSES, "classes");
private static final Path NAMED_BUNDLES_DIR = MODS_DIR.resolve("named.bundles");
private static final Path EXPORTED_NAMED_BUNDLES_DIR = MODS_DIR.resolve("exported.named.bundles");
private static final List<String> MODULE_LIST = List.of("embargo",
"exported.named.bundles", "named.bundles", "test");
@BeforeTest
public void prepareTestEnv() throws Throwable {
MODULE_LIST.forEach(mn -> ModuleTestUtil.prepareModule(SRC_DIR,
MODS_DIR, mn, ".properties"));
// Prepare resource bundles in an unnamed module
ModuleTestUtil.compilePkg(SRC_DIR, CLASSES_DIR, "pkg");
ModuleTestUtil.copyResFiles(SRC_DIR, CLASSES_DIR, "pkg", ".properties");
}
/**
* Package jdk.test is in named module "test".
* Package jdk.embargo is in named module "embargo".
*
* jdk.{test,embargo}.TestWithUnnamedModuleArg call:
* ResourceBundle.getBundle(basename, classloader.getUnnamedModule())
* where classloader is the TCCL or system class loader.
* jdk.{test,embargo}.TestWithNoModuleArg call:
* ResourceBundle.getBundle(basename)
*
* jdk.test.resources[.exported].classes.* are class-based resource bundles.
* jdk.test.resources[.exported].props.* are properties file-based resource bundles.
*
* Packages jdk.test.resources.{classes,props} in named module "named.bundles"
* are exported only to named module "test".
* Packages jdk.test.resources.exported.{classes,props} in named module
* "exported.named.bundle" are exported to unnamed modules.
*/
@DataProvider(name = "RunWithTestResData")
Object[][] RunWithTestResData() {
return new Object[][] {
// Tests using jdk.test.TestWithNoModuleArg and jdk.embargo.TestWithNoModuleArg.
// Neither of which specifies an unnamed module with ResourceBundle.getBundle().
// jdk.test.resources.{classes,props}.* are available only to
// named module "test" by ResourceBundleProvider.
{List.of("-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithNoModuleArg",
"jdk.test.resources.classes.MyResources", "true")},
{List.of("-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithNoModuleArg",
"jdk.test.resources.props.MyResources", "true")},
{List.of("-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithNoModuleArg",
"jdk.test.resources.classes.MyResources", "false")},
{List.of("-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithNoModuleArg",
"jdk.test.resources.props.MyResources", "false")},
// Add mods/named.bundles to the class path.
{List.of("-cp", NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithNoModuleArg",
"jdk.test.resources.classes.MyResources", "true")},
{List.of("-cp", NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithNoModuleArg",
"jdk.test.resources.props.MyResources", "true")},
{List.of("-cp", NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithNoModuleArg",
"jdk.test.resources.classes.MyResources", "true")},
{List.of("-cp", NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithNoModuleArg",
"jdk.test.resources.props.MyResources", "true")},
// Tests using jdk.test.TestWithUnnamedModuleArg and
// jdk.embargo.TestWithUnnamedModuleArg.
// Both of which specify an unnamed module with ResourceBundle.getBundle.
// jdk.test.resources.classes is exported to named module "test".
// IllegalAccessException is thrown in ResourceBundle.Control.newBundle().
{List.of("-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithUnnamedModuleArg",
"jdk.test.resources.classes.MyResources", "false")},
// jdk.test.resources.props is exported to named module "test".
// loader.getResource() doesn't find jdk.test.resources.props.MyResources.
{List.of("-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithUnnamedModuleArg",
"jdk.test.resources.props.MyResources", "false")},
// IllegalAccessException is thrown in ResourceBundle.Control.newBundle().
{List.of("-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithUnnamedModuleArg",
"jdk.test.resources.classes.MyResources", "false")},
// jdk.test.resources.props is exported to named module "test".
// loader.getResource() doesn't find jdk.test.resources.props.MyResources.
{List.of("-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithUnnamedModuleArg",
"jdk.test.resources.props.MyResources", "false")},
// Add mods/named.bundles to the class path.
// IllegalAccessException is thrown in ResourceBundle.Control.newBundle().
{List.of("-cp", NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithUnnamedModuleArg",
"jdk.test.resources.classes.MyResources", "false")},
// loader.getResource() finds jdk.test.resources.exported.props.MyResources.
{List.of("-cp", NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithUnnamedModuleArg",
"jdk.test.resources.props.MyResources", "true")},
// jdk.test.resources.exported.classes.MyResources is treated
// as if the class is in an unnamed module.
{List.of("-cp", NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithUnnamedModuleArg",
"jdk.test.resources.classes.MyResources", "true")},
// loader.getResource() finds jdk.test.resources.exported.props.MyResources.
{List.of("-cp", NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithUnnamedModuleArg",
"jdk.test.resources.props.MyResources", "true")},
};
}
@DataProvider(name = "RunWithExportedResData")
Object[][] RunWithExportedResData() {
return new Object[][] {
// Tests using jdk.test.TestWithNoModuleArg and jdk.embargo.TestWithNoModuleArg
// neither of which specifies an unnamed module with ResourceBundle.getBundle.
// None of jdk.test.resources.exported.** is available to the named modules.
{List.of("-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithNoModuleArg",
"jdk.test.resources.exported.classes.MyResources", "false")},
{List.of("-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithNoModuleArg",
"jdk.test.resources.exported.props.MyResources", "false")},
{List.of("-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithNoModuleArg",
"jdk.test.resources.exported.classes.MyResources", "false")},
{List.of("-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithNoModuleArg",
"jdk.test.resources.exported.props.MyResources", "false")},
// Add mods/exported.named.bundles to the class path.
{List.of("-cp", EXPORTED_NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithNoModuleArg",
"jdk.test.resources.exported.classes.MyResources", "true")},
{List.of("-cp", EXPORTED_NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithNoModuleArg",
"jdk.test.resources.exported.props.MyResources", "true")},
{List.of("-cp", EXPORTED_NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithNoModuleArg",
"jdk.test.resources.exported.classes.MyResources", "true")},
{List.of("-cp", EXPORTED_NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithNoModuleArg",
"jdk.test.resources.exported.props.MyResources", "true")},
// Tests using jdk.test.TestWithUnnamedModuleArg and
// jdk.embargo.TestWithUnnamedModuleArg which specify
// an unnamed module with ResourceBundle.getBundle.
// loader.loadClass() doesn't find jdk.test.resources.exported.classes.MyResources
// and throws a ClassNotFoundException.
{List.of("-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithUnnamedModuleArg",
"jdk.test.resources.exported.classes.MyResources", "false")},
// The properties files in jdk.test.resources.exported.props
// are not found with loader.getResource().
{List.of("-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithUnnamedModuleArg",
"jdk.test.resources.exported.props.MyResources", "false")},
// loader.loadClass() doesn't find jdk.test.resources.exported.classes.MyResources
// and throws a ClassNotFoundException.
{List.of("-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithUnnamedModuleArg",
"jdk.test.resources.exported.classes.MyResources", "false")},
// The properties files in jdk.test.resources.exported.props are not found
// with loader.getResource().
{List.of("-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithUnnamedModuleArg",
"jdk.test.resources.exported.props.MyResources", "false")},
// Add mods/exported.named.bundles to the class path.
// jdk.test.resources.exported.classes.MyResources.getModule().isNamed()
// returns false.
{List.of("-cp", EXPORTED_NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithUnnamedModuleArg",
"jdk.test.resources.exported.classes.MyResources", "true")},
// loader.getResource() finds jdk.test.resources.exported.props.MyResources.
{List.of("-cp", EXPORTED_NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "test/jdk.test.TestWithUnnamedModuleArg",
"jdk.test.resources.exported.props.MyResources", "true")},
// jdk.test.resources.exported.classes.MyResources.getModule().isNamed()
// returns false.
{List.of("-cp", EXPORTED_NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithUnnamedModuleArg",
"jdk.test.resources.exported.classes.MyResources", "true")},
// loader.getResource() finds jdk.test.resources.exported.props.MyResources.
{List.of("-cp", EXPORTED_NAMED_BUNDLES_DIR.toString(),
"-p", MODS_DIR.toString(),
"-m", "embargo/jdk.embargo.TestWithUnnamedModuleArg",
"jdk.test.resources.exported.props.MyResources", "true")},
};
}
@DataProvider(name = "RunWithPkgResData")
Object[][] RunWithPkgResData() {
return new Object[][] {
// jdk.pkg.resources.* are in an unnamed module.
// jdk.pkg.test.Main calls ResourceBundle.getBundle with an unnamed module.
{ List.of("-cp", CLASSES_DIR.resolve("pkg").toString(), "jdk.pkg.test.Main",
"jdk.pkg.resources.classes.MyResources", "true")},
{ List.of("-cp", CLASSES_DIR.resolve("pkg").toString(), "jdk.pkg.test.Main",
"jdk.pkg.resources.props.MyResources", "true")},
};
}
/**
* Test cases with jdk.test.resources.*
*/
@Test(dataProvider = "RunWithTestResData")
public void RunWithTestRes(List<String> argsList) throws Throwable {
int exitCode = runCmd(argsList);
assertEquals(exitCode, 0, "Execution of the tests with "
+ "jdk.test.resources.* failed. "
+ "Unexpected exit code: " + exitCode);
}
/**
* Test cases with jdk.test.resources.exported.*
*/
@Test(dataProvider = "RunWithExportedResData")
public void RunWithExportedRes(List<String> argsList) throws Throwable {
int exitCode = runCmd(argsList);
assertEquals(exitCode, 0, "Execution of the tests with "
+ "jdk.test.resources.exported.* failed. "
+ "Unexpected exit code: " + exitCode);
}
/**
* Test cases with jdk.pkg.resources.*
*/
@Test(dataProvider = "RunWithPkgResData")
public void RunWithPkgRes(List<String> argsList) throws Throwable {
int exitCode = runCmd(argsList);
assertEquals(exitCode, 0, "Execution of the tests with "
+ "jdk.pkg.resources.* failed. "
+ "Unexpected exit code: " + exitCode);
}
private int runCmd(List<String> argsList) throws Throwable {
// Build process (without VM flags)
ProcessBuilder pb = ProcessTools.createLimitedTestJavaProcessBuilder(
Stream.concat(Stream.of("-ea", "-esa"), argsList.stream()).toList());
// Evaluate process status
return ProcessTools.executeCommand(pb).getExitValue();
}
}
|