Skip to content

Commit

Permalink
8340907: Open source closed frame tests # 2
Browse files Browse the repository at this point in the history
  • Loading branch information
azvegint committed Sep 30, 2024
1 parent 180affc commit 791fd9d
Show file tree
Hide file tree
Showing 5 changed files with 441 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/jdk/ProblemList.txt
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ java/awt/Focus/AutoRequestFocusTest/AutoRequestFocusToFrontTest.java 6848406 gen
java/awt/Focus/AutoRequestFocusTest/AutoRequestFocusSetVisibleTest.java 6848407 generic-all
java/awt/Frame/MaximizedUndecorated/MaximizedUndecorated.java 8022302 generic-all
java/awt/Frame/RestoreToOppositeScreen/RestoreToOppositeScreen.java 8286840 linux-all
java/awt/Frame/InitialIconifiedTest.java 8203920 macosx-all,linux-all
java/awt/FileDialog/FileDialogIconTest/FileDialogIconTest.java 8160558 windows-all
java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion.java 8060176 windows-all,macosx-all
java/awt/event/MouseWheelEvent/InfiniteRecursion/InfiniteRecursion_1.java 8060176 windows-all,macosx-all
Expand Down
140 changes: 140 additions & 0 deletions test/jdk/java/awt/Frame/DeiconifyClipTest.java
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);
}
}
}
100 changes: 100 additions & 0 deletions test/jdk/java/awt/Frame/FrameSetCursorTest.java
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;
}
}
98 changes: 98 additions & 0 deletions test/jdk/java/awt/Frame/InitialIconifiedTest.java
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");
}
}
}
}
}
Loading

0 comments on commit 791fd9d

Please sign in to comment.