blob: 3c1999d31e6a5fe33f28170081953a1dd5bc746c [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/AttachConnector/plugAttachConnect001.
* VM Testbase keywords: [quick, jpda, jdi]
* VM Testbase readme:
* DESCRIPTION:
* nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect001 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 LaunchingConnector).
* The test checks up that at start-up time when
* Bootstrap.virtualMachineManager() is invoked the pluggable
* connector named "PlugAttachConnector001_Name" is created on base
* of PlugAttachConnector001 class which implements
* com.sun.jdi.connect.AttachingConnector interface.
* This pluggable connector has to be contained in lists returned
* by VirtualMachineManager.attachingConnectors() and
* by VirtualMachineManager.allConnectors() methods.
* This pluggable connector has to have:
* Connector.description() = "PlugAttachConnector001_Description";
* Connector.transport().name() = "PlugAttachConnector001_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.AttachConnector.plugAttachConnect001.plugAttachConnect001
*
* @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.AttachConnector.plugAttachConnect001.plugAttachConnect001
* -verbose
* -arch=${os.family}-${os.simpleArch}
* -waittime=5
* -debugee.vmkind=java
* -transport.address=dynamic
*/
package nsk.jdi.PlugConnectors.AttachConnector.plugAttachConnect001;
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 "PlugAttachConnector001_Name" is created on base <BR>
* of PlugAttachConnector001 class which implements <BR>
* com.sun.jdi.connect.AttachingConnector interface. <BR>
* <BR>
* This pluggable connector has to be contained in lists returned <BR>
* by VirtualMachineManager.attachingConnectors() and <BR>
* by VirtualMachineManager.allConnectors() methods. <BR>
* <BR>
* This pluggable connector has to have: <BR>
* Connector.description() = "PlugAttachConnector001_Description"; <BR>
* Connector.transport().name() = "PlugAttachConnector001_Transport"; <BR>
* Connector.defaultArguments() = <empty Map>, i.e without arguments; <BR>
* <BR>
*/
public class plugAttachConnect001 {
static final int STATUS_PASSED = 0;
static final int STATUS_FAILED = 2;
static final int STATUS_TEMP = 95;
static final String errorLogPrefixHead = "plugAttachConnect001: ";
static final String errorLogPrefix = " ";
static final String infoLogPrefixNead = "--> plugAttachConnect001: ";
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 plugAttachConnect001().runThis(argv, out);
if ( result == STATUS_FAILED ) {
logAlways("\n##> nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect001 test FAILED");
}
else {
logAlways("\n==> nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect001 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 expectedPlugAttachConnectorName = "PlugAttachConnector001_Name";
String expectedPlugAttachConnectorDescription = "PlugAttachConnector001_Description";
String expectedPlugAttachConnectorTransportName = "PlugAttachConnector001_Transport";
logAlways("==> nsk/jdi/PlugConnectors/AttachConnector/plugAttachConnect001 test...");
logOnVerbose
("==> Test checks that expected pluggable attaching connector is created properly.");
VirtualMachineManager virtualMachineManager = Bootstrap.virtualMachineManager();
if (virtualMachineManager == null) {
logOnError(errorLogPrefixHead + "Bootstrap.virtualMachineManager() returns null.");
return STATUS_FAILED;
}
// check that expected pluggable attaching connector is found out in attachingConnectors() List
List attachingConnectorsList = virtualMachineManager.attachingConnectors();
int attachingConnectorsNumber = attachingConnectorsList.size();
AttachingConnector expectedPlugAttachConnector = null;
for (int i=0; i < attachingConnectorsNumber; i++ ) {
AttachingConnector attachingConnector = (AttachingConnector)attachingConnectorsList.get(i);
String attachConnectorName = attachingConnector.name();
if ( expectedPlugAttachConnectorName.equals(attachConnectorName) ) {
expectedPlugAttachConnector = attachingConnector;
break;
}
}
if ( expectedPlugAttachConnector == null ) {
logOnError(errorLogPrefixHead + "Expected pluggable attaching connector is NOT found out.");
logOnError(errorLogPrefix + "Expected connector name = '" + expectedPlugAttachConnectorName + "'");
return STATUS_FAILED;
}
// check that expected pluggable attaching connector has expected description
String actualDescription = expectedPlugAttachConnector.description();
if ( ! expectedPlugAttachConnectorDescription.equals(actualDescription) ) {
logOnError(errorLogPrefixHead + "Pluggable attaching connector has unexpected descripton:");
logOnError(errorLogPrefix + "Expected descripton = '" + expectedPlugAttachConnectorDescription + "'");
logOnError(errorLogPrefix + "Actual descripton = '" + actualDescription + "'");
testResult = STATUS_FAILED;
}
// check that expected pluggable attaching connector has expected transport name
String actualTransportName = expectedPlugAttachConnector.transport().name();
if ( ! expectedPlugAttachConnectorTransportName.equals(actualTransportName) ) {
logOnError(errorLogPrefixHead + "Pluggable attaching connector has unexpected Transport:");
logOnError
(errorLogPrefix + "Expected Transport name = '" + expectedPlugAttachConnectorTransportName + "'");
logOnError(errorLogPrefix + "Actual Transport name = '" + actualTransportName + "'");
testResult = STATUS_FAILED;
}
// check that expected pluggable attaching connector has not defaultArguments
Map actualDefaultArguments = expectedPlugAttachConnector.defaultArguments();
int actualDefaultArgumentsNumber = actualDefaultArguments.size();
if ( actualDefaultArgumentsNumber != 0 ) {
logOnError(errorLogPrefixHead + "Pluggable attaching connector has unexpected defaultArguments:");
logOnError(errorLogPrefix + "Expected defaultArguments Map - <empty>");
logOnError(errorLogPrefix + "Actual defaultArguments Map size = " + actualDefaultArgumentsNumber);
testResult = STATUS_FAILED;
}
// check that expected pluggable attaching connector is found out in allConnectors() List too
List allConnectorsList = virtualMachineManager.allConnectors();
int allConnectorsNumber = allConnectorsList.size();
boolean expectedPlugAttachConnectorFound = false;
for (int i=0; i < allConnectorsNumber; i++ ) {
Connector foundConnector = (Connector)allConnectorsList.get(i);
if ( foundConnector instanceof AttachingConnector ) {
AttachingConnector foundAttachingConnector = (AttachingConnector)foundConnector;
if ( expectedPlugAttachConnector.equals(foundAttachingConnector) ) {
expectedPlugAttachConnectorFound = true;
break;
}
}
}
if ( ! expectedPlugAttachConnectorFound ) {
logOnError(errorLogPrefixHead
+ "Expected pluggable attaching connector is NOT found out in allConnectors() List");
logOnError(errorLogPrefix + "Expected connector = " + expectedPlugAttachConnector);
testResult = STATUS_FAILED;
}
return testResult;
}
} // end of plugAttachConnect001 class