8148041: Test java/awt/Mouse/TitleBarDoubleClick/TitleBarDoubleClick fails on Ubuntu with mouseReleased event after double click on title bar

Reviewed-by: prr
This commit is contained in:
Alexander Zvegintsev 2022-11-21 10:48:44 +00:00
parent e4206618ac
commit 2fc340a703
2 changed files with 78 additions and 58 deletions

View File

@ -427,7 +427,6 @@ java/awt/SplashScreen/MultiResolutionSplash/unix/UnixMultiResolutionSplashTest.j
java/awt/Robot/AcceptExtraMouseButtons/AcceptExtraMouseButtons.java 7107528 linux-all,macosx-all
java/awt/Mouse/MouseDragEvent/MouseDraggedTest.java 8080676 linux-all
java/awt/Mouse/MouseModifiersUnitTest/MouseModifiersInKeyEvent.java 8157147 linux-all,windows-all,macosx-all
java/awt/Mouse/TitleBarDoubleClick/TitleBarDoubleClick.java 8148041 linux-all
java/awt/Toolkit/DesktopProperties/rfe4758438.java 8193547 linux-all
java/awt/Toolkit/ToolkitPropertyTest/ToolkitPropertyTest_Enable.java 6847163
java/awt/xembed/server/RunTestXEmbed.java 7034201 linux-all

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2002, 2022, 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
@ -26,17 +26,22 @@
@key headful
@bug 4664415
@summary Test that double clicking the titlebar does not send RELEASE/CLICKED
@library ../../regtesthelpers
@build Util
@run main TitleBarDoubleClick
*/
import java.awt.*;
import java.awt.event.*;
import test.java.awt.regtesthelpers.Util;
import java.awt.AWTError;
import java.awt.AWTException;
import java.awt.Frame;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.event.InputEvent;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.WindowEvent;
import java.awt.event.WindowListener;
public class TitleBarDoubleClick implements MouseListener,
WindowListener
WindowListener
{
//Declare things used in the test, like buttons and labels here
private final static Rectangle BOUNDS = new Rectangle(300, 300, 300, 300);
@ -45,69 +50,85 @@ public class TitleBarDoubleClick implements MouseListener,
Frame frame;
Robot robot;
public static void main(final String[] args) {
TitleBarDoubleClick app = new TitleBarDoubleClick();
app.start();
private volatile boolean failed = false;
public static void main(final String[] args) throws AWTException {
new TitleBarDoubleClick().doTest();
}
public void start ()
{
robot = Util.createRobot();
robot.setAutoDelay(100);
robot.mouseMove(BOUNDS.x + (BOUNDS.width / 2),
BOUNDS.y + (BOUNDS.height/ 2));
public TitleBarDoubleClick() throws AWTException {
robot = new Robot();
robot.setAutoDelay(100);
frame = new Frame("TitleBarDoubleClick");
frame.setBounds(BOUNDS);
frame.addMouseListener(this);
frame.addWindowListener(this);
frame.setVisible(true);
}// start()
robot.mouseMove(
BOUNDS.x + (BOUNDS.width / 2),
BOUNDS.y + (BOUNDS.height/ 2)
);
// Move the mouse into the title bar and double click to maximize the
// Frame
static boolean hasRun = false;
frame = new Frame("TitleBarDoubleClick");
frame.setBounds(BOUNDS);
frame.addMouseListener(this);
frame.addWindowListener(this);
frame.setVisible(true);
private void doTest() {
if (hasRun) return;
hasRun = true;
robot.waitForIdle();
robot.delay(1000);
}
public void doTest() throws AWTException {
System.out.println("doing test");
robot.mouseMove(BOUNDS.x + (BOUNDS.width / 2),
BOUNDS.y + TITLE_BAR_OFFSET);
robot.delay(50);
// Util.waitForIdle(robot) seem always hangs here.
// Need to use it instead robot.delay() when the bug become fixed.
System.out.println("1st press: currentTimeMillis: " + System.currentTimeMillis());
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.delay(50);
System.out.println("1st release: currentTimeMillis: " + System.currentTimeMillis());
robot.mouseRelease(InputEvent.BUTTON1_MASK);
robot.delay(50);
System.out.println("2nd press: currentTimeMillis: " + System.currentTimeMillis());
robot.mousePress(InputEvent.BUTTON1_MASK);
robot.delay(50);
System.out.println("2nd release: currentTimeMillis: " + System.currentTimeMillis());
robot.mouseRelease(InputEvent.BUTTON1_MASK);
System.out.println("done: currentTimeMillis: " + System.currentTimeMillis());
robot.mouseMove(
BOUNDS.x + (BOUNDS.width / 2),
BOUNDS.y + TITLE_BAR_OFFSET
);
robot.waitForIdle();
System.out.println("1st press: currentTimeMillis: "
+ System.currentTimeMillis());
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
System.out.println("1st release: currentTimeMillis: "
+ System.currentTimeMillis());
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
System.out.println("2nd press: currentTimeMillis: "
+ System.currentTimeMillis());
robot.mousePress(InputEvent.BUTTON1_DOWN_MASK);
System.out.println("2nd release: currentTimeMillis: "
+ System.currentTimeMillis());
robot.mouseRelease(InputEvent.BUTTON1_DOWN_MASK);
System.out.println("done: currentTimeMillis: "
+ System.currentTimeMillis());
robot.waitForIdle();
robot.delay(500);
frame.dispose();
if (failed) {
throw new AWTError("Test failed");
}
}
private void fail() {
throw new AWTError("Test failed");
private void fail(MouseEvent e) {
System.err.println("Failed: " + e);
failed = true;
}
public void mouseEntered(MouseEvent e) {}
public void mouseExited(MouseEvent e) {}
public void mousePressed(MouseEvent e) {fail();}
public void mouseReleased(MouseEvent e) {fail();}
public void mouseClicked(MouseEvent e) {fail();}
public void mousePressed(MouseEvent e) { fail(e); }
public void mouseReleased(MouseEvent e) { fail(e); }
public void mouseClicked(MouseEvent e) { fail(e); }
public void windowActivated(WindowEvent e) {doTest();}
public void windowClosed(WindowEvent e) {}
public void windowClosing(WindowEvent e) {}
public void windowDeactivated(WindowEvent e) {}
public void windowDeiconified(WindowEvent e) {}
public void windowIconified(WindowEvent e) {}
public void windowOpened(WindowEvent e) {}
public void windowActivated(WindowEvent e) {}
public void windowClosed(WindowEvent e) {}
public void windowClosing(WindowEvent e) {}
public void windowDeactivated(WindowEvent e) {}
public void windowDeiconified(WindowEvent e) {}
public void windowIconified(WindowEvent e) {}
public void windowOpened(WindowEvent e) {}
}// class TitleBarDoubleClick