1
1
/*
2
- * Copyright (c) 2016, 2021 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2016, 2022 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
23
23
24
24
/**
25
25
* @test
26
- * @bug 8163805 8224252 8196751
26
+ * @bug 8163805 8224252 8196751 8279351
27
27
* @summary Checks that the jshdb debugd utility successfully starts
28
28
* and tries to attach to a running process
29
29
* @requires vm.hasSA
@@ -71,6 +71,16 @@ private static void runTests() throws Exception {
71
71
}
72
72
}
73
73
74
+ private static boolean checkOutput (final String line , final boolean useRmiPort , final int rmiPort ) {
75
+ if (!useRmiPort && line .contains (GOLDEN )) {
76
+ testResult = true ;
77
+ } else if (useRmiPort && line .contains (RMI_CONNECTOR_IS_BOUND + rmiPort )) {
78
+ testResult = true ;
79
+ } else if (line .contains (ADDRESS_ALREADY_IN_USE )) {
80
+ portInUse = true ;
81
+ }
82
+ return (line .contains (GOLDEN ) || portInUse );
83
+ }
74
84
75
85
private static void testWithPid (final boolean useRmiPort , final boolean useRegistryPort , final boolean useHostName ) throws Exception {
76
86
LingeredApp app = null ;
@@ -95,9 +105,8 @@ private static void testWithPid(final boolean useRmiPort, final boolean useRegis
95
105
jhsdbLauncher .addToolArg (Integer .toString (registryPort ));
96
106
}
97
107
98
- int rmiPort = -1 ;
108
+ final int rmiPort = useRmiPort ? Utils . findUnreservedFreePort ( REGISTRY_DEFAULT_PORT , registryPort ) : -1 ;
99
109
if (useRmiPort ) {
100
- rmiPort = Utils .findUnreservedFreePort (REGISTRY_DEFAULT_PORT , registryPort );
101
110
jhsdbLauncher .addToolArg ("--rmiport" );
102
111
jhsdbLauncher .addToolArg (Integer .toString (rmiPort ));
103
112
}
@@ -107,28 +116,16 @@ private static void testWithPid(final boolean useRmiPort, final boolean useRegis
107
116
}
108
117
ProcessBuilder pb = SATestUtils .createProcessBuilder (jhsdbLauncher );
109
118
110
- final int finalRmiPort = rmiPort ;
111
-
112
119
// The startProcess will block until the 'golden' string appears in either process' stdout or stderr
113
120
// In case of timeout startProcess kills the debugd process
114
- Process debugd = startProcess ("debugd" , pb , null ,
115
- l -> {
116
- if (!useRmiPort && l .contains (GOLDEN )) {
117
- testResult = true ;
118
- } else if (useRmiPort && l .contains (RMI_CONNECTOR_IS_BOUND + finalRmiPort )) {
119
- testResult = true ;
120
- } else if (l .contains (ADDRESS_ALREADY_IN_USE )) {
121
- portInUse = true ;
122
- }
123
- return (l .contains (GOLDEN ) || portInUse );
124
- }, 20 , TimeUnit .SECONDS );
121
+ Process debugd = startProcess ("debugd" , pb , null , l -> checkOutput (l , useRmiPort , rmiPort ), 20 , TimeUnit .SECONDS );
125
122
126
123
// If we are here, this means we have received the golden line and the test has passed
127
124
// The debugd remains running, we have to kill it
128
125
debugd .destroy ();
129
126
debugd .waitFor ();
130
127
131
- if (!testResult ) {
128
+ if (!testResult && ! portInUse ) {
132
129
throw new RuntimeException ("Expected message \" " +
133
130
RMI_CONNECTOR_IS_BOUND + rmiPort + "\" is not found in the output." );
134
131
}
0 commit comments