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);
  95                 }
  96             }
  97         } finally {
  98             if (frame != null) {
  99                 frame.dispose();
 100             }
 101         }
 102     }
 103 
 104     private static void createAndShowGUI() {
 105         frame = new JFrame(" Fullscreen OSX Bug ");
 106         frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
 107         enableFullScreen(frame);
 108         frame.setBounds(100, 100, 100, 100);
 109         frame.pack();
 110         frame.setVisible(true);
 111     }
 112 
 113     /*
 114      *  Use reflection to make a test compilable on not Mac OS X
 115      */
 116     private static void enableFullScreen(Window window) {
 117         try {
 118             Class<?> fullScreenUtilities = Class.forName("com.apple.eawt.FullScreenUtilities");
 119             Method setWindowCanFullScreen = fullScreenUtilities.getMethod("setWindowCanFullScreen", Window.class, boolean.class);
 120             setWindowCanFullScreen.invoke(fullScreenUtilities, window, true);
 121             Class fullScreenListener = Class.forName("com.apple.eawt.FullScreenListener");
 122             Object listenerObject = Proxy.newProxyInstance(fullScreenListener.getClassLoader(), new Class[]{fullScreenListener}, (proxy, method, args) -> {
 123                 switch (method.getName()) {
 124                     case "windowEnteringFullScreen":
 125                         windowEnteringFullScreen = true;
 126                         break;
 127                     case "windowEnteredFullScreen":
 128                         windowEnteredFullScreen = true;
 129                         break;
 130                 }
 131                 return null;
 132             });
 133             Method addFullScreenListener = fullScreenUtilities.getMethod("addFullScreenListenerTo", Window.class, fullScreenListener);
 134             addFullScreenListener.invoke(fullScreenUtilities, window, listenerObject);
 135         } catch (Exception e) {
 136             throw new RuntimeException("FullScreen utilities not available", e);
 137         }
 138     }
 139 
 140     private static void sleep() {
 141         try {
 142             Thread.sleep(500);
 143         } catch (InterruptedException ignored) { }
 144     }
 145 }