Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/test/jdk/java/awt/Frame/NormalToIconified/NormalToIconifiedTest.java
41153 views
1
/*
2
* Copyright (c) 2016, 2019, 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
/**
25
* @test
26
* @key headful
27
* @bug 8171949 8214046
28
* @summary Tests that bitwise mask is set and state listener is notified during state transition.
29
* @author Dmitry Markov
30
* @library ../../regtesthelpers
31
* @build Util
32
* @run main NormalToIconifiedTest
33
*/
34
35
import java.awt.Frame;
36
import java.awt.Robot;
37
import java.awt.event.WindowEvent;
38
import java.awt.event.WindowStateListener;
39
import java.util.concurrent.atomic.AtomicBoolean;
40
41
import test.java.awt.regtesthelpers.Util;
42
43
public class NormalToIconifiedTest {
44
45
public static void main(String[] args) {
46
test(false);
47
test(true);
48
}
49
50
private static void test(final boolean undecorated) {
51
AtomicBoolean listenerNotified = new AtomicBoolean(false);
52
53
Robot robot = Util.createRobot();
54
Frame testFrame = new Frame("Test Frame");
55
testFrame.setUndecorated(undecorated);
56
testFrame.setSize(200, 200);
57
testFrame.addWindowStateListener(new WindowStateListener() {
58
@Override
59
public void windowStateChanged(WindowEvent e) {
60
listenerNotified.set(true);
61
synchronized (listenerNotified) {
62
listenerNotified.notifyAll();
63
}
64
}
65
});
66
testFrame.setVisible(true);
67
Frame mainFrame = new Frame("Main Frame");
68
mainFrame.setSize(200, 200);
69
mainFrame.setLocationRelativeTo(null);
70
mainFrame.setVisible(true);
71
Util.waitForIdle(robot);
72
try {
73
Util.clickOnComp(mainFrame, robot);
74
Util.waitForIdle(robot);
75
76
// NORMAL -> ICONIFIED
77
listenerNotified.set(false);
78
testFrame.setExtendedState(Frame.ICONIFIED);
79
Util.waitForIdle(robot);
80
81
Util.waitForCondition(listenerNotified, 2000);
82
if (!listenerNotified.get()) {
83
throw new RuntimeException("Test FAILED! Window state listener was not notified during NORMAL to" +
84
"ICONIFIED transition");
85
}
86
if (testFrame.getExtendedState() != Frame.ICONIFIED) {
87
throw new RuntimeException("Test FAILED! Frame is not in ICONIFIED state");
88
}
89
90
// ICONIFIED -> NORMAL
91
listenerNotified.set(false);
92
testFrame.setExtendedState(Frame.NORMAL);
93
Util.waitForIdle(robot);
94
95
Util.waitForCondition(listenerNotified, 2000);
96
if (!listenerNotified.get()) {
97
throw new RuntimeException("Test FAILED! Window state listener was not notified during ICONIFIED to" +
98
"NORMAL transition");
99
}
100
if (testFrame.getExtendedState() != Frame.NORMAL) {
101
throw new RuntimeException("Test FAILED! Frame is not in NORMAL state");
102
}
103
} finally {
104
testFrame.dispose();
105
mainFrame.dispose();
106
}
107
}
108
}
109
110
111