jdk/test/java/awt/Window/ShapedAndTranslucentWindows/Translucent.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
 * @test
39056
d99e63b6d962 8159690: [TESTBUG] Mark headful tests with @key headful.
goetz
parents: 25559
diff changeset
    28
 * @key headful
25108
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    29
 * @summary Check if translucent window is dragged and resized
25559
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    30
 *          correctly.
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    31
 *
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    32
 * Test Description: Check if TRANSLUCENT translucency type is supported
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    33
 *      on the current platform. Proceed if they are supported. Create
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    34
 *      a window and apply opacity of 0.3. Drag and resize the window
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    35
 *      using AWT Robot and verify that translucency is not affected.
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    36
 *      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
    37
 *      for Window, Dialog, Frame.
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    38
 * Expected Result: If TRANSLUCENT translucency type is supported, the
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    39
 *      window should show the background. Dragging and resizing
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    40
 *      shouldn't affect the translucency.
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    41
 *
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    42
 * @author mrkam
25108
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    43
 * @author Dmitriy Ermashov (dmitriy.ermashov@oracle.com)
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    44
 * @library ../../../../lib/testlibrary
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    45
 * @build Common ExtendedRobot
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    46
 * @run main Translucent
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    47
 */
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    48
public class Translucent extends Common {
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    49
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    50
    public static void main(String[] args) throws Exception {
25559
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    51
        if (checkTranslucencyMode(GraphicsDevice.WindowTranslucency.TRANSLUCENT))
25108
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    52
            for (Class<Window> windowClass: WINDOWS_TO_TEST){
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    53
                new Translucent(windowClass).doTest();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    54
            }
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    55
    }
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    56
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    57
    public Translucent(Class windowClass) throws Exception{
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    58
        super(windowClass, 0.3f);
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
25559
a101ec6ccfd3 8043131: Move ShapedAndTranslucentWindows and GC functional AWT tests to regression tree
yan
parents: 25108
diff changeset
    61
    @Override
25108
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    62
    public void applyShape(){ }
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    63
25559
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 doTest() throws Exception{
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    66
        super.doTest();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    67
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    68
        checkTranslucentShape();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    69
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    70
        // Drag
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    71
        Point location = window.getLocationOnScreen();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    72
        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
    73
        robot.waitForIdle(delay);
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    74
        checkTranslucentShape();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    75
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    76
        // Resize
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    77
        location = window.getLocationOnScreen();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    78
        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
    79
        robot.waitForIdle(delay);
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    80
        checkTranslucentShape();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    81
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    82
        dispose();
cbf21a81a738 8041915: Move 8 awt tests to OpenJDK regression tests tree
yan
parents:
diff changeset
    83
        robot.waitForIdle(delay);
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
}