langtools/test/com/sun/javadoc/testUseOption/TestUseOption.java
author duke
Sat, 01 Dec 2007 00:00:00 +0000
changeset 10 06bc494ca11e
child 5520 86e4b9a9da40
permissions -rw-r--r--
Initial load
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
     2
 * Copyright 2002-2004 Sun Microsystems, Inc.  All Rights Reserved.
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
06bc494ca11e Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
06bc494ca11e Initial load
duke
parents:
diff changeset
    21
 * have any questions.
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
 * @bug 4496290 4985072
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary A simple test to determine if -use works.
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 * @author jamieh
06bc494ca11e Initial load
duke
parents:
diff changeset
    29
 * @library ../lib/
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 * @build JavadocTester
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
 * @build TestUseOption
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 * @run main TestUseOption
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
06bc494ca11e Initial load
duke
parents:
diff changeset
    35
public class TestUseOption extends JavadocTester {
06bc494ca11e Initial load
duke
parents:
diff changeset
    36
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
    private static final String BUG_ID = "4496290-4985072";
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
    //Input for string search tests.
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
    private static final String[] TEST2 = {
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
        "Field in C1.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
        "Field in C2.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
        "Field in C4.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
        "Field in C5.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    45
        "Field in C6.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    46
        "Field in C7.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
        "Field in C8.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
        "Method in C1.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
        "Method in C2.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
        "Method in C4.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
        "Method in C5.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
        "Method in C6.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
        "Method in C7.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
        "Method in C8.",
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
06bc494ca11e Initial load
duke
parents:
diff changeset
    57
    private static final String[] ARGS = new String[] {
06bc494ca11e Initial load
duke
parents:
diff changeset
    58
        "-d", BUG_ID, "-sourcepath", SRC_DIR, "-use", "pkg1", "pkg2"
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
    60
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
    private static final String[] ARGS2 = new String[] {
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
        "-d", BUG_ID+"-2", "-sourcepath", SRC_DIR, "-use", "pkg1", "pkg2"
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
    };
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    66
     * The entry point of the test.
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
     * @param args the array of command line arguments.
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
    public static void main(String[] args) throws Exception {
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
        String[][] tests = new String[11][2];
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
        //Eight tests for class use.
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
        for (int i = 0; i < 8; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
            tests[i][0] = BUG_ID + FS + "pkg1" + FS + "class-use" + FS + "C1.html";
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
            tests[i][1] = "Test " + (i + 1) + " passes";
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
        //Three more tests for package use.
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
        for (int i = 8, j = 1; i < tests.length; i++, j++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
            tests[i][0] = BUG_ID + FS + "pkg1" + FS + "package-use.html";
06bc494ca11e Initial load
duke
parents:
diff changeset
    79
            tests[i][1] = "Test " + j + " passes";
06bc494ca11e Initial load
duke
parents:
diff changeset
    80
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    81
        TestUseOption tester = new TestUseOption();
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
        run(tester, ARGS, tests, NO_TEST);
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
        tester.printSummary();
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
        run(tester, ARGS2, NO_TEST, NO_TEST);
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
        String usePageContents = tester.readFileToString(BUG_ID +"-2" + FS + "pkg1" + FS + "class-use" + FS + "UsedClass.html");
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
        int prevIndex = -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
        int currentIndex = -1;
06bc494ca11e Initial load
duke
parents:
diff changeset
    88
        for (int i = 0; i < TEST2.length; i++) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
            currentIndex = usePageContents.indexOf(TEST2[i]);
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
            System.err.println(TEST2[i] + " at index " + currentIndex);
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
            if (currentIndex < prevIndex)
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
                throw new Exception(TEST2[i] + " is in the wrong order.");
06bc494ca11e Initial load
duke
parents:
diff changeset
    93
            prevIndex = currentIndex;
06bc494ca11e Initial load
duke
parents:
diff changeset
    94
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    95
        tester.printSummary();
06bc494ca11e Initial load
duke
parents:
diff changeset
    96
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    97
06bc494ca11e Initial load
duke
parents:
diff changeset
    98
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
    99
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   100
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   101
    public String getBugId() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   102
        return BUG_ID;
06bc494ca11e Initial load
duke
parents:
diff changeset
   103
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   104
06bc494ca11e Initial load
duke
parents:
diff changeset
   105
    /**
06bc494ca11e Initial load
duke
parents:
diff changeset
   106
     * {@inheritDoc}
06bc494ca11e Initial load
duke
parents:
diff changeset
   107
     */
06bc494ca11e Initial load
duke
parents:
diff changeset
   108
    public String getBugName() {
06bc494ca11e Initial load
duke
parents:
diff changeset
   109
        return getClass().getName();
06bc494ca11e Initial load
duke
parents:
diff changeset
   110
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
   111
}