blob: d8c939e58c44c1f97b5ea6e768777f45e2bed475 [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 2003-2004 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 */
23
24/* @test
25 * @bug 4287596
26 * @summary Unit test for "Pluggable Connectors and Transports" feature.
27 *
28 * This tests launches a debuggee using a custom LaunchingConnector.
29 *
30 * @build DebugUsingCustomConnector SimpleLaunchingConnector Foo NullTransportService
31 * @run main DebugUsingCustomConnector
32 */
33import com.sun.jdi.*;
34import com.sun.jdi.connect.*;
35import java.util.*;
36
37public class DebugUsingCustomConnector {
38
39 static Connector find(List l, String name) {
40 Iterator i = l.iterator();
41 while (i.hasNext()) {
42 Connector c = (Connector)i.next();
43 if (c.name().equals(name)) {
44 return c;
45 }
46 }
47 return null;
48 }
49
50 public static void main(String main_args[]) throws Exception {
51 /*
52 * In development builds the JDI classes are on the boot class
53 * path so defining class loader for the JDI classes will
54 * not find classes on the system class path.
55 */
56 VirtualMachineManager vmm = Bootstrap.virtualMachineManager();
57 if (vmm.getClass().getClassLoader() == null) {
58 System.out.println("JDI on bootclasspath - test skipped");
59 return;
60 }
61
62 List launchers = vmm.launchingConnectors();
63
64 LaunchingConnector connector =
65 (LaunchingConnector)find(launchers, "SimpleLaunchingConnector");
66
67 Map args = connector.defaultArguments();
68
69 Connector.StringArgument arg =
70 (Connector.StringArgument)args.get("class");
71 arg.setValue("Foo");
72
73 VirtualMachine vm = connector.launch(args);
74 vm.resume();
75 }
76
77}