Skip to content

Commit aa918a6

Browse files
author
Alexander Zuev
committedFeb 12, 2022
8281033: Improve ImageCheckboxTest to test all available LaF
Reviewed-by: serb
1 parent 6fdfe04 commit aa918a6

File tree

1 file changed

+48
-11
lines changed

1 file changed

+48
-11
lines changed
 

‎test/jdk/javax/swing/JCheckBox/ImageCheckboxFocus/ImageCheckboxTest.java

+48-11
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323

2424
import java.awt.Color;
2525
import java.awt.Component;
26-
import java.awt.Dimension;
2726
import java.awt.Graphics;
2827
import java.awt.image.BufferedImage;
2928
import java.io.File;
3029
import javax.imageio.ImageIO;
3130
import javax.swing.Icon;
3231
import javax.swing.JCheckBox;
32+
import javax.swing.UIManager;
33+
import javax.swing.UnsupportedLookAndFeelException;
3334

3435
/*
3536
* @test
@@ -43,18 +44,43 @@
4344

4445
public class ImageCheckboxTest {
4546
public static void main(String[] args) throws Exception {
46-
new ImageCheckboxTest().performTest();
47+
ImageCheckboxTest test = new ImageCheckboxTest();
48+
boolean passed = true;
49+
// There are bugs found in various LaFs that needs to be fixed
50+
// to enable testing there
51+
String[] skip = {
52+
"GTK+", // JDK-8281580
53+
"Nimbus" // JDK-8281581
54+
};
55+
testloop:
56+
for (UIManager.LookAndFeelInfo laf : UIManager.getInstalledLookAndFeels()) {
57+
for (String s : skip) {
58+
if (s.equals(laf.getName())) {
59+
continue testloop;
60+
}
61+
}
62+
passed = passed && test.performTest(laf);
63+
}
64+
65+
if(!passed) {
66+
throw new RuntimeException("Test failed");
67+
}
4768
}
4869

49-
public void performTest() throws Exception {
70+
public boolean performTest(UIManager.LookAndFeelInfo laf) throws Exception {
5071
BufferedImage imageNoFocus = new BufferedImage(100, 50,
5172
BufferedImage.TYPE_INT_ARGB);
5273
BufferedImage imageFocus = new BufferedImage(100, 50,
5374
BufferedImage.TYPE_INT_ARGB);
5475
BufferedImage imageFocusNotPainted = new BufferedImage(100, 50,
5576
BufferedImage.TYPE_INT_ARGB);
77+
boolean success = true;
5678

57-
79+
try {
80+
UIManager.setLookAndFeel(laf.getClassName());
81+
} catch (UnsupportedLookAndFeelException ulaf) {
82+
return true;
83+
}
5884
CustomCheckBox checkbox = new CustomCheckBox("Test", new MyIcon(Color.GREEN));
5985
checkbox.setFocusPainted(true);
6086
checkbox.setSize(100, 50);
@@ -64,21 +90,32 @@ public void performTest() throws Exception {
6490
checkbox.paint(imageFocus.createGraphics());
6591

6692
if (Util.compareBufferedImages(imageFocus, imageNoFocus)) {
67-
ImageIO.write(imageFocus, "png", new File("imageFocus.png"));
68-
ImageIO.write(imageNoFocus, "png", new File("imageNoFocus.png"));
69-
throw new Exception("Changing focus is not visualized");
93+
File folder = new File(laf.getName());
94+
if (!folder.exists()) {
95+
folder.mkdir();
96+
}
97+
ImageIO.write(imageFocus, "png", new File(folder, "/imageFocus.png"));
98+
ImageIO.write(imageNoFocus, "png", new File(folder, "/imageNoFocus.png"));
99+
System.err.println(laf.getName() + ": Changing of focus is not visualized");
100+
success = false;
70101
}
71102

72103
checkbox.setFocusPainted(false);
73104
checkbox.paint(imageFocusNotPainted.createGraphics());
74105

75106
if (!Util.compareBufferedImages(imageFocusNotPainted, imageNoFocus)) {
107+
File folder = new File(laf.getName());
108+
if (!folder.exists()) {
109+
folder.mkdir();
110+
}
76111
ImageIO.write(imageFocusNotPainted, "png",
77-
new File("imageFocusNotPainted.png"));
78-
ImageIO.write(imageFocus, "png", new File("imageFocus.png"));
79-
ImageIO.write(imageNoFocus, "png", new File("imageNoFocus.png"));
80-
throw new Exception("setFocusPainted(false) is ignored");
112+
new File(folder,"imageFocusNotPainted.png"));
113+
ImageIO.write(imageFocus, "png", new File(folder, "imageFocus.png"));
114+
ImageIO.write(imageNoFocus, "png", new File(folder, "imageNoFocus.png"));
115+
System.err.println(laf.getName() + ": setFocusPainted(false) is ignored");
116+
success = false;
81117
}
118+
return success;
82119
}
83120

84121
class MyIcon implements Icon {

0 commit comments

Comments
 (0)
Please sign in to comment.