23
23
24
24
import java .awt .Color ;
25
25
import java .awt .Component ;
26
- import java .awt .Dimension ;
27
26
import java .awt .Graphics ;
28
27
import java .awt .image .BufferedImage ;
29
28
import java .io .File ;
30
29
import javax .imageio .ImageIO ;
31
30
import javax .swing .Icon ;
32
31
import javax .swing .JCheckBox ;
32
+ import javax .swing .UIManager ;
33
+ import javax .swing .UnsupportedLookAndFeelException ;
33
34
34
35
/*
35
36
* @test
43
44
44
45
public class ImageCheckboxTest {
45
46
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
+ }
47
68
}
48
69
49
- public void performTest () throws Exception {
70
+ public boolean performTest (UIManager . LookAndFeelInfo laf ) throws Exception {
50
71
BufferedImage imageNoFocus = new BufferedImage (100 , 50 ,
51
72
BufferedImage .TYPE_INT_ARGB );
52
73
BufferedImage imageFocus = new BufferedImage (100 , 50 ,
53
74
BufferedImage .TYPE_INT_ARGB );
54
75
BufferedImage imageFocusNotPainted = new BufferedImage (100 , 50 ,
55
76
BufferedImage .TYPE_INT_ARGB );
77
+ boolean success = true ;
56
78
57
-
79
+ try {
80
+ UIManager .setLookAndFeel (laf .getClassName ());
81
+ } catch (UnsupportedLookAndFeelException ulaf ) {
82
+ return true ;
83
+ }
58
84
CustomCheckBox checkbox = new CustomCheckBox ("Test" , new MyIcon (Color .GREEN ));
59
85
checkbox .setFocusPainted (true );
60
86
checkbox .setSize (100 , 50 );
@@ -64,21 +90,32 @@ public void performTest() throws Exception {
64
90
checkbox .paint (imageFocus .createGraphics ());
65
91
66
92
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 ;
70
101
}
71
102
72
103
checkbox .setFocusPainted (false );
73
104
checkbox .paint (imageFocusNotPainted .createGraphics ());
74
105
75
106
if (!Util .compareBufferedImages (imageFocusNotPainted , imageNoFocus )) {
107
+ File folder = new File (laf .getName ());
108
+ if (!folder .exists ()) {
109
+ folder .mkdir ();
110
+ }
76
111
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 ;
81
117
}
118
+ return success ;
82
119
}
83
120
84
121
class MyIcon implements Icon {
0 commit comments