< prev index next >

test/jdk/java/awt/Window/AlwaysOnTop/AutoTestOnTop.java

Print this page
rev 59383 : [mq]: final
   1 /*
   2  * Copyright (c) 2003, 2019, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


 110     static final int stagesCount = 7;
 111     static final int actionsCount = 9;
 112 
 113     static Method[] preActions = new Method[actionsCount];
 114     static Method[] postActions = new Method[actionsCount];
 115     static Method[] isActionsAllowed = new Method[actionsCount];
 116     static Method[] checksActionEvents = new Method[actionsCount];
 117 
 118     static Robot robot;
 119 
 120     static boolean doStartTest;
 121     static String osName = System.getProperty("os.name");
 122 
 123 
 124     public static void main(String[] args) {
 125         checkTesting();
 126 
 127     }
 128 
 129     public static void performTesting() {
 130         isUnix = osName.equals("Linux") || osName.equals("SunOS");
 131 
 132         Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener() {
 133                 public void eventDispatched(AWTEvent e) {
 134                     if (e.getID() == MouseEvent.MOUSE_CLICKED) {
 135                         if (eventSrc != null & eventSrc != uncheckedSrc && e.getSource() != eventSrc) {
 136                             error("Test failed: stage #" + stageNum + ", action # " + actNum + ": " + msgCase + ": " + msgAction + ": " + msgError);
 137                             testResult = -1;
 138                         }
 139                         if (eventSrc != null){
 140                             synchronized (eventSrc) {
 141                                 dispatchedCond = true;
 142                                 eventSrc.notify();
 143                             }
 144                         }
 145                     }
 146 
 147                     if (doCheckEvents && (e.getSource() == topw || e.getSource() == f)) {
 148 
 149                         //System.err.println("AWTEventListener: catched the event " + e);
 150 


   1 /*
   2  * Copyright (c) 2003, 2020, Oracle and/or its affiliates. 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */


 110     static final int stagesCount = 7;
 111     static final int actionsCount = 9;
 112 
 113     static Method[] preActions = new Method[actionsCount];
 114     static Method[] postActions = new Method[actionsCount];
 115     static Method[] isActionsAllowed = new Method[actionsCount];
 116     static Method[] checksActionEvents = new Method[actionsCount];
 117 
 118     static Robot robot;
 119 
 120     static boolean doStartTest;
 121     static String osName = System.getProperty("os.name");
 122 
 123 
 124     public static void main(String[] args) {
 125         checkTesting();
 126 
 127     }
 128 
 129     public static void performTesting() {
 130         isUnix = osName.equals("Linux");
 131 
 132         Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener() {
 133                 public void eventDispatched(AWTEvent e) {
 134                     if (e.getID() == MouseEvent.MOUSE_CLICKED) {
 135                         if (eventSrc != null & eventSrc != uncheckedSrc && e.getSource() != eventSrc) {
 136                             error("Test failed: stage #" + stageNum + ", action # " + actNum + ": " + msgCase + ": " + msgAction + ": " + msgError);
 137                             testResult = -1;
 138                         }
 139                         if (eventSrc != null){
 140                             synchronized (eventSrc) {
 141                                 dispatchedCond = true;
 142                                 eventSrc.notify();
 143                             }
 144                         }
 145                     }
 146 
 147                     if (doCheckEvents && (e.getSource() == topw || e.getSource() == f)) {
 148 
 149                         //System.err.println("AWTEventListener: catched the event " + e);
 150 


< prev index next >