test/jdk/java/lang/StringBuffer/Exceptions.java
author phh
Sat, 30 Nov 2019 14:33:05 -0800
changeset 59330 5b96c12f909d
parent 47216 71c04702a3d5
permissions -rw-r--r--
8234541: C1 emits an empty message when it inlines successfully Summary: Use "inline" as the message when successfull Reviewed-by: thartmann, mdoerr Contributed-by: navy.xliu@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2002, 2005, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
 * @test
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
 * @bug 4414306 6248507
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * @summary Verify that exceptions are thrown as expected.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
public class Exceptions {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
    private static boolean ok = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
     private static void fail(Throwable ex, String s, Throwable got) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
        ok = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
        System.err.println("expected "
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
                           + ex.getClass().getName() + ": " + ex.getMessage()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
                           + " for " + s
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
                           + " got "
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
                           + got.getClass().getName() + ": " + got.getMessage()
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
                           + " - FAILED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private static void pass(String s) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        System.out.println(s + " -- OK");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private static void tryCatch(String s, Throwable ex, Runnable thunk) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        Throwable t = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
            thunk.run();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        } catch (Throwable x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
//          x.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
            if (ex.getClass().isAssignableFrom(x.getClass()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
                t = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
                x.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        if ((t == null) && (ex != null))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
            fail(ex, s, t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        String msg = (ex == null ? null : ex.getMessage());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        if ((msg != null) && !msg.equals(t.getMessage()))
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            fail(ex, s, t);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            pass(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    public static void main(String [] args) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        System.out.println("StringBuffer()");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        tryCatch("  no args", null, new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                    new StringBuffer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
                }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        System.out.println("StringBuffer(int length)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
        tryCatch("  1", null, new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
                    new StringBuffer(1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        tryCatch("  -1", new NegativeArraySizeException(), new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
                    new StringBuffer(-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
        System.out.println("StringBuffer(String str)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        tryCatch("  null", new NullPointerException(), new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
                    new StringBuffer(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
                }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        tryCatch("  foo", null, new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                    new StringBuffer("foo");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        System.out.println("StringBuffer.replace(int start, int end, String str)");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        tryCatch("  -1, 2, \" \"",
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 5506
diff changeset
    97
                 new StringIndexOutOfBoundsException("start -1, end 2, length 7"),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                 new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                    StringBuffer sb = new StringBuffer("hilbert");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                    sb.replace(-1, 2, " ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        tryCatch("  7, 8, \" \"",
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 5506
diff changeset
   105
                 new StringIndexOutOfBoundsException("start 7, end 6, length 6"),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                 new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                    StringBuffer sb = new StringBuffer("banach");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
                    sb.replace(7, 8, " ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
                }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        tryCatch("  2, 1, \" \"",
33663
2cd62a4bd471 8141132: JEP 254: Compact Strings
thartmann
parents: 5506
diff changeset
   112
                 new StringIndexOutOfBoundsException("start 2, end 1, length 7"),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                 new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                    StringBuffer sb = new StringBuffer("riemann");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                    sb.replace(2, 1, " ");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                }});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        if (!ok)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            throw new RuntimeException("Some tests FAILED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            System.out.println("All tests PASSED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
}