forked from openjdk/jdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
8340907: Open source closed frame tests # 2
- Loading branch information
Showing
5 changed files
with
441 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,140 @@ | ||
/* | ||
* Copyright (c) 2003, 2024, Oracle and/or its affiliates. All rights reserved. | ||
* 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. | ||
*/ | ||
|
||
/* | ||
* DeiconifyClipTest.java | ||
* | ||
* summary: | ||
* | ||
* What happens is that we call AwtWindow::UpdateInsets when | ||
* processing WM_NCCALCSIZE delivered on programmatic deiconification. | ||
* At this point IsIconic returns false (so UpdateInsets proceeds), | ||
* but the rect sizes still seems to be those weird of the iconic | ||
* state. Based on them we compute insets with top = left = 0 (and | ||
* bottom and right that are completely bogus) and pass them to | ||
* PaintUpdateRgn which results in incorrect clip origin. Immediately | ||
* after that we do UpdateInsets again during WM_SIZE processing and | ||
* get real values. | ||
*/ | ||
|
||
import javax.swing.BoxLayout; | ||
import javax.swing.JFrame; | ||
import javax.swing.SwingUtilities; | ||
import java.awt.Color; | ||
import java.awt.Dimension; | ||
import java.awt.Frame; | ||
import java.awt.Graphics; | ||
import java.awt.Insets; | ||
|
||
/* | ||
* @test | ||
* @bug 4792958 | ||
* @summary Incorrect clip region after programmatic restore | ||
* @library /java/awt/regtesthelpers | ||
* @build PassFailJFrame | ||
* @run main/manual DeiconifyClipTest | ||
*/ | ||
|
||
public class DeiconifyClipTest { | ||
private static final String INSTRUCTIONS = """ | ||
This test creates a frame that is automatically iconified/deiconified | ||
in a cycle. | ||
The test FAILS if after deiconfication the frame has a greyed-out area | ||
in the lower-right corner. | ||
If the frame contents is drawn completely - the test PASSES. | ||
Press PASS or FAIL button accordingly. | ||
"""; | ||
|
||
static TestFrame testFrame; | ||
static volatile boolean shouldContinue = true; | ||
|
||
public static void main(String[] args) throws Exception { | ||
PassFailJFrame passFailJFrame = PassFailJFrame.builder() | ||
.title("DeiconifyClipTest Instructions") | ||
.instructions(INSTRUCTIONS) | ||
.columns(45) | ||
.testUI(DeiconifyClipTest::createAndShowUI) | ||
.build(); | ||
try { | ||
runThread(); | ||
} finally { | ||
passFailJFrame.awaitAndCheck(); | ||
shouldContinue = false; | ||
} | ||
} | ||
|
||
private static void runThread() { | ||
new Thread(() -> { | ||
for (int i = 0; i < 1000 && shouldContinue; ++i) { | ||
try { | ||
Thread.sleep(3000); | ||
SwingUtilities.invokeAndWait(() -> { | ||
if ((testFrame.getExtendedState() & Frame.ICONIFIED) | ||
!= 0) { | ||
testFrame.setExtendedState(Frame.NORMAL); | ||
} else { | ||
testFrame.setState(Frame.ICONIFIED); | ||
} | ||
}); | ||
} catch (Exception ignored) { | ||
} | ||
} | ||
}).start(); | ||
} | ||
|
||
static Frame createAndShowUI() { | ||
testFrame = new TestFrame(); | ||
testFrame.getContentPane().setLayout(new BoxLayout(testFrame.getContentPane(), | ||
BoxLayout.Y_AXIS)); | ||
testFrame.getContentPane().setBackground(Color.yellow); | ||
testFrame.setSize(300, 300); | ||
return testFrame; | ||
} | ||
|
||
static class TestFrame extends JFrame { | ||
public TestFrame() { | ||
super("DeiconifyClipTest"); | ||
} | ||
|
||
// make it more visible if the clip is wrong. | ||
public void paint(Graphics g) { | ||
Insets b = getInsets(); | ||
Dimension d = getSize(); | ||
|
||
int x = b.left; | ||
int y = b.top; | ||
int w = d.width - x - b.right; | ||
int h = d.height - y - b.bottom; | ||
|
||
g.setColor(Color.white); | ||
g.fillRect(0, 0, d.width, d.height); | ||
|
||
g.setColor(Color.green); | ||
g.drawRect(x, y, w-1, h-1); | ||
g.drawLine(x, y, x+w, y+h); | ||
g.drawLine(x, y+h, x+w, y); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/* | ||
* Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved. | ||
* 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 java.awt.BorderLayout; | ||
import java.awt.Button; | ||
import java.awt.Cursor; | ||
import java.awt.Frame; | ||
import java.awt.Panel; | ||
import java.awt.event.ActionListener; | ||
import java.lang.Exception; | ||
import java.lang.InterruptedException; | ||
import java.lang.Object; | ||
import java.lang.String; | ||
import java.lang.Thread; | ||
|
||
/* | ||
* @test | ||
* @bug 4097226 | ||
* @summary Frame.setCursor() sometimes doesn't update the cursor until user moves the mouse | ||
* @library /java/awt/regtesthelpers | ||
* @build PassFailJFrame | ||
* @run main/manual FrameSetCursorTest | ||
*/ | ||
|
||
public class FrameSetCursorTest { | ||
private static final String INSTRUCTIONS = """ | ||
1. Keep the instruction dialog and TestFrame side by side so that | ||
you can read the instructions while doing the test | ||
2. Click on the 'Start Busy' button on the frame titled 'TestFrame' | ||
and DO NOT MOVE THE MOUSE ANYWHERE till you complete the steps below | ||
3. The cursor on the TestFrame changes to busy cursor | ||
4. If you don't see the busy cursor press 'Fail' after | ||
the `done sleeping` message | ||
5. If the busy cursor is seen, after 5 seconds the message | ||
'done sleeping' is displayed in the message window | ||
6. Check for the cursor type after the display of 'done sleeping' | ||
7. If the cursor on the TestFrame has changed back to default cursor | ||
(without you touching or moving the mouse), then press 'Pass' | ||
else if the frame still shows the busy cursor press 'Fail' | ||
"""; | ||
|
||
public static void main(String[] args) throws Exception { | ||
PassFailJFrame.builder() | ||
.title("FrameSetCursorTest Instructions") | ||
.instructions(INSTRUCTIONS) | ||
.columns(45) | ||
.testUI(FrameSetCursorTest::createAndShowUI) | ||
.logArea(5) | ||
.build() | ||
.awaitAndCheck(); | ||
|
||
} | ||
|
||
static Frame createAndShowUI() { | ||
Frame frame = new Frame("TestFrame"); | ||
Panel panel = new Panel(); | ||
Button busyButton = new Button("Start Busy"); | ||
|
||
ActionListener actionListener = event -> { | ||
Object source = event.getSource(); | ||
if (source == busyButton) { | ||
frame.setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); | ||
try { | ||
Thread.sleep(5000); | ||
} catch (InterruptedException ignored) {} | ||
PassFailJFrame.log("done sleeping"); | ||
frame.setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR)); | ||
} | ||
}; | ||
|
||
busyButton.addActionListener(actionListener); | ||
panel.setLayout(new BorderLayout()); | ||
panel.add("North", busyButton); | ||
|
||
frame.add(panel); | ||
frame.pack(); | ||
frame.setSize(200, 200); | ||
return frame; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
/* | ||
* Copyright (c) 2003, 2024, Oracle and/or its affiliates. All rights reserved. | ||
* 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 javax.imageio.ImageIO; | ||
import java.awt.Color; | ||
import java.awt.EventQueue; | ||
import java.awt.Frame; | ||
import java.awt.Rectangle; | ||
import java.awt.Robot; | ||
import java.awt.image.BufferedImage; | ||
import java.io.File; | ||
import java.io.IOException; | ||
|
||
/* | ||
* @test | ||
* @key headful | ||
* @bug 4851435 | ||
* @summary Frame is not shown initially iconified after pack | ||
*/ | ||
|
||
public class InitialIconifiedTest { | ||
|
||
private static Frame backgroundFrame; | ||
private static Frame testedFrame; | ||
|
||
private static final Rectangle backgroundFrameBounds = | ||
new Rectangle(100, 100, 200, 200); | ||
private static final Rectangle testedFrameBounds = | ||
new Rectangle(150, 150, 100, 100); | ||
|
||
private static Robot robot; | ||
|
||
public static void main(String[] args) throws Exception { | ||
robot = new Robot(); | ||
|
||
try { | ||
EventQueue.invokeAndWait(InitialIconifiedTest::initAndShowGui); | ||
robot.waitForIdle(); | ||
robot.delay(500); | ||
test(); | ||
} finally { | ||
EventQueue.invokeAndWait(() -> { | ||
backgroundFrame.dispose(); | ||
testedFrame.dispose(); | ||
}); | ||
} | ||
} | ||
|
||
private static void initAndShowGui() { | ||
backgroundFrame = new Frame("DisposeTest background"); | ||
backgroundFrame.setUndecorated(true); | ||
backgroundFrame.setBackground(Color.RED); | ||
backgroundFrame.setBounds(backgroundFrameBounds); | ||
backgroundFrame.setVisible(true); | ||
|
||
testedFrame = new Frame("Should have started ICONIC"); | ||
testedFrame.setExtendedState(Frame.ICONIFIED); | ||
testedFrame.setBounds(testedFrameBounds); | ||
testedFrame.setVisible(true); | ||
} | ||
|
||
private static void test() { | ||
BufferedImage bi = robot.createScreenCapture(backgroundFrameBounds); | ||
int redPix = Color.RED.getRGB(); | ||
|
||
for (int x = 0; x < bi.getWidth(); x++) { | ||
for (int y = 0; y < bi.getHeight(); y++) { | ||
if (bi.getRGB(x, y) != redPix) { | ||
try { | ||
ImageIO.write(bi, "png", | ||
new File("failure.png")); | ||
} catch (IOException ignored) {} | ||
throw new RuntimeException("Test failed"); | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.