jdk-24/test/jdk/java/awt/Choice/MultiItemSelected/MultiItemSelected_DragOut.java
Alexander Zuev 19642bd383 8341148: Open source several Choice related tests
Reviewed-by: abhiscxk
2024-10-03 09:23:46 +00:00

75 lines
2.6 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 6367251
* @summary 2 items are highlighted when pressing, dragging the mouse inside the choice, XToolkit
* @library /java/awt/regtesthelpers
* @build PassFailJFrame
* @run main/manual MultiItemSelected_DragOut
*/
import java.awt.Choice;
import java.awt.FlowLayout;
import java.awt.Frame;
import java.lang.reflect.InvocationTargetException;
public class MultiItemSelected_DragOut extends Frame {
static final String INSTRUCTIONS = """
1) Open Choice.
2) Start drag from first item to second or third one.
3) Without releasing left mouse button
press and release right mouse button.
4) Release left mouse button.
5) Open choice again.
6) If there is only one selection cursor
in the dropdown list press Pass otherwise press Fail.
""";
public MultiItemSelected_DragOut() {
Choice choice = new Choice();
for (int i = 1; i < 10; i++) {
choice.add("item " + i);
}
add(choice);
choice.addItemListener(ie -> System.out.println(ie));
setLayout(new FlowLayout());
setSize(200, 200);
validate();
}
public static void main(String[] args) throws InterruptedException,
InvocationTargetException {
PassFailJFrame.builder()
.title("MultiItemSelected Drag Out Test")
.testUI(MultiItemSelected_DragOut::new)
.instructions(INSTRUCTIONS)
.columns(40)
.build()
.awaitAndCheck();
}
}