|
| 1 | +/* |
| 2 | + * Copyright (c) 2021, 2022, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +import java.util.HashMap; |
| 25 | +import java.util.List; |
| 26 | +import java.util.Map; |
| 27 | + |
| 28 | +import jdk.test.lib.apps.LingeredApp; |
| 29 | +import jtreg.SkippedException; |
| 30 | + |
| 31 | +/** |
| 32 | + * @test |
| 33 | + * @summary Test clhsdb where command |
| 34 | + * @requires vm.hasSA |
| 35 | + * @library /test/lib |
| 36 | + * @run main/othervm ClhsdbThreadContext |
| 37 | + */ |
| 38 | + |
| 39 | +public class ClhsdbThreadContext { |
| 40 | + public static void main(String[] args) throws Exception { |
| 41 | + System.out.println("Starting ClhsdbThreadContext test"); |
| 42 | + |
| 43 | + LingeredApp theApp = null; |
| 44 | + try { |
| 45 | + ClhsdbLauncher test = new ClhsdbLauncher(); |
| 46 | + theApp = LingeredApp.startApp(); |
| 47 | + System.out.println("Started LingeredApp with pid " + theApp.getPid()); |
| 48 | + |
| 49 | + // Run threadcontext on all threads |
| 50 | + String cmdStr = "threadcontext -a"; |
| 51 | + List<String> cmds = List.of(cmdStr); |
| 52 | + Map<String, List<String>> expStrMap = new HashMap<>(); |
| 53 | + expStrMap.put(cmdStr, List.of( |
| 54 | + "Thread \"Common-Cleaner\"", |
| 55 | + "Thread \"Service Thread\"", |
| 56 | + "Thread \"Finalizer\"", |
| 57 | + "Thread \"SteadyStateThread\"", |
| 58 | + "In java stack for thread \"SteadyStateThread\"")); |
| 59 | + String cmdOutput = test.run(theApp.getPid(), cmds, expStrMap, null); |
| 60 | + |
| 61 | + // Run threadcontext on all threads in verbose mode |
| 62 | + cmdStr = "threadcontext -v -a"; |
| 63 | + cmds = List.of(cmdStr); |
| 64 | + expStrMap = new HashMap<>(); |
| 65 | + expStrMap.put(cmdStr, List.of( |
| 66 | + "Thread \"Common-Cleaner\"", |
| 67 | + "Thread \"Service Thread\"", |
| 68 | + "Thread \"Finalizer\"", |
| 69 | + "Thread \"SteadyStateThread\"")); |
| 70 | + Map<String, List<String>> unexpStrMap = new HashMap<>(); |
| 71 | + unexpStrMap.put(cmdStr, List.of( |
| 72 | + "In java stack for thread \"SteadyStateThread\"")); |
| 73 | + test.run(theApp.getPid(), cmds, expStrMap, unexpStrMap); |
| 74 | + |
| 75 | + // Look for a line like the following and parse the threadID out of it. |
| 76 | + // Thread "SteadyStateThread" id=18010 Address=0x000014bf103eaf50 |
| 77 | + String[] parts = cmdOutput.split("Thread \"SteadyStateThread\" id="); |
| 78 | + String[] tokens = parts[1].split(" "); |
| 79 | + String threadID = tokens[0]; |
| 80 | + |
| 81 | + // Run threadcontext on the SteadyStateThread in verbose mode |
| 82 | + cmdStr = "threadcontext -v " + threadID; |
| 83 | + cmds = List.of(cmdStr); |
| 84 | + expStrMap = new HashMap<>(); |
| 85 | + expStrMap.put(cmdStr, List.of( |
| 86 | + "Thread \"SteadyStateThread\"", |
| 87 | + "java.lang.Thread.State: BLOCKED", |
| 88 | + "In java stack \\[0x\\p{XDigit}+,0x\\p{XDigit}+,0x\\p{XDigit}+\\] for thread")); |
| 89 | + unexpStrMap = new HashMap<>(); |
| 90 | + unexpStrMap.put(cmdStr, List.of( |
| 91 | + "Thread \"Common-Cleaner\"", |
| 92 | + "Thread \"Service Thread\"", |
| 93 | + "Thread \"Finalizer\"")); |
| 94 | + test.run(theApp.getPid(), cmds, expStrMap, unexpStrMap); |
| 95 | + |
| 96 | + // Run threadcontext on all threads in verbose mode |
| 97 | + |
| 98 | + } catch (SkippedException se) { |
| 99 | + throw se; |
| 100 | + } catch (Exception ex) { |
| 101 | + throw new RuntimeException("Test ERROR " + ex, ex); |
| 102 | + } finally { |
| 103 | + LingeredApp.stopApp(theApp); |
| 104 | + } |
| 105 | + |
| 106 | + System.out.println("Test PASSED"); |
| 107 | + } |
| 108 | +} |
0 commit comments