jdk/test/java/awt/TextArea/TextAreaTwicePack/TextAreaTwicePack.java
author yan
Mon, 10 Nov 2014 16:23:30 +0300
changeset 27763 1fba965925e8
parent 23010 6dadb192ad81
child 39056 d99e63b6d962
permissions -rw-r--r--
8063102: Change open awt regression tests to avoid sun.awt.SunToolkit.realSync, part 1 Reviewed-by: pchelko, serb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13993
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 21596
diff changeset
     2
 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
13993
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     4
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
21596
0e3a39f29dbc 8027696: Incorrect copyright header in the tests
serb
parents: 13993
diff changeset
     7
 * published by the Free Software Foundation.
13993
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     8
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    13
 * accompanied this code).
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    14
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    18
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    21
 * questions.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    22
 */
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    23
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    24
import java.awt.Dimension;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    25
import java.awt.Frame;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    26
import java.awt.TextArea;
27763
1fba965925e8 8063102: Change open awt regression tests to avoid sun.awt.SunToolkit.realSync, part 1
yan
parents: 23010
diff changeset
    27
import java.awt.Robot;
13993
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    28
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    29
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    30
/**
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    31
 * @test
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    32
 * @bug 7160627
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    33
 * @summary We shouldn't get different frame size when we call Frame.pack()
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    34
 * twice.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    35
 * @author Sergey Bylokhov
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    36
 */
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    37
public final class TextAreaTwicePack {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    38
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    39
    public static void main(final String[] args) {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    40
        final Frame frame = new Frame();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    41
        final TextArea ta = new TextArea();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    42
        frame.add(ta);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    43
        frame.pack();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    44
        frame.setVisible(true);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    45
        sleep();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    46
        final Dimension before = frame.getSize();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    47
        frame.pack();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    48
        final Dimension after = frame.getSize();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    49
        if (!after.equals(before)) {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    50
            throw new RuntimeException(
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    51
                    "Expected size: " + before + ", actual size: " + after);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    52
        }
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    53
        frame.dispose();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    54
    }
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    55
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    56
    private static void sleep() {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    57
        try {
27763
1fba965925e8 8063102: Change open awt regression tests to avoid sun.awt.SunToolkit.realSync, part 1
yan
parents: 23010
diff changeset
    58
            Robot robot = new Robot();
1fba965925e8 8063102: Change open awt regression tests to avoid sun.awt.SunToolkit.realSync, part 1
yan
parents: 23010
diff changeset
    59
            robot.waitForIdle();
13993
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    60
            Thread.sleep(500L);
27763
1fba965925e8 8063102: Change open awt regression tests to avoid sun.awt.SunToolkit.realSync, part 1
yan
parents: 23010
diff changeset
    61
        } catch (Exception ignored) {
1fba965925e8 8063102: Change open awt regression tests to avoid sun.awt.SunToolkit.realSync, part 1
yan
parents: 23010
diff changeset
    62
            ignored.printStackTrace();
13993
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    63
        }
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    64
    }
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    65
}