|
45 | 45 | * @run main/othervm jdk.jfr.api.consumer.TestRecordedClassLoader
|
46 | 46 | */
|
47 | 47 | public class TestRecordedClassLoader {
|
| 48 | + |
48 | 49 | private final static String TEST_CLASS_NAME = "jdk.jfr.api.consumer.TestRecordedClassLoader$MyTestClass";
|
49 | 50 | private final static String EVENT_NAME = EventNames.ClassDefine;
|
50 | 51 |
|
51 | 52 | static class MyTestClass {
|
52 | 53 | }
|
53 | 54 |
|
54 | 55 | public static void main(String[] args) throws Exception {
|
55 |
| - Recording recording = new Recording(); |
56 |
| - recording.enable(EVENT_NAME).withoutStackTrace(); |
57 |
| - TestClassLoader cl = new TestClassLoader(); |
58 |
| - recording.start(); |
59 |
| - cl.loadClass(TEST_CLASS_NAME); |
60 |
| - recording.stop(); |
61 |
| - |
62 |
| - List<RecordedEvent> events = Events.fromRecording(recording); |
63 |
| - boolean isDefined = false; |
64 |
| - for (RecordedEvent event : events) { |
65 |
| - RecordedClass definedClass = event.getValue("definedClass"); |
66 |
| - if (TEST_CLASS_NAME.equals(definedClass.getName())) { |
67 |
| - System.out.println(event); |
68 |
| - |
69 |
| - // get the RecordedClassLoader from the RecordedClass, the "definedClass" |
70 |
| - RecordedClassLoader definingClassLoader = definedClass.getClassLoader(); |
71 |
| - Asserts.assertNotNull(definingClassLoader, "Defining Class Loader should not be null"); |
72 |
| - |
73 |
| - // invoke RecordedClassLoader.getType() in order to validate the type of the RecordedClassLoader |
74 |
| - RecordedClass definingClassLoaderType = definingClassLoader.getType(); |
75 |
| - Asserts.assertNotNull(definingClassLoaderType, "The defining Class Loader type should not be null"); |
76 |
| - |
77 |
| - // verify matching types |
78 |
| - Asserts.assertEquals(cl.getClass().getName(), definingClassLoaderType.getName(), |
79 |
| - "Expected type " + cl.getClass().getName() + ", got type " + definingClassLoaderType.getName()); |
80 |
| - |
81 |
| - // get a RecordedClassLoader directly from the "definingClassLoader" field as well |
82 |
| - RecordedClassLoader definingClassLoaderFromField = event.getValue("definingClassLoader"); |
83 |
| - Asserts.assertNotNull(definingClassLoaderFromField, |
84 |
| - "Defining Class Loader instantatiated from field should not be null"); |
85 |
| - |
86 |
| - // ensure that the class loader instance used in the test actually has a name |
87 |
| - Asserts.assertNotNull(cl.getName(), |
88 |
| - "Expected a valid name for the TestClassLoader"); |
89 |
| - |
90 |
| - // invoke RecordedClassLoader.getName() to get the name of the class loader instance |
91 |
| - Asserts.assertEquals(cl.getName(), definingClassLoader.getName(), |
92 |
| - "Defining Class Loader should have the same name as the original class loader"); |
93 |
| - Asserts.assertEquals(definingClassLoaderFromField.getName(), definingClassLoader.getName(), |
94 |
| - "Defining Class Loader representations should have the same class loader name"); |
95 |
| - |
96 |
| - // invoke uniqueID() |
97 |
| - Asserts.assertGreaterThan(definingClassLoader.getId(), 0L, "Invalid id assignment"); |
98 |
| - |
99 |
| - // second order class loader information ("check class loader of the class loader") |
100 |
| - RecordedClassLoader classLoaderOfDefClassLoader = definingClassLoaderType.getClassLoader(); |
101 |
| - Asserts.assertNotNull(classLoaderOfDefClassLoader, |
102 |
| - "The class loader for the definining class loader should not be null"); |
103 |
| - Asserts.assertEquals(cl.getClass().getClassLoader().getName(), classLoaderOfDefClassLoader.getName(), |
104 |
| - "Expected class loader name " + cl.getClass().getClassLoader().getName() + ", got name " + classLoaderOfDefClassLoader.getName()); |
105 |
| - |
106 |
| - RecordedClass classLoaderOfDefClassLoaderType = classLoaderOfDefClassLoader.getType(); |
107 |
| - Asserts.assertNotNull(classLoaderOfDefClassLoaderType, |
108 |
| - "The class loader type for the defining class loader should not be null"); |
109 |
| - Asserts.assertEquals(cl.getClass().getClassLoader().getClass().getName(), classLoaderOfDefClassLoaderType.getName(), |
110 |
| - "Expected type " + cl.getClass().getClassLoader().getClass().getName() + ", got type " + classLoaderOfDefClassLoaderType.getName()); |
111 |
| - |
112 |
| - Asserts.assertGreaterThan(definingClassLoader.getId(), classLoaderOfDefClassLoader.getId(), |
113 |
| - "expected id assignment invariant broken for Class Loaders"); |
114 |
| - |
115 |
| - isDefined = true; |
| 56 | + try (Recording recording = new Recording()) { |
| 57 | + recording.enable(EVENT_NAME).withoutStackTrace(); |
| 58 | + TestClassLoader cl = new TestClassLoader(); |
| 59 | + recording.start(); |
| 60 | + cl.loadClass(TEST_CLASS_NAME); |
| 61 | + recording.stop(); |
| 62 | + |
| 63 | + List<RecordedEvent> events = Events.fromRecording(recording); |
| 64 | + boolean isDefined = false; |
| 65 | + for (RecordedEvent event : events) { |
| 66 | + RecordedClass definedClass = event.getValue("definedClass"); |
| 67 | + if (TEST_CLASS_NAME.equals(definedClass.getName())) { |
| 68 | + System.out.println(event); |
| 69 | + |
| 70 | + // get the RecordedClassLoader from the RecordedClass, the "definedClass" |
| 71 | + RecordedClassLoader definingClassLoader = definedClass.getClassLoader(); |
| 72 | + Asserts.assertNotNull(definingClassLoader, "Defining Class Loader should not be null"); |
| 73 | + |
| 74 | + // invoke RecordedClassLoader.getType() in order to validate the type of the RecordedClassLoader |
| 75 | + RecordedClass definingClassLoaderType = definingClassLoader.getType(); |
| 76 | + Asserts.assertNotNull(definingClassLoaderType, "The defining Class Loader type should not be null"); |
| 77 | + |
| 78 | + // verify matching types |
| 79 | + Asserts.assertEquals(cl.getClass().getName(), definingClassLoaderType.getName(), |
| 80 | + "Expected type " + cl.getClass().getName() + ", got type " + definingClassLoaderType.getName()); |
| 81 | + |
| 82 | + // get a RecordedClassLoader directly from the "definingClassLoader" field as well |
| 83 | + RecordedClassLoader definingClassLoaderFromField = event.getValue("definingClassLoader"); |
| 84 | + Asserts.assertNotNull(definingClassLoaderFromField, |
| 85 | + "Defining Class Loader instantatiated from field should not be null"); |
| 86 | + |
| 87 | + // ensure that the class loader instance used in the test actually has a name |
| 88 | + Asserts.assertNotNull(cl.getName(), |
| 89 | + "Expected a valid name for the TestClassLoader"); |
| 90 | + |
| 91 | + // invoke RecordedClassLoader.getName() to get the name of the class loader instance |
| 92 | + Asserts.assertEquals(cl.getName(), definingClassLoader.getName(), |
| 93 | + "Defining Class Loader should have the same name as the original class loader"); |
| 94 | + Asserts.assertEquals(definingClassLoaderFromField.getName(), definingClassLoader.getName(), |
| 95 | + "Defining Class Loader representations should have the same class loader name"); |
| 96 | + |
| 97 | + // invoke uniqueID() |
| 98 | + Asserts.assertGreaterThan(definingClassLoader.getId(), 0L, "Invalid id assignment"); |
| 99 | + |
| 100 | + // second order class loader information ("check class loader of the class loader") |
| 101 | + RecordedClassLoader classLoaderOfDefClassLoader = definingClassLoaderType.getClassLoader(); |
| 102 | + Asserts.assertNotNull(classLoaderOfDefClassLoader, |
| 103 | + "The class loader for the definining class loader should not be null"); |
| 104 | + Asserts.assertEquals(cl.getClass().getClassLoader().getName(), classLoaderOfDefClassLoader.getName(), |
| 105 | + "Expected class loader name " + cl.getClass().getClassLoader().getName() + ", got name " + classLoaderOfDefClassLoader.getName()); |
| 106 | + |
| 107 | + RecordedClass classLoaderOfDefClassLoaderType = classLoaderOfDefClassLoader.getType(); |
| 108 | + Asserts.assertNotNull(classLoaderOfDefClassLoaderType, |
| 109 | + "The class loader type for the defining class loader should not be null"); |
| 110 | + Asserts.assertEquals(cl.getClass().getClassLoader().getClass().getName(), classLoaderOfDefClassLoaderType.getName(), |
| 111 | + "Expected type " + cl.getClass().getClassLoader().getClass().getName() + ", got type " + classLoaderOfDefClassLoaderType.getName()); |
| 112 | + |
| 113 | + Asserts.assertGreaterThan(definingClassLoader.getId(), classLoaderOfDefClassLoader.getId(), |
| 114 | + "expected id assignment invariant broken for Class Loaders"); |
| 115 | + |
| 116 | + isDefined = true; |
| 117 | + } |
116 | 118 | }
|
| 119 | + Asserts.assertTrue(isDefined, "No class define event found to verify RecordedClassLoader"); |
117 | 120 | }
|
118 |
| - Asserts.assertTrue(isDefined, "No class define event found to verify RecordedClassLoader"); |
119 | 121 | }
|
120 | 122 | }
|
0 commit comments