jdk/test/java/awt/Window/ShapedAndTranslucentWindows/Shaped.java
author goetz
Tue, 14 Jun 2016 10:44:59 +0200
changeset 39056 d99e63b6d962
parent 25559 a101ec6ccfd3
permissions -rw-r--r--
8159690: [TESTBUG] Mark headful tests with @key headful. Reviewed-by: simonis, alexsch
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
25108
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
     1
/*
39056
d99e63b6d962 8159690: [TESTBUG] Mark headful tests with @key headful.
goetz
parents: 25559
diff changeset
     2
 * Copyright (c) 2010, 2016, Oracle and/or its affiliates. All rights reserved.
25108
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
     4
 *
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
     7
 * published by the Free Software Foundation.
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
     8
 *
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    13
 * accompanied this code).
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    14
 *
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    18
 *
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    21
 * questions.
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    22
 */
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    23
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    24
import java.awt.*;
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    25
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    26
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    27
/*
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    28
 * @test
39056
d99e63b6d962 8159690: [TESTBUG] Mark headful tests with @key headful.
goetz
parents: 25559
diff changeset
    29
 * @key headful
25559
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    30
 * @summary Check if dynamically shaped window is dragged and resized
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    31
 *          by mouse correctly
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    32
 *
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    33
 * Test Description: Check if specified translucency types PERPIXEL_TRANSPARENT
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    34
 *      is supported on the current platform. Proceed if it is supported.
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    35
 *      Create a window apply shape in componentResized listener. The shape
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    36
 *      should match the window size. Drag and resize the window using AWT Robot
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    37
 *      and verify that shape is correctly applied both with pixels checking and
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    38
 *      clicks. Make the window appear on top of a known background. Repeat this
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    39
 *      for Window, Dialog, Frame,
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    40
 * Expected Result: If PERPIXEL_TRANSPARENT translucency type is supported,
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    41
 *      the window should appear with the expected shape. Clicks should come
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    42
 *      to visible parts of shaped window only and to background for clipped
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    43
 *      parts.
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    44
 *
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    45
 * @author mrkam
25108
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    46
 * @author Dmitriy Ermashov (dmitriy.ermashov@oracle.com)
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    47
 * @library ../../../../lib/testlibrary
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    48
 * @build Common ExtendedRobot
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    49
 * @run main Shaped
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    50
 */
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    51
public class Shaped extends Common{
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    52
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    53
    public static void main(String[] args) throws Exception {
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    54
        if (checkTranslucencyMode(GraphicsDevice.WindowTranslucency.PERPIXEL_TRANSPARENT))
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    55
            for (Class<Window> windowClass: WINDOWS_TO_TEST){
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    56
                new Shaped(windowClass).doTest();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    57
            }
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    58
    }
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    59
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    60
    public Shaped(Class windowClass) throws Exception{
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    61
        super(windowClass);
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    62
    }
25559
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    63
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    64
    @Override
25108
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    65
    public void applyShape(){ applyDynamicShape(); }
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    66
25559
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    67
    @Override
25108
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    68
    public void doTest() throws Exception{
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    69
        super.doTest();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    70
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    71
        checkDynamicShape();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    72
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    73
        // Drag
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    74
        Point location = window.getLocationOnScreen();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    75
        robot.dragAndDrop(location.x + dl, location.y + 5, location.x + dl + random.nextInt(dl), location.y + random.nextInt(dl));
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    76
        robot.waitForIdle(delay);
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    77
        checkDynamicShape();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    78
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    79
        // Resize
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    80
        location = window.getLocationOnScreen();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    81
        robot.dragAndDrop(location.x + 4, location.y + 4, location.x + random.nextInt(2*dl)-dl, location.y + random.nextInt(2*dl)-dl);
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    82
        robot.waitForIdle(delay);
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    83
        checkDynamicShape();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    84
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    85
        dispose();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    86
    }
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    87
}