blob: 18efd2f49a55fdcf9246d3cd4f2a1e053b995bab [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/TransportService/transportService003.
* VM Testbase keywords: [quick, jpda, jdi]
* VM Testbase readme:
* DESCRIPTION:
* nsk/jdi/PlugConnectors/TransportService/transportService003 test:
* The test for the mechanism for creating pluggable Connectors
* on base of classes which implement the TransportService abstract
* class (com.sun.jdi.connect.spi.TransportService).
* The test checks up that at start-up time when
* Bootstrap.virtualMachineManager() is invoked pluggable
* connectors (AttachingConnector and ListeningConnector) are NOT created
* on base of PlugTransportService003 class which extends
* com.sun.jdi.connect.spi.TransportService abstract class
* but constructor of PlugTransportService003 throws Exception.
* 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.TransportService.transportService003.transportService003
*
* @comment build connectors.jar to jars
* @build nsk.share.jdi.PlugTransportService
* @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.TransportService.transportService003.transportService003
* -verbose
* -arch=${os.family}-${os.simpleArch}
* -waittime=5
* -debugee.vmkind=java
* -transport.address=dynamic
*/
package nsk.jdi.PlugConnectors.TransportService.transportService003;
import nsk.jdi.PlugConnectors.TransportService.transportService003.connectors.*;
import nsk.share.*;
import nsk.share.jdi.*;
import com.sun.jdi.*;
import com.sun.jdi.connect.*;
import com.sun.jdi.connect.spi.*;
import java.util.*;
import java.io.*;
/**
* The test for the mechanism for creating pluggable Connectors <BR>
* on base of classes which implement the TransportService abstract <BR>
* class (com.sun.jdi.connect.spi.TransportService). <BR>
* <BR>
* The test checks up that at start-up time when <BR>
* Bootstrap.virtualMachineManager() is invoked pluggable <BR>
* connectors (AttachingConnector and ListeningConnector) are NOT created <BR>
* on base of PlugTransportService003 class which extends <BR>
* com.sun.jdi.connect.spi.TransportService abstract class <BR>
* but constructor of PlugTransportService003 throws Exception. <BR>
* <BR>
*/
public class transportService003 {
static final int STATUS_PASSED = 0;
static final int STATUS_FAILED = 2;
static final int STATUS_TEMP = 95;
static final String errorLogPrefixHead = "transportService003: ";
static final String errorLogPrefix = " ";
static final String infoLogPrefixNead = "--> transportService003: ";
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 transportService003().runThis(argv, out);
if ( result == STATUS_FAILED ) {
logAlways("\n##> nsk/jdi/PlugConnectors/TransportService/transportService003 test FAILED");
}
else {
logAlways("\n==> nsk/jdi/PlugConnectors/TransportService/transportService003 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);
logAlways("==> nsk/jdi/PlugConnectors/TransportService/transportService003 test...");
logOnVerbose
("==> Test checks that pluggable attaching and listening connectors are NOT created");
logOnVerbose
(" for TransportService implementation for which instance can not be created.");
VirtualMachineManager virtualMachineManager = null;
try {
virtualMachineManager = Bootstrap.virtualMachineManager();
} catch (Throwable thrown) {
// OK: Bootstrap.virtualMachineManager() may throw an unspecified error
// if initialization of the VirtualMachineManager fails or if the virtual
// machine manager is unable to locate or create any Connectors.
logOnVerbose
(infoLogPrefixNead + "Bootstrap.virtualMachineManager() throws:\n" + thrown);
return STATUS_PASSED;
}
if (virtualMachineManager == null) {
logOnError(errorLogPrefixHead + "Bootstrap.virtualMachineManager() returns null.");
return STATUS_FAILED;
}
String checkedPlugAttachConnectorName = "PlugTransportService003_Name" + "Attach";
String checkedPlugListenConnectorName = "PlugTransportService003_Name" + "Listen";
// check that pluggable attaching connector is NOT created on base of TransportService
// implementation (PlugTransportService003 class) for which instance can not be created
List attachingConnectorsList = virtualMachineManager.attachingConnectors();
int attachingConnectorsNumber = attachingConnectorsList.size();
AttachingConnector checkedPlugAttachConnector = null;
for (int i=0; i < attachingConnectorsNumber; i++ ) {
AttachingConnector attachingConnector = (AttachingConnector)attachingConnectorsList.get(i);
String attachConnectorName = attachingConnector.name();
if ( checkedPlugAttachConnectorName.equals(attachConnectorName) ) {
checkedPlugAttachConnector = attachingConnector;
break;
}
}
if ( checkedPlugAttachConnector != null ) {
logOnError(errorLogPrefixHead + "Pluggable attaching connector is created for TransportService");
logOnError(errorLogPrefix + "implementation for which instance can not be created.");
logOnError(errorLogPrefix + "This connector is found out in attachingConnectors() list");
logOnError(errorLogPrefix + "Connector instance = '" + checkedPlugAttachConnector + "'");
logOnError(errorLogPrefix + "Connector name = '" + checkedPlugAttachConnectorName + "'");
testResult = STATUS_FAILED;
}
// check that pluggable listening connector is NOT created on base of TransportService
// implementation (PlugTransportService003 class) for which instance can not be created
List listeningConnectorsList = virtualMachineManager.listeningConnectors();
int listeningConnectorsNumber = listeningConnectorsList.size();
ListeningConnector checkedPlugListenConnector = null;
for (int i=0; i < listeningConnectorsNumber; i++ ) {
ListeningConnector listeningConnector = (ListeningConnector)listeningConnectorsList.get(i);
String listenConnectorName = listeningConnector.name();
if ( checkedPlugListenConnectorName.equals(listenConnectorName) ) {
checkedPlugListenConnector = listeningConnector;
break;
}
}
if ( checkedPlugListenConnector != null ) {
logOnError(errorLogPrefixHead + "Pluggable listening connector is created for TransportService");
logOnError(errorLogPrefix + "implementation for which instance can not be created.");
logOnError(errorLogPrefix + "This connector is found out in listeningConnectors() list");
logOnError(errorLogPrefix + "Connector instance = '" + checkedPlugListenConnector + "'");
logOnError(errorLogPrefix + "Connector name = '" + checkedPlugListenConnectorName + "'");
testResult = STATUS_FAILED;
}
// check that pluggable connectors are NOT contained in allConnectors() List too
List allConnectorsList = virtualMachineManager.allConnectors();
int allConnectorsNumber = allConnectorsList.size();
Connector attachConnector = null;
Connector listenConnector = null;
for (int i=0; i < allConnectorsNumber; i++ ) {
Connector connector = (Connector)allConnectorsList.get(i);
String connectorName = connector.name();
if ( checkedPlugAttachConnectorName.equals(connectorName) ) {
attachConnector = connector;
}
if ( checkedPlugListenConnectorName.equals(connectorName) ) {
listenConnector = connector;
}
}
if ( attachConnector != null ) {
logOnError(errorLogPrefixHead + "Pluggable attaching connector is created for TransportService");
logOnError(errorLogPrefix + "implementation for which instance can not be created.");
logOnError(errorLogPrefix + "This connector is found out in allConnectors() list");
logOnError(errorLogPrefix + "Connector instance = '" + attachConnector + "'");
logOnError(errorLogPrefix + "Connector name = '" + checkedPlugAttachConnectorName + "'");
testResult = STATUS_FAILED;
}
if ( listenConnector != null ) {
logOnError(errorLogPrefixHead + "Pluggable listening connector is created for TransportService");
logOnError(errorLogPrefix + "implementation for which instance can not be created.");
logOnError(errorLogPrefix + "This connector is found out in allConnectors() list");
logOnError(errorLogPrefix + "Connector instance = '" + listenConnector + "'");
logOnError(errorLogPrefix + "Connector name = '" + checkedPlugListenConnectorName + "'");
testResult = STATUS_FAILED;
}
return testResult;
}
} // end of transportService003 class