Skip to content

Commit eb60822

Browse files
author
Abhishek Kumar
committedApr 19, 2024
8310072: JComboBox/DisabledComboBoxFontTestAuto: Enabled and disabled ComboBox does not match in these LAFs: GTK+
Reviewed-by: dnguyen, jdv, tr, serb
1 parent 85261bc commit eb60822

File tree

1 file changed

+33
-47
lines changed

1 file changed

+33
-47
lines changed
 

‎test/jdk/javax/swing/JComboBox/DisabledComboBoxFontTestAuto.java

+33-47
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -21,13 +21,6 @@
2121
* questions.
2222
*/
2323

24-
/*
25-
* @test
26-
* @bug 7093691
27-
* @summary Tests if JComboBox has correct font color when disabled/enabled
28-
* @run main/othervm -Dsun.java2d.uiScale=1 DisabledComboBoxFontTestAuto
29-
*/
30-
3124
import java.awt.Color;
3225
import java.awt.Graphics2D;
3326
import java.awt.image.BufferedImage;
@@ -44,20 +37,29 @@
4437

4538
import static java.awt.image.BufferedImage.TYPE_INT_ARGB;
4639

40+
/*
41+
* @test
42+
* @bug 7093691 8310072
43+
* @summary Tests if JComboBox has correct font color when disabled/enabled
44+
* @key headful
45+
* @run main/othervm -Dsun.java2d.uiScale=1 DisabledComboBoxFontTestAuto
46+
*/
47+
4748
public class DisabledComboBoxFontTestAuto {
4849
private static JComboBox combo, combo2;
4950
private static BufferedImage enabledImage, disabledImage, enabledImage2, disabledImage2;
50-
private static Path testDir;
5151
private static String lafName;
5252
private static StringBuffer failingLafs;
5353
private static int COMBO_HEIGHT, COMBO_WIDTH, COMBO2_HEIGHT, COMBO2_WIDTH;
5454

5555
private static void createCombo() {
5656
combo = new JComboBox();
57-
combo.addItem("Simple JComboBox");
57+
combo.addItem("\u2588".repeat(5));
58+
combo.setFont(combo.getFont().deriveFont(50.0f));
5859
combo.setRenderer(new DefaultListCellRenderer());
5960
combo2 = new JComboBox();
60-
combo2.addItem("Simple JComboBox");
61+
combo2.addItem("\u2588".repeat(5));
62+
combo2.setFont(combo2.getFont().deriveFont(50.0f));
6163
COMBO_WIDTH = (int) combo.getPreferredSize().getWidth();
6264
COMBO_HEIGHT = (int) combo.getPreferredSize().getHeight();
6365
COMBO2_WIDTH = (int) combo2.getPreferredSize().getWidth();
@@ -90,53 +92,38 @@ private static void paintCombo() {
9092
}
9193

9294
private static void testMethod() throws IOException {
93-
ImageIO.write(enabledImage, "png", new File(testDir
94-
+ "/" + lafName + "Enabled.png"));
95-
ImageIO.write(disabledImage, "png", new File(testDir
96-
+ "/" + lafName + "Disabled.png"));
97-
ImageIO.write(enabledImage2, "png", new File(testDir
98-
+ "/" + lafName + "EnabledDLCR.png"));
99-
ImageIO.write(disabledImage2, "png", new File(testDir
100-
+ "/" + lafName + "DisabledDLCR.png"));
101-
102-
boolean isIdentical = true;
10395
Color eColor1, eColor2, dColor1, dColor2;
96+
Path testDir = Path.of(System.getProperty("test.classes", "."));
10497

10598
// Use center line to compare RGB values
106-
int y = 10;
99+
int y = enabledImage.getHeight() / 2;
107100
for (int x = (enabledImage.getWidth() / 2) - 20;
108101
x < (enabledImage.getWidth() / 2) + 20; x++) {
109-
// Nimbus has a pixel offset in coordinates since Nimbus is 2px
110-
// smaller in width than other L&F's
111-
if (lafName.equals("Nimbus")) {
112-
eColor1 = new Color(enabledImage.getRGB(x + 1, y));
113-
eColor2 = new Color(enabledImage2.getRGB(x, y));
114-
dColor1 = new Color(disabledImage.getRGB(x + 1, y));
115-
dColor2 = new Color(disabledImage2.getRGB(x, y));
116-
} else {
117-
eColor1 = new Color(enabledImage.getRGB(x, y));
118-
eColor2 = new Color(enabledImage2.getRGB(x, y));
119-
dColor1 = new Color(disabledImage.getRGB(x, y));
120-
dColor2 = new Color(disabledImage2.getRGB(x, y));
121-
}
102+
eColor1 = new Color(enabledImage.getRGB(x, y));
103+
eColor2 = new Color(enabledImage2.getRGB(x, y));
104+
dColor1 = new Color(disabledImage.getRGB(x, y));
105+
dColor2 = new Color(disabledImage2.getRGB(x, y));
106+
122107
if ((!isColorMatching(eColor1, eColor2)) || (!isColorMatching(dColor1, dColor2))) {
123-
isIdentical = false;
124-
break;
108+
failingLafs.append(lafName + ", ");
109+
ImageIO.write(enabledImage, "png", new File(testDir
110+
+ "/" + lafName + "Enabled.png"));
111+
ImageIO.write(disabledImage, "png", new File(testDir
112+
+ "/" + lafName + "Disabled.png"));
113+
ImageIO.write(enabledImage2, "png", new File(testDir
114+
+ "/" + lafName + "EnabledDLCR.png"));
115+
ImageIO.write(disabledImage2, "png", new File(testDir
116+
+ "/" + lafName + "DisabledDLCR.png"));
117+
return;
125118
}
126119
}
127-
128-
if (isIdentical) {
129-
System.out.println("PASSED");
130-
} else {
131-
failingLafs.append(lafName + ", ");
132-
}
120+
System.out.println("Test Passed: " + lafName);
133121
}
134122

135123
private static boolean isColorMatching(Color c1, Color c2) {
136124
if ((c1.getRed() != c2.getRed())
137-
|| (c1.getBlue() != c2.getBlue())
138-
|| (c1.getGreen() != c2.getGreen())) {
139-
125+
|| (c1.getBlue() != c2.getBlue())
126+
|| (c1.getGreen() != c2.getGreen())) {
140127
System.out.println(lafName + " Enabled RGB failure: "
141128
+ c1.getRed() + ", "
142129
+ c1.getBlue() + ", "
@@ -163,7 +150,6 @@ private static void setLookAndFeel(UIManager.LookAndFeelInfo laf) {
163150
public static void main(String[] args) throws Exception {
164151
lafName = "null";
165152
failingLafs = new StringBuffer();
166-
testDir = Path.of(System.getProperty("test.classes", "."));
167153
for (UIManager.LookAndFeelInfo laf : UIManager.getInstalledLookAndFeels()) {
168154
// Change Motif LAF name to avoid using slash in saved image file path
169155
lafName = laf.getName().equals("CDE/Motif") ? "Motif" : laf.getName();

5 commit comments

Comments
 (5)

openjdk-notifier[bot] commented on Apr 19, 2024

@openjdk-notifier[bot]

mrserb commented on May 30, 2024

@mrserb
Member

/backport jdk22u

mrserb commented on May 30, 2024

@mrserb
Member

/backport jdk21u-dev

openjdk[bot] commented on May 30, 2024

@openjdk[bot]

@mrserb the backport was successfully created on the branch backport-mrserb-eb60822a in my personal fork of openjdk/jdk21u-dev. To create a pull request with this backport targeting openjdk/jdk21u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit eb60822a from the openjdk/jdk repository.

The commit being backported was authored by Abhishek Kumar on 19 Apr 2024 and was reviewed by Damon Nguyen, Jayathirth D V, Tejesh R and Sergey Bylokhov.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk21u-dev:

$ git fetch https://github.com/openjdk-bots/jdk21u-dev.git backport-mrserb-eb60822a:backport-mrserb-eb60822a
$ git checkout backport-mrserb-eb60822a
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk21u-dev.git backport-mrserb-eb60822a

openjdk[bot] commented on May 30, 2024

@openjdk[bot]

@mrserb the backport was successfully created on the branch backport-mrserb-eb60822a in my personal fork of openjdk/jdk22u. To create a pull request with this backport targeting openjdk/jdk22u:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit eb60822a from the openjdk/jdk repository.

The commit being backported was authored by Abhishek Kumar on 19 Apr 2024 and was reviewed by Damon Nguyen, Jayathirth D V, Tejesh R and Sergey Bylokhov.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk22u:

$ git fetch https://github.com/openjdk-bots/jdk22u.git backport-mrserb-eb60822a:backport-mrserb-eb60822a
$ git checkout backport-mrserb-eb60822a
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk22u.git backport-mrserb-eb60822a

⚠️ @mrserb You are not yet a collaborator in my fork openjdk-bots/jdk22u. An invite will be sent out and you need to accept it before you can proceed.

Please sign in to comment.