mirror of
https://github.com/JetBrains/JetBrainsRuntime.git
synced 2025-12-06 09:29:38 +01:00
JBR-5350 Separate test for Mac OS
This commit is contained in:
committed by
jbrbot
parent
aecacc11a9
commit
77b0b2c770
@@ -0,0 +1,216 @@
|
||||
/*
|
||||
* Copyright 2000-2023 JetBrains s.r.o.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
import com.jetbrains.JBR;
|
||||
import com.jetbrains.WindowDecorations;
|
||||
import util.CommonAPISuite;
|
||||
import util.Rect;
|
||||
import util.ScreenShotHelpers;
|
||||
import util.Task;
|
||||
import util.TestUtils;
|
||||
|
||||
import javax.swing.JFrame;
|
||||
import java.awt.Frame;
|
||||
import java.awt.Window;
|
||||
import java.awt.event.InputEvent;
|
||||
import java.awt.event.WindowAdapter;
|
||||
import java.awt.event.WindowEvent;
|
||||
import java.awt.event.WindowListener;
|
||||
import java.awt.event.WindowStateListener;
|
||||
import java.awt.image.BufferedImage;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @summary Detect and check behavior of clicking to native controls
|
||||
* @requires (os.family == "mac")
|
||||
* @modules java.desktop/com.apple.eawt
|
||||
* java.desktop/com.apple.eawt.event
|
||||
* @run main/othervm FrameNativeControlsMacOSTest
|
||||
* @run main/othervm -Dsun.java2d.uiScale.enabled=true -Dsun.java2d.uiScale=1.0 FrameNativeControlsMacOSTest
|
||||
* @run main/othervm -Dsun.java2d.uiScale.enabled=true -Dsun.java2d.uiScale=1.25 FrameNativeControlsMacOSTest
|
||||
* @run main/othervm -Dsun.java2d.uiScale.enabled=true -Dsun.java2d.uiScale=1.5 FrameNativeControlsMacOSTest
|
||||
* @run main/othervm -Dsun.java2d.uiScale.enabled=true -Dsun.java2d.uiScale=2.0 FrameNativeControlsMacOSTest
|
||||
* @run main/othervm -Dsun.java2d.uiScale.enabled=true -Dsun.java2d.uiScale=2.5 FrameNativeControlsMacOSTest
|
||||
* @run main/othervm -Dsun.java2d.uiScale.enabled=true -Dsun.java2d.uiScale=3.0 FrameNativeControlsMacOSTest
|
||||
* @run main/othervm -Dsun.java2d.uiScale.enabled=true -Dsun.java2d.uiScale=3.5 FrameNativeControlsMacOSTest
|
||||
* @run main/othervm -Dsun.java2d.uiScale.enabled=true -Dsun.java2d.uiScale=4.0 FrameNativeControlsMacOSTest
|
||||
*/
|
||||
public class FrameNativeControlsMacOSTest {
|
||||
|
||||
public static void main(String... args) {
|
||||
List<Function<WindowDecorations.CustomTitleBar, Window>> functions =
|
||||
List.of(TestUtils::createFrameWithCustomTitleBar, TestUtils::createJFrameWithCustomTitleBar);
|
||||
boolean status = CommonAPISuite.runTestSuite(functions, frameNativeControlsClicks);
|
||||
|
||||
if (!status) {
|
||||
throw new RuntimeException("FrameNativeControlsMacOSTest FAILED");
|
||||
}
|
||||
}
|
||||
|
||||
private static final Task frameNativeControlsClicks = new Task("Frame native controls clicks") {
|
||||
private boolean closingActionCalled;
|
||||
private boolean iconifyingActionCalled;
|
||||
private boolean maximizingActionDetected;
|
||||
private boolean deiconifyindActionDetected;
|
||||
|
||||
private final WindowListener windowListener = new WindowAdapter() {
|
||||
@Override
|
||||
public void windowClosing(WindowEvent e) {
|
||||
closingActionCalled = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void windowIconified(WindowEvent e) {
|
||||
iconifyingActionCalled = true;
|
||||
|
||||
if (window.getName().equals("Frame")) {
|
||||
((Frame) window).setState(Frame.NORMAL);
|
||||
} else if (window.getName().equals("JFrame")) {
|
||||
((JFrame) window).setState(JFrame.NORMAL);
|
||||
}
|
||||
|
||||
window.setVisible(true);
|
||||
window.requestFocus();
|
||||
}
|
||||
};
|
||||
|
||||
private final WindowStateListener windowStateListener = new WindowAdapter() {
|
||||
@Override
|
||||
public void windowStateChanged(WindowEvent e) {
|
||||
System.out.println("change " + e.getOldState() + " -> " + e.getNewState());
|
||||
if (e.getNewState() == 6) {
|
||||
maximizingActionDetected = true;
|
||||
}
|
||||
if (e.getOldState() == 1 && e.getNewState() == 0) {
|
||||
deiconifyindActionDetected = true;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
@Override
|
||||
public void prepareTitleBar() {
|
||||
titleBar = JBR.getWindowDecorations().createCustomTitleBar();
|
||||
titleBar.setHeight(TestUtils.TITLE_BAR_HEIGHT);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void init() {
|
||||
closingActionCalled = false;
|
||||
iconifyingActionCalled = false;
|
||||
maximizingActionDetected = false;
|
||||
deiconifyindActionDetected = false;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void cleanup() {
|
||||
window.removeWindowListener(windowListener);
|
||||
window.removeWindowStateListener(windowStateListener);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void customizeWindow() {
|
||||
window.addWindowListener(windowListener);
|
||||
window.addWindowStateListener(windowStateListener);
|
||||
|
||||
if (window.getName().equals("JFrame")) {
|
||||
com.apple.eawt.FullScreenUtilities.addFullScreenListenerTo(window, new com.apple.eawt.FullScreenListener() {
|
||||
@Override
|
||||
public void windowEnteringFullScreen(com.apple.eawt.event.FullScreenEvent fse) {
|
||||
maximizingActionDetected = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void windowEnteredFullScreen(com.apple.eawt.event.FullScreenEvent fse) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void windowExitingFullScreen(com.apple.eawt.event.FullScreenEvent fse) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void windowExitedFullScreen(com.apple.eawt.event.FullScreenEvent fse) {
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void test() throws Exception {
|
||||
robot.delay(500);
|
||||
robot.mouseMove(window.getLocationOnScreen().x + window.getWidth() / 2,
|
||||
window.getLocationOnScreen().y + window.getHeight() / 2);
|
||||
robot.delay(500);
|
||||
|
||||
BufferedImage image = ScreenShotHelpers.takeScreenshot(window);
|
||||
List<Rect> foundControls = ScreenShotHelpers.detectControlsByBackground(image, (int) titleBar.getHeight(), TestUtils.TITLE_BAR_COLOR);
|
||||
|
||||
if (foundControls.size() == 0) {
|
||||
passed = false;
|
||||
System.out.println("Error: no controls found");
|
||||
}
|
||||
|
||||
foundControls.forEach(control -> {
|
||||
System.out.println("Using control: " + control);
|
||||
int x = window.getLocationOnScreen().x + control.getX1() + (control.getX2() - control.getX1()) / 2;
|
||||
int y = window.getLocationOnScreen().y + control.getY1() + (control.getY2() - control.getY1()) / 2;
|
||||
System.out.println("Click to (" + x + ", " + y + ")");
|
||||
|
||||
int screenX = window.getBounds().x;
|
||||
int screenY = window.getBounds().y;
|
||||
int h = window.getBounds().height;
|
||||
int w = window.getBounds().width;
|
||||
|
||||
robot.waitForIdle();
|
||||
robot.mouseMove(x, y);
|
||||
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
|
||||
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
|
||||
robot.waitForIdle();
|
||||
window.setBounds(screenX, screenY, w, h);
|
||||
window.setVisible(true);
|
||||
robot.waitForIdle();
|
||||
});
|
||||
|
||||
if (!maximizingActionDetected) {
|
||||
passed = false;
|
||||
System.out.println("Error: maximizing action was not detected");
|
||||
}
|
||||
|
||||
if (!closingActionCalled) {
|
||||
passed = false;
|
||||
System.out.println("Error: closing action was not detected");
|
||||
}
|
||||
|
||||
if (!iconifyingActionCalled) {
|
||||
passed = false;
|
||||
System.out.println("Error: iconifying action was not detected");
|
||||
}
|
||||
if (!deiconifyindActionDetected) {
|
||||
passed = false;
|
||||
System.out.println("Error: deiconifying action was not detected");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
@@ -43,9 +43,7 @@ import java.util.function.Function;
|
||||
/*
|
||||
* @test
|
||||
* @summary Detect and check behavior of clicking to native controls
|
||||
* @requires (os.family == "windows" | os.family == "mac")
|
||||
* @modules java.desktop/com.apple.eawt
|
||||
* java.desktop/com.apple.eawt.event
|
||||
* @requires (os.family == "windows")
|
||||
* @run main/othervm FrameNativeControlsTest
|
||||
* @run main/othervm -Dsun.java2d.uiScale.enabled=true -Dsun.java2d.uiScale=1.0 FrameNativeControlsTest
|
||||
* @run main/othervm -Dsun.java2d.uiScale.enabled=true -Dsun.java2d.uiScale=1.25 FrameNativeControlsTest
|
||||
@@ -132,29 +130,6 @@ public class FrameNativeControlsTest {
|
||||
protected void customizeWindow() {
|
||||
window.addWindowListener(windowListener);
|
||||
window.addWindowStateListener(windowStateListener);
|
||||
|
||||
final String os = System.getProperty("os.name").toLowerCase();
|
||||
if (window.getName().equals("JFrame") && os.startsWith("mac os")) {
|
||||
com.apple.eawt.FullScreenUtilities.addFullScreenListenerTo(window, new com.apple.eawt.FullScreenListener() {
|
||||
@Override
|
||||
public void windowEnteringFullScreen(com.apple.eawt.event.FullScreenEvent fse) {
|
||||
maximizingActionDetected = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void windowEnteredFullScreen(com.apple.eawt.event.FullScreenEvent fse) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void windowExitingFullScreen(com.apple.eawt.event.FullScreenEvent fse) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void windowExitedFullScreen(com.apple.eawt.event.FullScreenEvent fse) {
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user