< prev index next >

test/java/awt/SplashScreen/FullscreenAfterSplash/FullScreenAfterSplash.java

Print this page


   1 /*
   2 * Copyright (c) 2013, 2015, 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 */
  23 
  24 import jdk.testlibrary.OSInfo;
  25 import java.awt.*;
  26 import java.awt.Robot;
  27 import java.awt.event.InputEvent;
  28 import java.lang.InterruptedException;
  29 import java.lang.System;
  30 import java.lang.Thread;
  31 import java.lang.reflect.Method;
  32 import java.lang.reflect.Proxy;
  33 import javax.swing.*;


  34 
  35 /*
  36  * @test
  37  * @bug 8024185
  38  * @summary Native Mac OS X full screen does not work after showing the splash
  39  * @requires (os.family == "mac")
  40  * @library ../
  41  * @library ../../../../lib/testlibrary
  42  * @modules java.desktop/sun.awt
  43  *          java.desktop/com.apple.eawt
  44  * @build jdk.testlibrary.OSInfo
  45  * @build GenerateTestImage
  46  * @run main GenerateTestImage
  47  * @author Petr Pchelko area=awt.event
  48  * @run main/othervm -splash:test.png FullScreenAfterSplash
  49  */
  50 public class FullScreenAfterSplash {
  51 
  52     private static JFrame frame;
  53 
  54     private static volatile boolean windowEnteringFullScreen = false;
  55     private static volatile boolean windowEnteredFullScreen = false;
  56 
  57     public static void main(String[] args) throws Exception {
  58 
  59         if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
  60             System.out.println("The test is applicable only to Mac OS X. Passed");
  61             return;
  62         }
  63         try {
  64             //Move the mouse out, because it could interfere with the test.
  65             Robot r = new Robot();
  66             r.setAutoDelay(50);
  67             r.mouseMove(0, 0);
  68             sleep();
  69 
  70             SwingUtilities.invokeAndWait(FullScreenAfterSplash::createAndShowGUI);
  71             sleep();
  72 
  73             Point fullScreenButtonPos = frame.getLocation();
  74             fullScreenButtonPos.translate(frame.getWidth() - 10, 10);



  75             r.mouseMove(fullScreenButtonPos.x, fullScreenButtonPos.y);
  76 
  77             //Cant use waitForIdle for full screen transition.
  78             int waitCount = 0;
  79             while (!windowEnteringFullScreen) {
  80                 r.mousePress(InputEvent.BUTTON1_MASK);
  81                 r.mouseRelease(InputEvent.BUTTON1_MASK);
  82                 Thread.sleep(100);
  83                 if (waitCount++ > 10) {
  84                     System.err.println("Can't enter full screen mode. Failed.");
  85                     System.exit(1);
  86                 }
  87             }
  88 
  89             waitCount = 0;
  90             while (!windowEnteredFullScreen) {
  91                 Thread.sleep(100);
  92                 if (waitCount++ > 10) {
  93                     System.err.println("Can't enter full screen mode. Failed.");
  94                     System.exit(1);


   1 /*
   2 * Copyright (c) 2013, 2017, 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 */
  23 
  24 import java.awt.Point;
  25 import java.awt.Window;
  26 import java.awt.Robot;
  27 import java.awt.event.InputEvent;
  28 import java.lang.InterruptedException;
  29 import java.lang.System;
  30 import java.lang.Thread;
  31 import java.lang.reflect.Method;
  32 import java.lang.reflect.Proxy;
  33 import javax.swing.JFrame;
  34 import javax.swing.SwingUtilities;
  35 import javax.swing.WindowConstants;
  36 
  37 /*
  38  * @test
  39  * @bug 8024185
  40  * @summary Native Mac OS X full screen does not work after showing the splash
  41  * @requires (os.family == "mac")
  42  * @library ../
  43  * @library ../../../../lib/testlibrary
  44  * @modules java.desktop/sun.awt
  45  *          java.desktop/com.apple.eawt

  46  * @build GenerateTestImage
  47  * @run main GenerateTestImage
  48  * @author Petr Pchelko area=awt.event
  49  * @run main/othervm -splash:test.png FullScreenAfterSplash
  50  */
  51 public class FullScreenAfterSplash {
  52 
  53     private static JFrame frame;
  54 
  55     private static volatile boolean windowEnteringFullScreen = false;
  56     private static volatile boolean windowEnteredFullScreen = false;
  57 
  58     public static void main(String[] args) throws Exception {
  59 




  60         try {
  61             //Move the mouse out, because it could interfere with the test.
  62             Robot r = new Robot();
  63             r.setAutoDelay(50);
  64             r.mouseMove(0, 0);
  65             sleep();
  66 
  67             SwingUtilities.invokeAndWait(FullScreenAfterSplash::createAndShowGUI);
  68             sleep();
  69 
  70             Point fullScreenButtonPos = frame.getLocation();
  71             if(System.getProperty("os.version").equals("10.9"))
  72                 fullScreenButtonPos.translate(frame.getWidth() - 10, frame.getHeight()/2);
  73              else
  74                  fullScreenButtonPos.translate(55,frame.getHeight()/2); 
  75             r.mouseMove(fullScreenButtonPos.x, fullScreenButtonPos.y);
  76 
  77             //Cant use waitForIdle for full screen transition.
  78             int waitCount = 0;
  79             while (!windowEnteringFullScreen) {
  80                 r.mousePress(InputEvent.BUTTON1_MASK);
  81                 r.mouseRelease(InputEvent.BUTTON1_MASK);
  82                 Thread.sleep(100);
  83                 if (waitCount++ > 10) {
  84                     System.err.println("Can't enter full screen mode. Failed.");
  85                     System.exit(1);
  86                 }
  87             }
  88 
  89             waitCount = 0;
  90             while (!windowEnteredFullScreen) {
  91                 Thread.sleep(100);
  92                 if (waitCount++ > 10) {
  93                     System.err.println("Can't enter full screen mode. Failed.");
  94                     System.exit(1);


< prev index next >