blob: 8042bf4e752ce90dcd443f61249605de5a9f6b82 [file] [log] [blame]
/*
* Copyright (c) 2003, 2018, 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.
*
* 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.
*/
/*
* @test
*
* @summary converted from VM Testbase nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect001.
* VM Testbase keywords: [quick, jpda, jdi]
* VM Testbase readme:
* DESCRIPTION:
* nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect001 test:
* This test is the test for the mechanism for creating pluggable Connectors
* on base of classes which implement the Connector interfaces
* (AttachingConnector, ListeningConnector, or LauWnchingConnector).
* The test checks up that at start-up time when
* Bootstrap.virtualMachineManager() is invoked the pluggable
* connector named "PlugListenConnector001_Name" is created on base
* of PlugListenConnector001 class which implements
* com.sun.jdi.connect.ListeningConnector interface.
* This pluggable connector has to be contained in lists returned
* by VirtualMachineManager.listeningConnectors() and
* by VirtualMachineManager.allConnectors() methods.
* This pluggable connector has to have:
* Connector.description() = "PlugListenConnector001_Description";
* Connector.transport().name() = "PlugListenConnector001_Transport";
* Connector.defaultArguments() = <empty Map>, i.e without arguments;
* COMMENTS:
* Fixed bug 6426609: nsk/share/jdi/plug_connectors_jar_file.pl should use
* "system" instead of back-quotes
*
* @library /vmTestbase
* /test/lib
* @run driver jdk.test.lib.FileInstaller . .
* @build nsk.jdi.PlugConnectors.ListenConnector.plugListenConnect001.plugListenConnect001
*
* @comment build connectors.jar to jars
* @build nsk.share.jdi.PlugConnectors
* @run driver nsk.jdi.ConnectorsJarBuilder
*
* @build ExecDriver
* @run driver PropertyResolvingWrapper ExecDriver --java
* -cp jars${file.separator}connectors.jar${path.separator}${test.class.path}
* nsk.jdi.PlugConnectors.ListenConnector.plugListenConnect001.plugListenConnect001
* -verbose
* -arch=${os.family}-${os.simpleArch}
* -waittime=5
* -debugee.vmkind=java
* -transport.address=dynamic
*/
package nsk.jdi.PlugConnectors.ListenConnector.plugListenConnect001;
import nsk.jdi.PlugConnectors.ListenConnector.plugListenConnect001.connectors.*;
import nsk.share.*;
import nsk.share.jdi.*;
import com.sun.jdi.*;
import com.sun.jdi.connect.*;
import java.util.*;
import java.io.*;
/**
* The test for the mechanism for creating pluggable Connectors <BR>
* on base of classes which implement the Connector interfaces <BR>
* (AttachingConnector, ListeningConnector, or LaunchingConnector). <BR>
* <BR>
* The test checks up that at start-up time when <BR>
* Bootstrap.virtualMachineManager() is invoked the pluggable <BR>
* connector named "PlugListenConnector001_Name" is created on base <BR>
* of PlugListenConnector001 class which implements <BR>
* com.sun.jdi.connect.ListeningConnector interface. <BR>
* <BR>
* This pluggable connector has to be contained in lists returned <BR>
* by VirtualMachineManager.listeningConnectors() and <BR>
* by VirtualMachineManager.allConnectors() methods. <BR>
* <BR>
* This pluggable connector has to have: <BR>
* Connector.description() = "PlugListenConnector001_Description"; <BR>
* Connector.transport().name() = "PlugListenConnector001_Transport"; <BR>
* Connector.defaultArguments() = <empty Map>, i.e without arguments; <BR>
* <BR>
*/
public class plugListenConnect001 {
static final int STATUS_PASSED = 0;
static final int STATUS_FAILED = 2;
static final int STATUS_TEMP = 95;
static final String errorLogPrefixHead = "plugListenConnect001: ";
static final String errorLogPrefix = " ";
static final String infoLogPrefixNead = "--> plugListenConnect001: ";
static final String infoLogPrefix = "--> ";
static ArgumentHandler argsHandler;
static Log logHandler;
private static void logOnVerbose(String message) {
logHandler.display(message);
}
private static void logOnError(String message) {
logHandler.complain(message);
}
private static void logAlways(String message) {
logHandler.println(message);
}
public static void main (String argv[]) {
int result = run(argv, System.out);
System.exit(result + STATUS_TEMP);
}
public static int run (String argv[], PrintStream out) {
int result = new plugListenConnect001().runThis(argv, out);
if ( result == STATUS_FAILED ) {
logAlways("\n##> nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect001 test FAILED");
}
else {
logAlways("\n==> nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect001 test PASSED");
}
return result;
}
private int runThis (String argv[], PrintStream out) {
int testResult = STATUS_PASSED;
argsHandler = new ArgumentHandler(argv);
logHandler = new Log(out, argsHandler);
logHandler.enableErrorsSummary(false);
String expectedPlugListenConnectorName = "PlugListenConnector001_Name";
String expectedPlugListenConnectorDescription = "PlugListenConnector001_Description";
String expectedPlugListenConnectorTransportName = "PlugListenConnector001_Transport";
logAlways("==> nsk/jdi/PlugConnectors/ListenConnector/plugListenConnect001 test...");
logOnVerbose
("==> Test checks that expected pluggable listening connector is created properly.");
VirtualMachineManager virtualMachineManager = Bootstrap.virtualMachineManager();
if (virtualMachineManager == null) {
logOnError(errorLogPrefixHead + "Bootstrap.virtualMachineManager() returns null.");
return STATUS_FAILED;
}
// check that expected pluggable listening connector is found out in listeningConnectors() List
List listeningConnectorsList = virtualMachineManager.listeningConnectors();
int listeningConnectorsNumber = listeningConnectorsList.size();
ListeningConnector expectedPlugListenConnector = null;
for (int i=0; i < listeningConnectorsNumber; i++ ) {
ListeningConnector listeningConnector = (ListeningConnector)listeningConnectorsList.get(i);
String listenConnectorName = listeningConnector.name();
if ( expectedPlugListenConnectorName.equals(listenConnectorName) ) {
expectedPlugListenConnector = listeningConnector;
break;
}
}
if ( expectedPlugListenConnector == null ) {
logOnError(errorLogPrefixHead + "Expected pluggable listening connector is NOT found out.");
logOnError(errorLogPrefix + "Expected connector name = '" + expectedPlugListenConnectorName + "'");
return STATUS_FAILED;
}
// check that expected pluggable listening connector has expected description
String actualDescription = expectedPlugListenConnector.description();
if ( ! expectedPlugListenConnectorDescription.equals(actualDescription) ) {
logOnError(errorLogPrefixHead + "Pluggable listening connector has unexpected descripton:");
logOnError(errorLogPrefix + "Expected descripton = '" + expectedPlugListenConnectorDescription + "'");
logOnError(errorLogPrefix + "Actual descripton = '" + actualDescription + "'");
testResult = STATUS_FAILED;
}
// check that expected pluggable listening connector has expected transport name
String actualTransportName = expectedPlugListenConnector.transport().name();
if ( ! expectedPlugListenConnectorTransportName.equals(actualTransportName) ) {
logOnError(errorLogPrefixHead + "Pluggable listening connector has unexpected Transport:");
logOnError
(errorLogPrefix + "Expected Transport name = '" + expectedPlugListenConnectorTransportName + "'");
logOnError(errorLogPrefix + "Actual Transport name = '" + actualTransportName + "'");
testResult = STATUS_FAILED;
}
// check that expected pluggable listening connector has not defaultArguments
Map actualDefaultArguments = expectedPlugListenConnector.defaultArguments();
int actualDefaultArgumentsNumber = actualDefaultArguments.size();
if ( actualDefaultArgumentsNumber != 0 ) {
logOnError(errorLogPrefixHead + "Pluggable listening connector has unexpected defaultArguments:");
logOnError(errorLogPrefix + "Expected defaultArguments Map - <empty>");
logOnError(errorLogPrefix + "Actual defaultArguments Map size = " + actualDefaultArgumentsNumber);
testResult = STATUS_FAILED;
}
// check that expected pluggable listening connector is found out in allConnectors() List too
List allConnectorsList = virtualMachineManager.allConnectors();
int allConnectorsNumber = allConnectorsList.size();
boolean expectedPlugListenConnectorFound = false;
for (int i=0; i < allConnectorsNumber; i++ ) {
Connector foundConnector = (Connector)allConnectorsList.get(i);
if ( foundConnector instanceof ListeningConnector ) {
ListeningConnector foundListeningConnector = (ListeningConnector)foundConnector;
if ( expectedPlugListenConnector.equals(foundListeningConnector) ) {
expectedPlugListenConnectorFound = true;
break;
}
}
}
if ( ! expectedPlugListenConnectorFound ) {
logOnError(errorLogPrefixHead
+ "Expected pluggable listening connector is NOT found out in allConnectors() List");
logOnError(errorLogPrefix + "Expected connector = " + expectedPlugListenConnector);
testResult = STATUS_FAILED;
}
return testResult;
}
} // end of plugListenConnect001 class