< prev index next >

test/jdk/javax/swing/JFrame/NSTexturedJFrame/NSTexturedJFrame.java

Print this page
rev 51542 : 8210039: move OSInfo to top level testlibrary
Reviewed-by: duke


  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 import java.awt.Rectangle;
  25 import java.awt.Toolkit;
  26 import java.awt.image.BufferedImage;
  27 
  28 import javax.swing.JFrame;
  29 import javax.swing.SwingUtilities;
  30 import jdk.testlibrary.OSInfo;

  31 
  32 /**
  33  * @test
  34  * @key headful
  35  * @bug 7124513
  36  * @summary We should support NSTexturedBackgroundWindowMask style on OSX.
  37  * @author Sergey Bylokhov
  38  * @library ../../../../lib/testlibrary
  39  * @build ExtendedRobot jdk.testlibrary.OSInfo
  40  * @run main NSTexturedJFrame
  41  */
  42 
  43 public final class NSTexturedJFrame {
  44 
  45     private static final String BRUSH = "apple.awt.brushMetalLook";
  46     private static final String STYLE = "Window.style";
  47     private static final BufferedImage[] images = new BufferedImage[3];
  48     private static Rectangle bounds;
  49     private static volatile int step;
  50     private static JFrame frame;
  51     private static ExtendedRobot robot;
  52 
  53     public static void main(final String[] args) throws Exception {
  54         if (OSInfo.getOSType() != OSInfo.OSType.MACOSX) {
  55             System.out.println("This test is for OSX, considered passed.");
  56             return;
  57         }
  58         robot = new ExtendedRobot();
  59         robot.setAutoDelay(50);
  60         // Default window appearance
  61         showFrame();
  62         step++;
  63         // apple.awt.brushMetalLook appearance
  64         showFrame();
  65         step++;
  66         // Window.style appearance
  67         showFrame();
  68 
  69         // images on step 1 and 2 should be same
  70         testImages(images[1], images[2], false);
  71         // images on step 1 and 2 should be different from default
  72         testImages(images[0], images[1], true);
  73         testImages(images[0], images[2], true);
  74     }




  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 import java.awt.Rectangle;
  25 import java.awt.Toolkit;
  26 import java.awt.image.BufferedImage;
  27 
  28 import javax.swing.JFrame;
  29 import javax.swing.SwingUtilities;
  30 
  31 import jdk.test.lib.Platform;
  32 
  33 /**
  34  * @test
  35  * @key headful
  36  * @bug 7124513
  37  * @summary We should support NSTexturedBackgroundWindowMask style on OSX.
  38  * @author Sergey Bylokhov
  39  * @library /test/lib
  40  * @build ExtendedRobot jdk.test.lib.Platform
  41  * @run main NSTexturedJFrame
  42  */
  43 
  44 public final class NSTexturedJFrame {
  45 
  46     private static final String BRUSH = "apple.awt.brushMetalLook";
  47     private static final String STYLE = "Window.style";
  48     private static final BufferedImage[] images = new BufferedImage[3];
  49     private static Rectangle bounds;
  50     private static volatile int step;
  51     private static JFrame frame;
  52     private static ExtendedRobot robot;
  53 
  54     public static void main(final String[] args) throws Exception {
  55         if (!Platform.isOSX()) {
  56             System.out.println("This test is for OSX, considered passed.");
  57             return;
  58         }
  59         robot = new ExtendedRobot();
  60         robot.setAutoDelay(50);
  61         // Default window appearance
  62         showFrame();
  63         step++;
  64         // apple.awt.brushMetalLook appearance
  65         showFrame();
  66         step++;
  67         // Window.style appearance
  68         showFrame();
  69 
  70         // images on step 1 and 2 should be same
  71         testImages(images[1], images[2], false);
  72         // images on step 1 and 2 should be different from default
  73         testImages(images[0], images[1], true);
  74         testImages(images[0], images[2], true);
  75     }


< prev index next >