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  * @modules 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.mouseMove(0, 0);
  67             sleep();
  68 
  69             SwingUtilities.invokeAndWait(FullScreenAfterSplash::createAndShowGUI);
  70             sleep();
  71 
  72             Point fullScreenButtonPos = frame.getLocation();
  73             fullScreenButtonPos.translate(frame.getWidth() - 10, 10);
  74             r.mouseMove(fullScreenButtonPos.x, fullScreenButtonPos.y);
  75 
  76             //Cant use waitForIdle for full screen transition.
  77             int waitCount = 0;
  78             while (!windowEnteringFullScreen) {
  79                 r.mousePress(InputEvent.BUTTON1_MASK);
  80                 r.mouseRelease(InputEvent.BUTTON1_MASK);
  81                 Thread.sleep(100);
  82                 if (waitCount++ > 10) {
  83                     System.err.println("Can't enter full screen mode. Failed.");
  84                     System.exit(1);
  85                 }
  86             }
  87 
  88             waitCount = 0;
  89             while (!windowEnteredFullScreen) {
  90                 Thread.sleep(100);
  91                 if (waitCount++ > 10) {
  92                     System.err.println("Can't enter full screen mode. Failed.");
  93                     System.exit(1);
  94                 }
  95             }
  96         } finally {
  97             if (frame != null) {
  98                 frame.dispose();
  99             }
 100         }
 101     }
 102 
 103     private static void createAndShowGUI() {
 104         frame = new JFrame(" Fullscreen OSX Bug ");
 105         frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
 106         enableFullScreen(frame);
 107         frame.setBounds(100, 100, 100, 100);
 108         frame.pack();
 109         frame.setVisible(true);
 110     }
 111 
 112     /*
 113      *  Use reflection to make a test compilable on not Mac OS X
 114      */
 115     private static void enableFullScreen(Window window) {
 116         try {
 117             Class<?> fullScreenUtilities = Class.forName("com.apple.eawt.FullScreenUtilities");
 118             Method setWindowCanFullScreen = fullScreenUtilities.getMethod("setWindowCanFullScreen", Window.class, boolean.class);
 119             setWindowCanFullScreen.invoke(fullScreenUtilities, window, true);
 120             Class fullScreenListener = Class.forName("com.apple.eawt.FullScreenListener");
 121             Object listenerObject = Proxy.newProxyInstance(fullScreenListener.getClassLoader(), new Class[]{fullScreenListener}, (proxy, method, args) -> {
 122                 switch (method.getName()) {
 123                     case "windowEnteringFullScreen":
 124                         windowEnteringFullScreen = true;
 125                         break;
 126                     case "windowEnteredFullScreen":
 127                         windowEnteredFullScreen = true;
 128                         break;
 129                 }
 130                 return null;
 131             });
 132             Method addFullScreenListener = fullScreenUtilities.getMethod("addFullScreenListenerTo", Window.class, fullScreenListener);
 133             addFullScreenListener.invoke(fullScreenUtilities, window, listenerObject);
 134         } catch (Exception e) {
 135             throw new RuntimeException("FullScreen utilities not available", e);
 136         }
 137     }
 138 
 139     private static void sleep() {
 140         try {
 141             Thread.sleep(500);
 142         } catch (InterruptedException ignored) { }
 143     }
 144 }