Skip to content

Commit f34ca80

Browse files
committedNov 18, 2022
8297245: JFR: TestRemoteDump should use RemoteRecordingStream
Reviewed-by: mgronlun
1 parent 13158cb commit f34ca80

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed
 

‎test/jdk/jdk/jfr/jmx/streaming/TestRemoteDump.java

+8-7
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
import java.util.concurrent.TimeUnit;
3333
import java.util.concurrent.atomic.AtomicInteger;
3434
import java.util.function.Function;
35+
import javax.management.MBeanServerConnection;
3536

3637
import jdk.jfr.Event;
3738
import jdk.jfr.Name;
@@ -50,6 +51,8 @@
5051
*/
5152
public class TestRemoteDump {
5253

54+
private static final MBeanServerConnection CONNECTION = ManagementFactory.getPlatformMBeanServer();
55+
5356
@Name("RemoteDumpTest")
5457
static class DumpEvent extends Event {
5558
}
@@ -64,7 +67,7 @@ public static void main(String... args) throws Exception {
6467

6568
private static void testUnstarted() throws Exception {
6669
Path path = Path.of("recording.jfr");
67-
var rs = new RecordingStream();
70+
var rs = new RemoteRecordingStream(CONNECTION);
6871
rs.setMaxAge(Duration.ofHours(1));
6972
try {
7073
rs.dump(path);
@@ -76,7 +79,7 @@ private static void testUnstarted() throws Exception {
7679

7780
private static void testClosed() throws Exception {
7881
Path path = Path.of("recording.jfr");
79-
var rs = new RecordingStream();
82+
var rs = new RemoteRecordingStream(CONNECTION);
8083
rs.setMaxAge(Duration.ofHours(1));
8184
rs.startAsync();
8285
rs.close();
@@ -90,8 +93,7 @@ private static void testClosed() throws Exception {
9093

9194
private static void testMultipleDumps() throws Exception {
9295
CountDownLatch latch = new CountDownLatch(1);
93-
var conn = ManagementFactory.getPlatformMBeanServer();
94-
try (var rs = new RemoteRecordingStream(conn)) {
96+
try (var rs = new RemoteRecordingStream(CONNECTION)) {
9597
rs.setMaxAge(Duration.ofHours(1));
9698
rs.onEvent(e -> {
9799
latch.countDown();
@@ -128,8 +130,7 @@ private static void testMultipleDumps() throws Exception {
128130

129131
private static void testOneDump() throws Exception {
130132
CountDownLatch latch = new CountDownLatch(1);
131-
var conn = ManagementFactory.getPlatformMBeanServer();
132-
try (var rs = new RemoteRecordingStream(conn)) {
133+
try (var rs = new RemoteRecordingStream(CONNECTION)) {
133134
rs.setMaxSize(5_000_000);
134135
rs.onEvent(e -> {
135136
latch.countDown();
@@ -150,7 +151,7 @@ private static void testOneDump() throws Exception {
150151

151152
private static void testEventAfterDump() throws Exception {
152153
CountDownLatch latch = new CountDownLatch(1);
153-
try (var rs = new RecordingStream()) {
154+
try (var rs = new RemoteRecordingStream(CONNECTION)) {
154155
rs.setMaxAge(Duration.ofHours(1));
155156
rs.onEvent(e -> {
156157
latch.countDown();

0 commit comments

Comments
 (0)
Please sign in to comment.