|
49 | 49 | import static org.junit.Assert.assertNull;
|
50 | 50 | import static org.junit.Assert.assertTrue;
|
51 | 51 |
|
| 52 | +import java.io.DataInputStream; |
| 53 | +import java.io.IOException; |
| 54 | +import java.io.InputStream; |
52 | 55 | import java.lang.annotation.Annotation;
|
53 | 56 | import java.lang.invoke.MethodHandles.Lookup;
|
54 | 57 | import java.lang.reflect.AccessibleObject;
|
|
64 | 67 | import java.util.Map;
|
65 | 68 | import java.util.Set;
|
66 | 69 |
|
| 70 | +import org.junit.Assert; |
67 | 71 | import org.junit.Test;
|
68 | 72 |
|
69 | 73 | import jdk.internal.org.objectweb.asm.*;
|
@@ -335,6 +339,111 @@ public void findLeastCommonAncestorTest() {
|
335 | 339 | }
|
336 | 340 | }
|
337 | 341 |
|
| 342 | + @Test |
| 343 | + public void linkTest() { |
| 344 | + for (Class<?> c : classes) { |
| 345 | + ResolvedJavaType type = metaAccess.lookupJavaType(c); |
| 346 | + type.link(); |
| 347 | + } |
| 348 | + } |
| 349 | + |
| 350 | + private class HidingClassLoader extends ClassLoader { |
| 351 | + @Override |
| 352 | + protected Class<?> findClass(final String name) throws ClassNotFoundException { |
| 353 | + if (name.endsWith("MissingInterface")) { |
| 354 | + throw new ClassNotFoundException("missing"); |
| 355 | + } |
| 356 | + byte[] classData = null; |
| 357 | + try { |
| 358 | + InputStream is = HidingClassLoader.class.getResourceAsStream("/" + name.replace('.', '/') + ".class"); |
| 359 | + classData = new byte[is.available()]; |
| 360 | + new DataInputStream(is).readFully(classData); |
| 361 | + } catch (IOException e) { |
| 362 | + Assert.fail("can't access class: " + name); |
| 363 | + } |
| 364 | + |
| 365 | + return defineClass(null, classData, 0, classData.length); |
| 366 | + } |
| 367 | + |
| 368 | + ResolvedJavaType lookupJavaType(String name) throws ClassNotFoundException { |
| 369 | + return metaAccess.lookupJavaType(loadClass(name)); |
| 370 | + } |
| 371 | + |
| 372 | + HidingClassLoader() { |
| 373 | + super(null); |
| 374 | + } |
| 375 | + |
| 376 | + } |
| 377 | + |
| 378 | + interface MissingInterface { |
| 379 | + } |
| 380 | + |
| 381 | + static class MissingInterfaceImpl implements MissingInterface { |
| 382 | + } |
| 383 | + |
| 384 | + interface SomeInterface { |
| 385 | + default MissingInterface someMethod() { |
| 386 | + return new MissingInterfaceImpl(); |
| 387 | + } |
| 388 | + } |
| 389 | + |
| 390 | + static class Wrapper implements SomeInterface { |
| 391 | + } |
| 392 | + |
| 393 | + @Test |
| 394 | + public void linkExceptionTest() throws ClassNotFoundException { |
| 395 | + HidingClassLoader cl = new HidingClassLoader(); |
| 396 | + ResolvedJavaType inner = cl.lookupJavaType(Wrapper.class.getName()); |
| 397 | + assertTrue("expected default methods", inner.hasDefaultMethods()); |
| 398 | + try { |
| 399 | + inner.link(); |
| 400 | + assertFalse("link should throw an exception", true); |
| 401 | + } catch (NoClassDefFoundError e) { |
| 402 | + } |
| 403 | + } |
| 404 | + |
| 405 | + @Test |
| 406 | + public void hasDefaultMethodsTest() { |
| 407 | + for (Class<?> c : classes) { |
| 408 | + ResolvedJavaType type = metaAccess.lookupJavaType(c); |
| 409 | + assertEquals(hasDefaultMethods(type), type.hasDefaultMethods()); |
| 410 | + } |
| 411 | + } |
| 412 | + |
| 413 | + @Test |
| 414 | + public void declaresDefaultMethodsTest() { |
| 415 | + for (Class<?> c : classes) { |
| 416 | + ResolvedJavaType type = metaAccess.lookupJavaType(c); |
| 417 | + assertEquals(declaresDefaultMethods(type), type.declaresDefaultMethods()); |
| 418 | + } |
| 419 | + } |
| 420 | + |
| 421 | + private static boolean hasDefaultMethods(ResolvedJavaType type) { |
| 422 | + if (!type.isInterface() && type.getSuperclass() != null && hasDefaultMethods(type.getSuperclass())) { |
| 423 | + return true; |
| 424 | + } |
| 425 | + for (ResolvedJavaType iface : type.getInterfaces()) { |
| 426 | + if (hasDefaultMethods(iface)) { |
| 427 | + return true; |
| 428 | + } |
| 429 | + } |
| 430 | + return declaresDefaultMethods(type); |
| 431 | + } |
| 432 | + |
| 433 | + static boolean declaresDefaultMethods(ResolvedJavaType type) { |
| 434 | + if (!type.isInterface()) { |
| 435 | + /* Only interfaces can declare default methods. */ |
| 436 | + return false; |
| 437 | + } |
| 438 | + for (ResolvedJavaMethod method : type.getDeclaredMethods()) { |
| 439 | + if (method.isDefault()) { |
| 440 | + assert !Modifier.isStatic(method.getModifiers()) : "Default method that is static?"; |
| 441 | + return true; |
| 442 | + } |
| 443 | + } |
| 444 | + return false; |
| 445 | + } |
| 446 | + |
338 | 447 | private static class Base {
|
339 | 448 | }
|
340 | 449 |
|
|
0 commit comments