8300405: Screen capture for test JFileChooserSetLocationTest.java, failure case
Reviewed-by: serb
This commit is contained in:
parent
3758487fda
commit
db8fa1be05
@ -23,17 +23,23 @@
|
|||||||
|
|
||||||
import java.awt.Component;
|
import java.awt.Component;
|
||||||
import java.awt.Dimension;
|
import java.awt.Dimension;
|
||||||
|
import java.awt.GraphicsConfiguration;
|
||||||
|
import java.awt.GraphicsEnvironment;
|
||||||
import java.awt.HeadlessException;
|
import java.awt.HeadlessException;
|
||||||
import java.awt.Point;
|
import java.awt.Point;
|
||||||
|
import java.awt.Rectangle;
|
||||||
import java.awt.Robot;
|
import java.awt.Robot;
|
||||||
import java.awt.event.ActionListener;
|
import java.awt.event.ActionListener;
|
||||||
import java.awt.event.InputEvent;
|
import java.awt.event.InputEvent;
|
||||||
import java.awt.event.KeyEvent;
|
import java.awt.event.KeyEvent;
|
||||||
|
import java.awt.image.BufferedImage;
|
||||||
|
import java.io.File;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
import java.util.concurrent.atomic.AtomicReference;
|
import java.util.concurrent.atomic.AtomicReference;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
import javax.imageio.ImageIO;
|
||||||
import javax.swing.JButton;
|
import javax.swing.JButton;
|
||||||
import javax.swing.JDialog;
|
import javax.swing.JDialog;
|
||||||
import javax.swing.JFileChooser;
|
import javax.swing.JFileChooser;
|
||||||
@ -175,12 +181,18 @@ public class JFileChooserSetLocationTest {
|
|||||||
return pt.get();
|
return pt.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void verify(int x1, int x2, int y1, int y2) {
|
public static void verify(int x1, int x2, int y1, int y2) throws Exception {
|
||||||
System.out.println("verify " + x1 + "==" + x2 + "; " + y1 + "==" + y2);
|
System.out.println("verify " + x1 + "==" + x2 + "; " + y1 + "==" + y2);
|
||||||
if ((Math.abs(x1 - x2) < TOLERANCE_LEVEL) &&
|
if ((Math.abs(x1 - x2) < TOLERANCE_LEVEL) &&
|
||||||
(Math.abs(y1 - y2) < TOLERANCE_LEVEL)) {
|
(Math.abs(y1 - y2) < TOLERANCE_LEVEL)) {
|
||||||
System.out.println("Test passed");
|
System.out.println("Test passed");
|
||||||
} else {
|
} else {
|
||||||
|
GraphicsConfiguration gc = GraphicsEnvironment.
|
||||||
|
getLocalGraphicsEnvironment().getDefaultScreenDevice().getDefaultConfiguration();
|
||||||
|
Rectangle gcBounds = gc.getBounds();
|
||||||
|
BufferedImage bufferedImage = robot.createScreenCapture(
|
||||||
|
new Rectangle(gcBounds));
|
||||||
|
ImageIO.write(bufferedImage, "png",new File("FailureImage.png"));
|
||||||
throw new RuntimeException(
|
throw new RuntimeException(
|
||||||
"Test Failed, setLocation() is not working properly");
|
"Test Failed, setLocation() is not working properly");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user