jdk/test/java/awt/TextArea/TextAreaTwicePack/TextAreaTwicePack.java
author serb
Mon, 24 Sep 2012 21:33:41 +0400
changeset 13993 8b3fe3d8badb
child 21596 0e3a39f29dbc
permissions -rw-r--r--
7160627: [macosx] TextArea has wrong initial size 7124213: [macosx] pack() does ignore size of a component; doesn't on the other platforms Reviewed-by: anthony, art
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13993
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     1
/*
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     2
 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
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
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    10
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    11
 * 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
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    14
 * 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
    15
 * accompanied this code).
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    16
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    17
 * 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
    18
 * 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
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    20
 *
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    22
 * 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
    23
 * questions.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    24
 */
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    25
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    26
import java.awt.Dimension;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    27
import java.awt.Frame;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    28
import java.awt.TextArea;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    29
import java.awt.Toolkit;
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
import sun.awt.SunToolkit;
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    32
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    33
/**
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    34
 * @test
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    35
 * @bug 7160627
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    36
 * @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
    37
 * twice.
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    38
 * @author Sergey Bylokhov
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    39
 */
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    40
public final class TextAreaTwicePack {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    41
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    42
    public static void main(final String[] args) {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    43
        final Frame frame = new Frame();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    44
        final TextArea ta = new TextArea();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    45
        frame.add(ta);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    46
        frame.pack();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    47
        frame.setVisible(true);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    48
        sleep();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    49
        final Dimension before = frame.getSize();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    50
        frame.pack();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    51
        final Dimension after = frame.getSize();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    52
        if (!after.equals(before)) {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    53
            throw new RuntimeException(
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    54
                    "Expected size: " + before + ", actual size: " + after);
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
        frame.dispose();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    57
    }
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    58
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    59
    private static void sleep() {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    60
        ((SunToolkit) Toolkit.getDefaultToolkit()).realSync();
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    61
        try {
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    62
            Thread.sleep(500L);
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    63
        } catch (InterruptedException ignored) {
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
    }
8b3fe3d8badb 7160627: [macosx] TextArea has wrong initial size
serb
parents:
diff changeset
    66
}