jdk/test/java/awt/xembed/server/TesterClient.java
changeset 443 b49bc385fa7e
child 5506 202f599c92aa
equal deleted inserted replaced
439:3488710b02f8 443:b49bc385fa7e
       
     1 /*
       
     2  * Copyright 2004-2008 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 import java.lang.reflect.*;
       
    25 import java.awt.Rectangle;
       
    26 import java.util.logging.*;
       
    27 
       
    28 public class TesterClient {
       
    29     private static final Logger log = Logger.getLogger("test.xembed.TesterClient");
       
    30     private static Method test;
       
    31     private static boolean passed = false;
       
    32     public static void main(String[] args) throws Throwable {
       
    33         // First parameter is the name of the test, second is the window, the rest are rectangles
       
    34         Class cl = Class.forName("sun.awt.X11.XEmbedServerTester");
       
    35         test = cl.getMethod(args[0], new Class[0]);
       
    36         long window = Long.parseLong(args[1]);
       
    37         Rectangle r[] = new Rectangle[(args.length-2)/4];
       
    38         for (int i = 0; i < r.length; i++) {
       
    39             r[i] = new Rectangle(Integer.parseInt(args[2+i*4]), Integer.parseInt(args[2+i*4+1]),
       
    40                                  Integer.parseInt(args[2+i*4+2]), Integer.parseInt(args[2+i*4+3]));
       
    41         }
       
    42         startClient(r, window);
       
    43     }
       
    44 
       
    45     public static void startClient(Rectangle bounds[], long window) throws Throwable {
       
    46         Method m_getTester = Class.forName("sun.awt.X11.XEmbedServerTester").
       
    47             getMethod("getTester", new Class[] {bounds.getClass(), Long.TYPE});
       
    48         final Object tester = m_getTester.invoke(null, new Object[] {bounds, window});
       
    49         try {
       
    50             log.info("Starting test " + test.getName());
       
    51             test.invoke(tester, (Object[])null);
       
    52             log.info("Test " + test.getName() + " PASSED.");
       
    53             passed = true;
       
    54         } catch (Exception e) {
       
    55             log.log(Level.WARNING, "Test " + test.getName() + " FAILED.", e);
       
    56         }
       
    57         System.exit(passed?0:1);
       
    58     }
       
    59 }