jdk-24/test/jdk/java/awt/List/MouseDraggedOriginatedByScrollBarTest.java
Prasanta Sadhukhan 602408e4f3 8341177: Opensource few List and a Window test
Reviewed-by: prr
2024-10-03 02:51:23 +00:00

104 lines
3.4 KiB
Java

/*
* Copyright (c) 2005, 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.
*/
/*
* @test
* @bug 6240151
* @summary XToolkit: Dragging the List scrollbar initiates DnD
* @library /java/awt/regtesthelpers
* @build PassFailJFrame
* @run main/manual MouseDraggedOriginatedByScrollBarTest
*/
import java.awt.FlowLayout;
import java.awt.Frame;
import java.awt.List;
import java.awt.event.MouseMotionAdapter;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
public class MouseDraggedOriginatedByScrollBarTest {
private static final String INSTRUCTIONS = """
1) Click and drag the scrollbar of the list.
2) Keep dragging till the mouse pointer goes out the scrollbar.
3) The test failed if you see messages about events. The test passed if you don't.""";
public static void main(String[] args) throws Exception {
PassFailJFrame.builder()
.title("MouseDraggedOriginatedByScrollBarTest Instructions")
.instructions(INSTRUCTIONS)
.rows((int) INSTRUCTIONS.lines().count() + 2)
.columns(35)
.testUI(MouseDraggedOriginatedByScrollBarTest::createTestUI)
.logArea()
.build()
.awaitAndCheck();
}
private static Frame createTestUI() {
Frame frame = new Frame();
List list = new List(4, false);
list.add("000");
list.add("111");
list.add("222");
list.add("333");
list.add("444");
list.add("555");
list.add("666");
list.add("777");
list.add("888");
list.add("999");
frame.add(list);
list.addMouseMotionListener(
new MouseMotionAdapter(){
@Override
public void mouseDragged(MouseEvent me){
PassFailJFrame.log(me.toString());
}
});
list.addMouseListener(
new MouseAdapter() {
public void mousePressed(MouseEvent me) {
PassFailJFrame.log(me.toString());
}
public void mouseReleased(MouseEvent me) {
PassFailJFrame.log(me.toString());
}
public void mouseClicked(MouseEvent me){
PassFailJFrame.log(me.toString());
}
});
frame.setLayout(new FlowLayout());
frame.pack();
return frame;
}
}