1
1
/*
2
- * Copyright (c) 2010, 2022 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2010, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
21
21
* questions.
22
22
*/
23
23
24
- /*
25
- @test
26
- @key headful
27
- @bug 6988428
28
- @summary Tests whether shape is always set
29
- @author anthony.petrov@oracle.com: area=awt.toplevel
30
- @run main ShapeNotSetSometimes
31
- */
32
24
33
25
34
26
import java .awt .Color ;
27
+ import java .awt .Dimension ;
35
28
import java .awt .EventQueue ;
36
29
import java .awt .Frame ;
37
30
import java .awt .Graphics ;
38
31
import java .awt .Point ;
39
32
import java .awt .Rectangle ;
40
33
import java .awt .Robot ;
34
+ import java .awt .Toolkit ;
41
35
import java .awt .geom .Area ;
42
36
import java .awt .geom .Ellipse2D ;
43
37
import java .awt .geom .Rectangle2D ;
38
+ import java .io .File ;
39
+ import java .io .IOException ;
40
+ import javax .imageio .ImageIO ;
44
41
42
+ /*
43
+ * @test
44
+ * @key headful
45
+ * @bug 6988428
46
+ * @summary Tests whether shape is always set
47
+ * @run main ShapeNotSetSometimes
48
+ */
45
49
46
50
public class ShapeNotSetSometimes {
47
51
48
52
private Frame backgroundFrame ;
49
53
private Frame window ;
50
- private static final Color BACKGROUND_COLOR = Color .GREEN ;
51
- private static final Color SHAPE_COLOR = Color .WHITE ;
54
+
52
55
private Point [] pointsOutsideToCheck ;
53
56
private Point [] shadedPointsToCheck ;
54
57
private Point innerPoint ;
55
-
56
58
private final Rectangle bounds = new Rectangle (220 , 400 , 300 , 300 );
57
59
58
60
private static Robot robot ;
61
+ private static final Color BACKGROUND_COLOR = Color .GREEN ;
62
+ private static final Color SHAPE_COLOR = Color .WHITE ;
59
63
60
64
public ShapeNotSetSometimes () throws Exception {
61
65
EventQueue .invokeAndWait (this ::initializeGUI );
62
66
robot .waitForIdle ();
67
+ robot .delay (1000 );
63
68
}
64
69
65
70
private void initializeGUI () {
@@ -124,7 +129,7 @@ public void paint(Graphics g) {
124
129
public static void main (String [] args ) throws Exception {
125
130
robot = new Robot ();
126
131
127
- for (int i = 0 ; i < 50 ; i ++) {
132
+ for (int i = 1 ; i <= 50 ; i ++) {
128
133
System .out .println ("Attempt " + i );
129
134
new ShapeNotSetSometimes ().doTest ();
130
135
}
@@ -136,7 +141,6 @@ private void doTest() throws Exception {
136
141
137
142
EventQueue .invokeAndWait (window ::toFront );
138
143
robot .waitForIdle ();
139
-
140
144
robot .delay (500 );
141
145
142
146
try {
@@ -173,8 +177,8 @@ private void colorCheck(int x, int y, Color expectedColor, boolean mustBeExpecte
173
177
);
174
178
175
179
if (mustBeExpectedColor != expectedColor .equals (actualColor )) {
180
+ captureScreen ();
176
181
System .out .printf ("window.getX() = %3d, window.getY() = %3d\n " , window .getX (), window .getY ());
177
-
178
182
System .err .printf (
179
183
"Checking for transparency failed: point: %3d, %3d\n \t actual %s\n \t expected %s%s\n " ,
180
184
screenX ,
@@ -185,4 +189,18 @@ private void colorCheck(int x, int y, Color expectedColor, boolean mustBeExpecte
185
189
throw new RuntimeException ("Test failed. The shape has not been applied." );
186
190
}
187
191
}
192
+
193
+ private static void captureScreen () {
194
+ Dimension screenSize = Toolkit .getDefaultToolkit ().getScreenSize ();
195
+ Rectangle screenBounds = new Rectangle (0 , 0 , screenSize .width , screenSize .height );
196
+ try {
197
+ ImageIO .write (
198
+ robot .createScreenCapture (screenBounds ),
199
+ "png" ,
200
+ new File ("Screenshot.png" )
201
+ );
202
+ } catch (IOException e ) {
203
+ e .printStackTrace ();
204
+ }
205
+ }
188
206
}
1 commit comments
openjdk-notifier[bot] commentedon Mar 12, 2024
Review
Issues