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