|
| 1 | +/* |
| 2 | + * Copyright (c) 1999, 2024, Oracle and/or its affiliates. All rights reserved. |
| 3 | + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
| 4 | + * |
| 5 | + * This code is free software; you can redistribute it and/or modify it |
| 6 | + * under the terms of the GNU General Public License version 2 only, as |
| 7 | + * published by the Free Software Foundation. |
| 8 | + * |
| 9 | + * This code is distributed in the hope that it will be useful, but WITHOUT |
| 10 | + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
| 12 | + * version 2 for more details (a copy is included in the LICENSE file that |
| 13 | + * accompanied this code). |
| 14 | + * |
| 15 | + * You should have received a copy of the GNU General Public License version |
| 16 | + * 2 along with this work; if not, write to the Free Software Foundation, |
| 17 | + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
| 18 | + * |
| 19 | + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
| 20 | + * or visit www.oracle.com if you need additional information or have any |
| 21 | + * questions. |
| 22 | + */ |
| 23 | + |
| 24 | +import java.awt.Choice; |
| 25 | +import java.awt.Color; |
| 26 | +import java.awt.EventQueue; |
| 27 | +import java.awt.Frame; |
| 28 | +import java.awt.Insets; |
| 29 | +import java.awt.Point; |
| 30 | +import java.awt.Rectangle; |
| 31 | +import java.awt.Robot; |
| 32 | +import java.awt.image.BufferedImage; |
| 33 | +import java.io.File; |
| 34 | +import java.io.IOException; |
| 35 | +import javax.imageio.ImageIO; |
| 36 | + |
| 37 | +/* |
| 38 | + * @test |
| 39 | + * @bug 4075194 |
| 40 | + * @summary 4075194, Choice may not be displayed at the location requested |
| 41 | + * @key headful |
| 42 | + */ |
| 43 | + |
| 44 | +public class ChoicePosTest { |
| 45 | + |
| 46 | + private static Robot robot; |
| 47 | + private static Frame frame; |
| 48 | + private static final int GAP = 10; |
| 49 | + private static volatile Choice c1,c2; |
| 50 | + |
| 51 | + public static void main(String[] args) throws Exception { |
| 52 | + try { |
| 53 | + EventQueue.invokeAndWait(ChoicePosTest::createAndShowGUI); |
| 54 | + |
| 55 | + robot = new Robot(); |
| 56 | + robot.waitForIdle(); |
| 57 | + robot.delay(500); |
| 58 | + |
| 59 | + captureAndTestChoices(); |
| 60 | + } finally { |
| 61 | + EventQueue.invokeAndWait(frame::dispose); |
| 62 | + } |
| 63 | + |
| 64 | + System.out.println("Passed"); |
| 65 | + } |
| 66 | + |
| 67 | + private static void createAndShowGUI() { |
| 68 | + frame = new Frame("ChoicePosTest"); |
| 69 | + Insets insets = frame.getInsets(); |
| 70 | + frame.setSize( insets.left + 400 + insets.right, insets.top + 400 + insets.bottom ); |
| 71 | + frame.setBackground(Color.RED); |
| 72 | + frame.setLayout(null); |
| 73 | + frame.setLocationRelativeTo(null); |
| 74 | + |
| 75 | + c1 = new Choice(); |
| 76 | + c1.setBackground(Color.GREEN); |
| 77 | + frame.add( c1 ); |
| 78 | + c1.setBounds( 20, 50, 100, 100 ); |
| 79 | + |
| 80 | + c2 = new Choice(); |
| 81 | + c2.setBackground(Color.GREEN); |
| 82 | + frame.add(c2); |
| 83 | + c2.addItem("One"); |
| 84 | + c2.addItem("Two"); |
| 85 | + c2.addItem("Three"); |
| 86 | + c2.setBounds( 125, 50, 100, 100 ); |
| 87 | + |
| 88 | + frame.validate(); |
| 89 | + frame.setVisible(true); |
| 90 | + } |
| 91 | + |
| 92 | + private static void captureAndTestChoices() { |
| 93 | + Point c1loc = c1.getLocationOnScreen(); |
| 94 | + Point c2loc = c2.getLocationOnScreen(); |
| 95 | + |
| 96 | + int startX = c1loc.x - GAP; |
| 97 | + int startY = c1loc.y - GAP; |
| 98 | + int captureWidth = c2loc.x + c2.getWidth() + GAP - startX; |
| 99 | + int captureHeight = c2loc.y + c2.getHeight() + GAP - startY; |
| 100 | + |
| 101 | + BufferedImage bi = robot.createScreenCapture( |
| 102 | + new Rectangle(startX, startY, captureWidth, captureHeight) |
| 103 | + ); |
| 104 | + |
| 105 | + int redPix = Color.RED.getRGB(); |
| 106 | + |
| 107 | + int lastNonRedCount = 0; |
| 108 | + |
| 109 | + for (int y = 0; y < captureHeight; y++) { |
| 110 | + int nonRedCount = 0; |
| 111 | + for (int x = 0; x < captureWidth; x++) { |
| 112 | + int pix = bi.getRGB(x, y); |
| 113 | + if (pix != redPix) { |
| 114 | + nonRedCount++; |
| 115 | + } |
| 116 | + } |
| 117 | + |
| 118 | + if (nonRedCount > 0 && lastNonRedCount > 0) { |
| 119 | + if (lastNonRedCount - nonRedCount > 0) { |
| 120 | + System.err.printf( |
| 121 | + "Failed at %d, nonRedCount: %d lastNonRedCount: %d\n", |
| 122 | + y, nonRedCount, lastNonRedCount |
| 123 | + ); |
| 124 | + |
| 125 | + try { |
| 126 | + ImageIO.write(bi, "png", new File("choices.png")); |
| 127 | + } catch (IOException ignored) { |
| 128 | + } |
| 129 | + |
| 130 | + throw new RuntimeException("Choices are not aligned"); |
| 131 | + } |
| 132 | + } |
| 133 | + |
| 134 | + lastNonRedCount = nonRedCount; |
| 135 | + } |
| 136 | + } |
| 137 | +} |
1 commit comments
openjdk-notifier[bot] commentedon Mar 20, 2025
Review
Issues