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  * @key headful
  40  * @bug 8024185
  41  * @summary Native Mac OS X full screen does not work after showing the splash
  42  * @requires (os.family == "mac")
  43  * @library ../
  44  * @library ../../../../lib/testlibrary
  45  * @modules java.desktop/sun.awt
  46  *          java.desktop/com.apple.eawt
  47  * @build GenerateTestImage
  48  * @run main GenerateTestImage
  49  * @author Petr Pchelko area=awt.event
  50  * @run main/othervm -splash:test.png FullScreenAfterSplash
  51  */
  52 
  53 public class FullScreenAfterSplash {
  54 
  55     private static JFrame frame;
  56 
  57     private static volatile boolean windowEnteringFullScreen = false;
  58     private static volatile boolean windowEnteredFullScreen = false;
  59 
  60     public static void main(String[] args) throws Exception {
  61 
  62         try {
  63             //Move the mouse out, because it could interfere with the test.
  64             Robot r = new Robot();
  65             r.setAutoDelay(50);
  66             r.mouseMove(0, 0);
  67             sleep();
  68 
  69             SwingUtilities.invokeAndWait(FullScreenAfterSplash::createAndShowGUI);
  70             sleep();
  71 
  72             Point fullScreenButtonPos = frame.getLocation();
  73             if(System.getProperty("os.version").equals("10.9"))
  74                 fullScreenButtonPos.translate(frame.getWidth() - 10, frame.getHeight()/2);
  75             else
  76                 fullScreenButtonPos.translate(55,frame.getHeight()/2);
  77             r.mouseMove(fullScreenButtonPos.x, fullScreenButtonPos.y);
  78 
  79             //Cant use waitForIdle for full screen transition.
  80             int waitCount = 0;
  81             while (!windowEnteringFullScreen) {
  82                 r.mousePress(InputEvent.BUTTON1_MASK);
  83                 r.mouseRelease(InputEvent.BUTTON1_MASK);
  84                 Thread.sleep(100);
  85                 if (waitCount++ > 10) {
  86                     System.err.println("Can't enter full screen mode. Failed.");
  87                     System.exit(1);
  88                 }
  89             }
  90 
  91             waitCount = 0;
  92             while (!windowEnteredFullScreen) {
  93                 Thread.sleep(100);
  94                 if (waitCount++ > 10) {
  95                     System.err.println("Can't enter full screen mode. Failed.");
  96                     System.exit(1);
  97                 }
  98             }
  99         } finally {
 100             if (frame != null) {
 101                 frame.dispose();
 102             }
 103         }
 104     }
 105 
 106     private static void createAndShowGUI() {
 107         frame = new JFrame(" Fullscreen OSX Bug ");
 108         frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
 109         enableFullScreen(frame);
 110         frame.setBounds(100, 100, 100, 100);
 111         frame.pack();
 112         frame.setVisible(true);
 113     }
 114 
 115     /*
 116      *  Use reflection to make a test compilable on not Mac OS X
 117      */
 118     private static void enableFullScreen(Window window) {
 119         try {
 120             Class<?> fullScreenUtilities = Class.forName("com.apple.eawt.FullScreenUtilities");
 121             Method setWindowCanFullScreen = fullScreenUtilities.getMethod("setWindowCanFullScreen", Window.class, boolean.class);
 122             setWindowCanFullScreen.invoke(fullScreenUtilities, window, true);
 123             Class fullScreenListener = Class.forName("com.apple.eawt.FullScreenListener");
 124             Object listenerObject = Proxy.newProxyInstance(fullScreenListener.getClassLoader(), new Class[]{fullScreenListener}, (proxy, method, args) -> {
 125                 switch (method.getName()) {
 126                     case "windowEnteringFullScreen":
 127                         windowEnteringFullScreen = true;
 128                         break;
 129                     case "windowEnteredFullScreen":
 130                         windowEnteredFullScreen = true;
 131                         break;
 132                 }
 133                 return null;
 134             });
 135             Method addFullScreenListener = fullScreenUtilities.getMethod("addFullScreenListenerTo", Window.class, fullScreenListener);
 136             addFullScreenListener.invoke(fullScreenUtilities, window, listenerObject);
 137         } catch (Exception e) {
 138             throw new RuntimeException("FullScreen utilities not available", e);
 139         }
 140     }
 141 
 142     private static void sleep() {
 143         try {
 144             Thread.sleep(500);
 145         } catch (InterruptedException ignored) { }
 146     }
 147 }