1 /*
   2  * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 
  25 import java.awt.Color;
  26 import java.awt.Dimension;
  27 import java.awt.GridLayout;
  28 import java.awt.Point;
  29 import java.awt.Robot;
  30 import java.awt.event.ActionEvent;
  31 import java.awt.event.ActionListener;
  32 import java.awt.event.InputEvent;
  33 import javax.swing.JButton;
  34 import javax.swing.JFrame;
  35 import javax.swing.JPanel;
  36 import javax.swing.JScrollPane;
  37 import javax.swing.JSplitPane;
  38 import javax.swing.SwingUtilities;
  39 
  40 /**
  41  * AWT/Swing overlapping test for {@link javax.swing.JSplitPane } component.
  42  * <p>This test creates puts heavyweight and lightweight components into different panels and test if splitter image and components itself are drawn correctly.
  43  * <p>See base class for test info.
  44  */
  45 /*
  46 @test
  47 @bug 6986109
  48 @summary Overlapping test for javax.swing.JSplitPane
  49 @author sergey.grinev@oracle.com: area=awt.mixing
  50 @run main JSplitPaneOverlapping
  51  */
  52 public class JSplitPaneOverlapping extends OverlappingTestBase {
  53 
  54     private boolean clicked = false;
  55     private Point splitterLoc;
  56     private JScrollPane sp1;
  57     private JScrollPane sp2;
  58 
  59     protected void prepareControls() {
  60         JFrame frame = new JFrame("SplitPane Mixing");
  61         JPanel p = new JPanel(new GridLayout());
  62         p.setPreferredSize(new Dimension(500, 500));
  63         propagateAWTControls(p);
  64         sp1 = new JScrollPane(p);
  65 
  66         JButton button = new JButton("JButton");
  67         button.setBackground(Color.RED);
  68         button.addActionListener(new ActionListener() {
  69 
  70             public void actionPerformed(ActionEvent e) {
  71                 clicked = true;
  72             }
  73         });
  74         sp2 = new JScrollPane(button);
  75 
  76         JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, sp1, sp2);
  77         splitPane.setOneTouchExpandable(false);
  78         splitPane.setDividerLocation(150);
  79 
  80         splitPane.setPreferredSize(new Dimension(400, 200));
  81 
  82         frame.getContentPane().add(splitPane);
  83         frame.pack();
  84         frame.setVisible(true);
  85     }
  86 
  87     private static final boolean ignoreFail = false;
  88 
  89     @Override
  90     protected boolean performTest() {
  91         try {
  92             SwingUtilities.invokeAndWait(new Runnable() {
  93                 public void run() {
  94                     splitterLoc = sp2.getLocationOnScreen();
  95                     Point leftLoc = sp1.getLocationOnScreen();
  96                     leftLoc.translate(sp1.getWidth(), 0);
  97                     splitterLoc.translate(-(splitterLoc.x - leftLoc.x) / 2, 30);
  98                 }
  99             });
 100         } catch (Exception e) {
 101             e.printStackTrace();
 102             System.exit(1);
 103         }
 104         // run robot
 105         Robot robot = Util.createRobot();
 106         robot.setAutoDelay(ROBOT_DELAY);
 107 
 108         robot.mouseMove(splitterLoc.x, splitterLoc.y);
 109         Util.waitForIdle(robot);
 110 
 111         robot.mousePress(InputEvent.BUTTON1_MASK);
 112         robot.mouseMove(splitterLoc.x - 50, splitterLoc.y);
 113         Color c = robot.getPixelColor(splitterLoc.x - 50, splitterLoc.y);
 114         System.out.println("Actual: "+c+", (not) expected: "+AWT_VERIFY_COLOR+" at "+(splitterLoc.x - 50)+", "+ splitterLoc.y);
 115         if (!ignoreFail && c.equals(AWT_VERIFY_COLOR)) {
 116             fail("The JSplitPane drag-n-drop image did not pass pixel color check and is overlapped");
 117         }
 118         robot.mouseRelease(InputEvent.BUTTON1_MASK);
 119 
 120         clickAndBlink(robot, splitterLoc);
 121 
 122         return clicked;
 123     }
 124 
 125     // this strange plumbing stuff is required due to "Standard Test Machinery" in base class
 126     public static void main(String args[]) throws InterruptedException {
 127         instance = new JSplitPaneOverlapping();
 128         OverlappingTestBase.doMain(args);
 129     }
 130 }