Skip to content

Commit 930bf63

Browse files
committedApr 14, 2022
Expand testing of special TG
1 parent dce031d commit 930bf63

File tree

1 file changed

+56
-2
lines changed

1 file changed

+56
-2
lines changed
 

‎test/jdk/java/lang/Thread/virtual/ThreadAPI.java

+56-2
Original file line numberDiff line numberDiff line change
@@ -2046,7 +2046,7 @@ private boolean contains(StackTraceElement[] stack, String expected) {
20462046

20472047

20482048
/**
2049-
* Test Thread::getThreadGroup of virtual thread created by platform thread.
2049+
* Test Thread::getThreadGroup on virtual thread created by platform thread.
20502050
*/
20512051
@Test
20522052
public void testThreadGroup1() throws Exception {
@@ -2063,7 +2063,7 @@ public void testThreadGroup1() throws Exception {
20632063
}
20642064

20652065
/**
2066-
* Test Thread::getThreadGroup of platform thread created by virtual thread.
2066+
* Test Thread::getThreadGroup on platform thread created by virtual thread.
20672067
*/
20682068
@Test
20692069
public void testThreadGroup2() throws Exception {
@@ -2075,6 +2075,60 @@ public void testThreadGroup2() throws Exception {
20752075
});
20762076
}
20772077

2078+
/**
2079+
* Test ThreadGroup returned by Thread::getThreadGroup and subgroup
2080+
* created with 2-arg ThreadGroup constructor.
2081+
*/
2082+
@Test
2083+
public void testThreadGroup3() throws Exception {
2084+
var ref = new AtomicReference<ThreadGroup>();
2085+
var thread = Thread.startVirtualThread(() -> {
2086+
ref.set(Thread.currentThread().getThreadGroup());
2087+
});
2088+
thread.join();
2089+
2090+
ThreadGroup vgroup = ref.get();
2091+
assertTrue(vgroup.getMaxPriority() == Thread.MAX_PRIORITY);
2092+
2093+
ThreadGroup group = new ThreadGroup(vgroup, "group");
2094+
assertTrue(group.getParent() == vgroup);
2095+
assertTrue(group.getMaxPriority() == Thread.MAX_PRIORITY);
2096+
2097+
vgroup.setMaxPriority(Thread.MAX_PRIORITY - 1);
2098+
assertTrue(vgroup.getMaxPriority() == Thread.MAX_PRIORITY);
2099+
assertTrue(group.getMaxPriority() == Thread.MAX_PRIORITY - 1);
2100+
2101+
vgroup.setMaxPriority(Thread.MIN_PRIORITY);
2102+
assertTrue(vgroup.getMaxPriority() == Thread.MAX_PRIORITY);
2103+
assertTrue(group.getMaxPriority() == Thread.MIN_PRIORITY);
2104+
}
2105+
2106+
/**
2107+
* Test ThreadGroup returned by Thread::getThreadGroup and subgroup
2108+
* created with 1-arg ThreadGroup constructor.
2109+
*/
2110+
@Test
2111+
public void testThreadGroup4() throws Exception {
2112+
TestHelper.runInVirtualThread(() -> {
2113+
ThreadGroup vgroup = Thread.currentThread().getThreadGroup();
2114+
2115+
assertTrue(vgroup.getMaxPriority() == Thread.MAX_PRIORITY);
2116+
2117+
ThreadGroup group = new ThreadGroup("group");
2118+
assertTrue(group.getParent() == vgroup);
2119+
assertTrue(group.getMaxPriority() == Thread.MAX_PRIORITY);
2120+
2121+
vgroup.setMaxPriority(Thread.MAX_PRIORITY - 1);
2122+
assertTrue(vgroup.getMaxPriority() == Thread.MAX_PRIORITY);
2123+
assertTrue(group.getMaxPriority() == Thread.MAX_PRIORITY - 1);
2124+
2125+
vgroup.setMaxPriority(Thread.MIN_PRIORITY);
2126+
assertTrue(vgroup.getMaxPriority() == Thread.MAX_PRIORITY);
2127+
assertTrue(group.getMaxPriority() == Thread.MIN_PRIORITY);
2128+
2129+
});
2130+
}
2131+
20782132
/**
20792133
* Test Thread.enumerate(false).
20802134
*/

0 commit comments

Comments
 (0)
Please sign in to comment.