Skip to content

Commit 7845b0d

Browse files
Anto Jmrserb
Anto J
authored andcommittedJan 6, 2023
8296934: Write a test to verify whether Undecorated Frame can be iconified or not
Reviewed-by: serb
1 parent 4b6809b commit 7845b0d

File tree

1 file changed

+200
-0
lines changed

1 file changed

+200
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
/*
2+
* Copyright (c) 1999, 2022, 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.AWTException;
25+
import java.awt.Button;
26+
import java.awt.Color;
27+
import java.awt.Dimension;
28+
import java.awt.FlowLayout;
29+
import java.awt.Frame;
30+
import java.awt.Point;
31+
import java.awt.Robot;
32+
import java.awt.event.ActionEvent;
33+
import java.awt.event.ActionListener;
34+
import java.awt.event.InputEvent;
35+
import java.awt.event.WindowAdapter;
36+
import java.awt.event.WindowEvent;
37+
import java.lang.reflect.InvocationTargetException;
38+
import java.util.concurrent.atomic.AtomicReference;
39+
import javax.swing.SwingUtilities;
40+
41+
/*
42+
* @test
43+
* @key headful
44+
* @bug 8296934
45+
* @summary Verifies whether Undecorated Frame can be iconified or not.
46+
* @run main IconifyTest
47+
*/
48+
public class IconifyTest {
49+
50+
private static Robot robot;
51+
private static Button button;
52+
private static Frame frame;
53+
private static volatile int windowStatusEventType;
54+
private static volatile int windowIconifiedEventType;
55+
private static volatile boolean focusGained = false;
56+
57+
public static void initializeGUI() {
58+
frame = new Frame();
59+
frame.setLayout(new FlowLayout());
60+
frame.setSize(200, 200);
61+
frame.setUndecorated(true);
62+
63+
frame.addWindowFocusListener(new WindowAdapter() {
64+
public void windowGainedFocus(WindowEvent event) {
65+
focusGained = true;
66+
}
67+
});
68+
69+
frame.addWindowListener(new WindowAdapter() {
70+
public void windowActivated(WindowEvent e) {
71+
windowStatusEventType = WindowEvent.WINDOW_ACTIVATED;
72+
System.out.println("Event encountered: " + e);
73+
}
74+
75+
public void windowIconified(WindowEvent e) {
76+
windowIconifiedEventType = WindowEvent.WINDOW_ICONIFIED;
77+
System.out.println("Event encountered: " + e);
78+
}
79+
80+
public void windowDeiconified(WindowEvent e) {
81+
windowIconifiedEventType = WindowEvent.WINDOW_DEICONIFIED;
82+
System.out.println("Event encountered: " + e);
83+
}
84+
85+
public void windowDeactivated(WindowEvent e) {
86+
windowStatusEventType = WindowEvent.WINDOW_DEACTIVATED;
87+
System.out.println("Event encountered: " + e);
88+
}
89+
});
90+
91+
button = new Button("Minimize me");
92+
button.addActionListener(new ActionListener() {
93+
public void actionPerformed(ActionEvent e) {
94+
frame.setExtendedState(Frame.ICONIFIED);
95+
}
96+
});
97+
98+
frame.setBackground(Color.green);
99+
frame.add(button);
100+
frame.setLocationRelativeTo(null);
101+
frame.toFront();
102+
frame.setVisible(true);
103+
}
104+
105+
public static void main(String[] args) throws AWTException,
106+
InvocationTargetException, InterruptedException {
107+
robot = new Robot();
108+
try {
109+
robot.setAutoDelay(100);
110+
robot.setAutoWaitForIdle(true);
111+
112+
SwingUtilities.invokeAndWait(IconifyTest::initializeGUI);
113+
final AtomicReference<Point> frameloc = new AtomicReference<>();
114+
final AtomicReference<Dimension> framesize = new AtomicReference<>();
115+
SwingUtilities.invokeAndWait(() -> {
116+
frameloc.set(frame.getLocationOnScreen());
117+
framesize.set(frame.getSize());
118+
});
119+
Point locOnScreen = frameloc.get();
120+
Dimension frameSizeOnScreen = framesize.get();
121+
122+
robot.mouseMove(locOnScreen.x + frameSizeOnScreen.width / 2,
123+
locOnScreen.y + frameSizeOnScreen.height / 2);
124+
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
125+
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
126+
if (windowStatusEventType != WindowEvent.WINDOW_ACTIVATED) {
127+
throw new RuntimeException(
128+
"FAIL: WINDOW_ACTIVATED event did not occur when the undecorated frame is activated!");
129+
}
130+
clearEventTypeValue();
131+
final AtomicReference<Point> buttonloc = new AtomicReference<>();
132+
final AtomicReference<Dimension> buttonsize = new AtomicReference<>();
133+
SwingUtilities.invokeAndWait(() -> {
134+
buttonloc.set(button.getLocationOnScreen());
135+
buttonsize.set(button.getSize());
136+
});
137+
Point buttonLocOnScreen = buttonloc.get();
138+
Dimension buttonSizeOnScreen = buttonsize.get();
139+
140+
robot.mouseMove(buttonLocOnScreen.x + buttonSizeOnScreen.width / 2,
141+
buttonLocOnScreen.y + buttonSizeOnScreen.height / 2);
142+
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
143+
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
144+
145+
if (windowIconifiedEventType != WindowEvent.WINDOW_ICONIFIED) {
146+
throw new RuntimeException(
147+
"FAIL: WINDOW_ICONIFIED event did not occur when the undecorated frame is iconified!");
148+
}
149+
if (windowStatusEventType != WindowEvent.WINDOW_DEACTIVATED) {
150+
throw new RuntimeException(
151+
"FAIL: WINDOW_DEACTIVATED event did not occur when the undecorated frame is iconified!");
152+
}
153+
final AtomicReference<Boolean> frameHasFocus = new AtomicReference<>();
154+
SwingUtilities
155+
.invokeAndWait(() -> frameHasFocus.set(frame.hasFocus()));
156+
final boolean hasFocus = frameHasFocus.get();
157+
if (hasFocus) {
158+
throw new RuntimeException(
159+
"FAIL: The undecorated frame has focus even when it is iconified!");
160+
}
161+
162+
clearEventTypeValue();
163+
164+
SwingUtilities
165+
.invokeAndWait(() -> frame.setExtendedState(Frame.NORMAL));
166+
robot.waitForIdle();
167+
168+
if (windowIconifiedEventType != WindowEvent.WINDOW_DEICONIFIED) {
169+
throw new RuntimeException(
170+
"FAIL: WINDOW_DEICONIFIED event did not occur when the state is set to NORMAL!");
171+
}
172+
if (windowStatusEventType != WindowEvent.WINDOW_ACTIVATED) {
173+
throw new RuntimeException(
174+
"FAIL: WINDOW_ACTIVATED event did not occur when the state is set to NORMAL!");
175+
}
176+
if (!focusGained) {
177+
throw new RuntimeException(
178+
"FAIL: The undecorated frame does not have focus when it is deiconified!");
179+
}
180+
System.out.println("Test passed");
181+
}
182+
finally {
183+
SwingUtilities.invokeAndWait(IconifyTest::disposeFrame);
184+
}
185+
}
186+
187+
public static void disposeFrame() {
188+
if (frame != null) {
189+
frame.dispose();
190+
frame = null;
191+
}
192+
}
193+
194+
public static void clearEventTypeValue() {
195+
windowIconifiedEventType = -1;
196+
windowStatusEventType = -1;
197+
focusGained = false;
198+
}
199+
}
200+

5 commit comments

Comments
 (5)

openjdk-notifier[bot] commented on Jan 6, 2023

@openjdk-notifier[bot]

GoeLin commented on May 8, 2023

@GoeLin
Member

/backport jdk17u-dev

GoeLin commented on May 8, 2023

@GoeLin
Member

/backport jdk11u-dev

openjdk[bot] commented on May 8, 2023

@openjdk[bot]

@GoeLin the backport was successfully created on the branch GoeLin-backport-7845b0d7 in my personal fork of openjdk/jdk17u-dev. To create a pull request with this backport targeting openjdk/jdk17u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 7845b0d7 from the openjdk/jdk repository.

The commit being backported was authored by Anto J on 6 Jan 2023 and was reviewed by Sergey Bylokhov.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk17u-dev:

$ git fetch https://github.com/openjdk-bots/jdk17u-dev.git GoeLin-backport-7845b0d7:GoeLin-backport-7845b0d7
$ git checkout GoeLin-backport-7845b0d7
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk17u-dev.git GoeLin-backport-7845b0d7

openjdk[bot] commented on May 8, 2023

@openjdk[bot]

@GoeLin the backport was successfully created on the branch GoeLin-backport-7845b0d7 in my personal fork of openjdk/jdk11u-dev. To create a pull request with this backport targeting openjdk/jdk11u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 7845b0d7 from the openjdk/jdk repository.

The commit being backported was authored by Anto J on 6 Jan 2023 and was reviewed by Sergey Bylokhov.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk11u-dev:

$ git fetch https://github.com/openjdk-bots/jdk11u-dev.git GoeLin-backport-7845b0d7:GoeLin-backport-7845b0d7
$ git checkout GoeLin-backport-7845b0d7
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk11u-dev.git GoeLin-backport-7845b0d7
Please sign in to comment.