8248988: JFR: Split up TestThreadStartEndEvents.java

Reviewed-by: mgronlun
diff --git a/test/jdk/jdk/jfr/event/runtime/LatchedThread.java b/test/jdk/jdk/jfr/event/runtime/LatchedThread.java
new file mode 100644
index 0000000..2d086df
--- /dev/null
+++ b/test/jdk/jdk/jfr/event/runtime/LatchedThread.java
@@ -0,0 +1,63 @@
+/*
+ * Copyright (c) 2020, 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.  Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * 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.
+ */
+package jdk.jfr.event.runtime;
+
+import java.util.concurrent.CountDownLatch;
+import java.util.concurrent.atomic.AtomicBoolean;
+
+public class LatchedThread extends Thread {
+    public final static ThreadGroup THREAD_GROUP = new ThreadGroup("Latched Threads");
+    private final CountDownLatch latch = new CountDownLatch(1);
+    private final AtomicBoolean alive = new AtomicBoolean(true);
+
+    public LatchedThread(String name) {
+        super(THREAD_GROUP, name);
+    }
+
+    public void awaitStarted() throws InterruptedException {
+        latch.await();
+    }
+
+    public void stopAndJoin() throws InterruptedException {
+        alive.set(false);
+        synchronized (alive) {
+            alive.notify();
+        }
+        join();
+    }
+
+    public void run() {
+        latch.countDown();
+        while (alive.get()) {
+            try {
+                synchronized (alive) {
+                    alive.wait(10);
+                }
+            } catch (InterruptedException e) {
+                // ignore
+            }
+        }
+    }
+}
\ No newline at end of file
diff --git a/test/jdk/jdk/jfr/event/runtime/TestThreadEndEvent.java b/test/jdk/jdk/jfr/event/runtime/TestThreadEndEvent.java
new file mode 100644
index 0000000..23585bf
--- /dev/null
+++ b/test/jdk/jdk/jfr/event/runtime/TestThreadEndEvent.java
@@ -0,0 +1,96 @@
+/*
+ * Copyright (c) 2020, 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.  Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * 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.
+ */
+
+package jdk.jfr.event.runtime;
+
+import java.util.List;
+
+import jdk.jfr.Recording;
+import jdk.jfr.consumer.RecordedEvent;
+import jdk.jfr.consumer.RecordedThread;
+import jdk.test.lib.Asserts;
+import jdk.test.lib.jfr.EventNames;
+import jdk.test.lib.jfr.Events;
+
+/**
+ * @test
+ * @key jfr
+ * @requires vm.hasJFR
+ * @library /test/lib
+ * @build jdk.jfr.event.runtime.LatchedThread
+ * @run main/othervm jdk.jfr.event.runtime.TestThreadEndEvent
+ */
+public class TestThreadEndEvent {
+    private final static String EVENT_NAME_THREAD_END = EventNames.ThreadEnd;
+
+    public static void main(String[] args) throws Throwable {
+        try (Recording recording = new Recording()) {
+            recording.enable(EVENT_NAME_THREAD_END);
+
+            LatchedThread beforeThread = new LatchedThread("Before Thread");
+            beforeThread.start();
+            beforeThread.awaitStarted();
+            recording.start();
+
+            // End an already running thread
+            beforeThread.stopAndJoin();
+
+            // End a thread that is started during recording
+            LatchedThread duringThread = new LatchedThread("During Thread");
+            duringThread.start();
+            duringThread.stopAndJoin();
+
+            // Start a thread and end it after the recording has stopped
+            LatchedThread afterThread = new LatchedThread("After Thread");
+            afterThread.start();
+            afterThread.awaitStarted();
+
+            recording.stop();
+            afterThread.stopAndJoin();
+
+            List<RecordedEvent> events = Events.fromRecording(recording);
+            assertEvent(events, beforeThread);
+            assertEvent(events, duringThread);
+            Asserts.assertNull(findEventByThreadName(events, afterThread.getName()));
+        }
+    }
+
+    private static void assertEvent(List<RecordedEvent> events, LatchedThread thread) throws Exception {
+        RecordedEvent event = findEventByThreadName(events, thread.getName());
+        System.out.println(event);
+        RecordedThread t = event.getThread();
+        Asserts.assertEquals(event.getThread("thread").getJavaName(), thread.getName());
+        Asserts.assertEquals(t.getThreadGroup().getName(), LatchedThread.THREAD_GROUP.getName());
+    }
+
+    private static RecordedEvent findEventByThreadName(List<RecordedEvent> events, String name) {
+        for (RecordedEvent e : events) {
+            if (e.getThread().getJavaName().equals(name)) {
+                return e;
+            }
+        }
+        return null;
+    }
+}
diff --git a/test/jdk/jdk/jfr/event/runtime/TestThreadStartEndEvents.java b/test/jdk/jdk/jfr/event/runtime/TestThreadStartEndEvents.java
deleted file mode 100644
index 132a077..0000000
--- a/test/jdk/jdk/jfr/event/runtime/TestThreadStartEndEvents.java
+++ /dev/null
@@ -1,166 +0,0 @@
-/*
- * Copyright (c) 2013, 2020, 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.  Oracle designates this
- * particular file as subject to the "Classpath" exception as provided
- * by Oracle in the LICENSE file that accompanied this code.
- *
- * 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.
- */
-
-package jdk.jfr.event.runtime;
-
-import static jdk.test.lib.Asserts.assertEQ;
-import static jdk.test.lib.Asserts.assertNotNull;
-
-import java.time.Duration;
-import java.util.List;
-import java.util.concurrent.CountDownLatch;
-
-import jdk.jfr.Recording;
-import jdk.jfr.consumer.RecordedEvent;
-import jdk.jfr.consumer.RecordedMethod;
-import jdk.jfr.consumer.RecordedStackTrace;
-import jdk.test.lib.jfr.EventNames;
-import jdk.test.lib.jfr.Events;
-
-/**
- * @test
- * @key jfr
- * @requires vm.hasJFR
- * @library /test/lib
- * @run main/othervm jdk.jfr.event.runtime.TestThreadStartEndEvents
- */
-
-/**
- * Starts a number of threads in order and verifies
- * that Thread Start events are in that same order.
- * The order of Thread End events is non-deterministic.
- */
-public class TestThreadStartEndEvents {
-    private final static String EVENT_NAME_THREAD_START = EventNames.ThreadStart;
-    private final static String EVENT_NAME_THREAD_END = EventNames.ThreadEnd;
-    private static final String THREAD_NAME_PREFIX = "TestThread-";
-    private static int currentThreadIndex = 0;
-    private static int numberOfThreadStartEvents = 0;
-    private static int numberOfThreadEndEvents = 0;
-
-    public static void main(String[] args) throws Throwable {
-        Recording recording = new Recording();
-        recording.enable(EVENT_NAME_THREAD_START).withThreshold(Duration.ofMillis(0));
-        recording.enable(EVENT_NAME_THREAD_END).withThreshold(Duration.ofMillis(0));
-        recording.start();
-        LatchedThread[] threads = startThreads();
-        stopThreads(threads);
-        recording.stop();
-        List<RecordedEvent> events = Events.fromRecording(recording);
-        events.sort((e1, e2) -> e1.getStartTime().compareTo(e2.getStartTime()));
-        Events.hasEvents(events);
-        for (RecordedEvent event : events) {
-            if (!event.getThread().getJavaName().startsWith(THREAD_NAME_PREFIX)) {
-                continue;
-            }
-            System.out.println("Event:" + event);
-            String eventType = event.getEventType().getName();
-            switch (eventType) {
-                case EVENT_NAME_THREAD_START:
-                    validateThreadStartEvent(event, threads);
-                break;
-                case EVENT_NAME_THREAD_END:
-                    validateThreadEndEvent(event);
-                break;
-                default:
-                   throw new RuntimeException("Test encountered an invalid event: " + eventType);
-            }
-        }
-        assertEQ(numberOfThreadStartEvents, threads.length);
-        assertEQ(numberOfThreadEndEvents, threads.length);
-    }
-
-    // The order of Thread Start events should corresponding to their start order.
-    private static void validateThreadStartEvent(RecordedEvent event, LatchedThread[] threads) {
-        Events.assertEventThread(event, threads[currentThreadIndex++]);
-        Events.assertEventThread(event, "parentThread", Thread.currentThread());
-        RecordedStackTrace stackTrace = event.getValue("stackTrace");
-        assertNotNull(stackTrace);
-        RecordedMethod topMethod = stackTrace.getFrames().get(0).getMethod();
-        assertEQ(topMethod.getName(), "startThread");
-        numberOfThreadStartEvents++;
-    }
-
-    // The order of Thread End events is non-deterministic. This is because the event
-    // is committed as part of dismantling the JavaThread in the VM, post thread.isAlive().
-    private static void validateThreadEndEvent(RecordedEvent event) {
-        numberOfThreadEndEvents++;
-    }
-
-    private static LatchedThread[] startThreads() {
-        LatchedThread threads[] = new LatchedThread[10];
-        ThreadGroup threadGroup = new ThreadGroup("TestThreadGroup");
-        for (int i = 0; i < threads.length; i++) {
-            threads[i] = new LatchedThread(threadGroup, THREAD_NAME_PREFIX + i);
-            threads[i].startThread();
-            System.out.println("Started thread id=" + threads[i].getId());
-        }
-        return threads;
-    }
-
-    private static void stopThreads(LatchedThread[] threads) {
-        for (LatchedThread thread : threads) {
-            thread.stopThread();
-            while (thread.isAlive()) {
-                try {
-                    Thread.sleep(5);
-                } catch (InterruptedException e) {
-                    e.printStackTrace();
-                }
-            }
-        }
-    }
-
-    private static class LatchedThread extends Thread {
-        private final CountDownLatch start = new CountDownLatch(1);
-        private final CountDownLatch stop = new CountDownLatch(1);
-
-        public LatchedThread(ThreadGroup threadGroup, String name) {
-            super(threadGroup, name);
-        }
-
-        public void run() {
-            start.countDown();
-            try {
-                stop.await();
-            } catch (InterruptedException e) {
-                e.printStackTrace();
-            }
-        }
-
-        public void startThread() {
-            this.start();
-            try {
-                start.await();
-            } catch (InterruptedException e) {
-                e.printStackTrace();
-            }
-        }
-
-        public void stopThread() {
-            stop.countDown();
-        }
-    }
-}
diff --git a/test/jdk/jdk/jfr/event/runtime/TestThreadStartEvent.java b/test/jdk/jdk/jfr/event/runtime/TestThreadStartEvent.java
new file mode 100644
index 0000000..9a44fda
--- /dev/null
+++ b/test/jdk/jdk/jfr/event/runtime/TestThreadStartEvent.java
@@ -0,0 +1,97 @@
+/*
+ * Copyright (c) 2020, 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.  Oracle designates this
+ * particular file as subject to the "Classpath" exception as provided
+ * by Oracle in the LICENSE file that accompanied this code.
+ *
+ * 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.
+ */
+
+package jdk.jfr.event.runtime;
+
+import java.util.List;
+
+import jdk.jfr.Recording;
+import jdk.jfr.consumer.RecordedEvent;
+import jdk.jfr.consumer.RecordedThread;
+import jdk.test.lib.Asserts;
+import jdk.test.lib.jfr.EventNames;
+import jdk.test.lib.jfr.Events;
+
+/**
+ * @test
+ * @key jfr
+ * @requires vm.hasJFR
+ * @library /test/lib
+ * @build jdk.jfr.event.runtime.LatchedThread
+ * @run main/othervm jdk.jfr.event.runtime.TestThreadStartEvent
+ */
+public class TestThreadStartEvent {
+    private final static String EVENT_NAME_THREAD_START = EventNames.ThreadStart;
+
+    public static void main(String[] args) throws Throwable {
+        try (Recording recording = new Recording()) {
+            recording.enable(EVENT_NAME_THREAD_START);
+
+            // Start a thread before recording
+            LatchedThread beforeThread = new LatchedThread("Before Thread");
+            beforeThread.start();
+            beforeThread.awaitStarted();
+            recording.start();
+
+            // Start and end a thread during recording
+            LatchedThread duringThread = new LatchedThread("During Thread");
+            duringThread.start();
+            duringThread.stopAndJoin();
+
+            // Start a thread and end it after the recording has stopped
+            LatchedThread afterThread = new LatchedThread("After Thread");
+            afterThread.start();
+            afterThread.awaitStarted();
+
+            recording.stop();
+            afterThread.stopAndJoin();
+
+            List<RecordedEvent> events = Events.fromRecording(recording);
+            assertEvent(events, duringThread);
+            assertEvent(events, afterThread);
+            Asserts.assertNull(findEventByThreadName(events, beforeThread.getName()));
+        }
+    }
+
+    private static void assertEvent(List<RecordedEvent> events, LatchedThread thread) throws Exception {
+        RecordedEvent event = findEventByThreadName(events, thread.getName());
+        System.out.println(event);
+        RecordedThread t = event.getThread();
+        Thread current = Thread.currentThread();
+        Events.assertFrame(event, TestThreadStartEvent.class, "main");
+        Asserts.assertEquals(event.getThread("thread").getJavaName(), thread.getName());
+        Asserts.assertEquals(event.getThread("parentThread").getJavaName(), current.getName());
+        Asserts.assertEquals(t.getThreadGroup().getName(), LatchedThread.THREAD_GROUP.getName());
+    }
+
+    private static RecordedEvent findEventByThreadName(List<RecordedEvent> events, String name) {
+        for (RecordedEvent e : events) {
+            if (e.getThread().getJavaName().equals(name)) {
+                return e;
+            }
+        }
+        return null;
+    }
+}