test/com/sun/javadoc/testDocFileDir/TestDocFileDir.java

Wed, 31 Oct 2012 13:48:15 -0700

author
jjg
date
Wed, 31 Oct 2012 13:48:15 -0700
changeset 1383
b980e8e6aabf
parent 554
9d9f26857129
child 2036
8df12c315ea3
permissions
-rw-r--r--

8001664: refactor javadoc to use abstraction to handle files
Reviewed-by: darcy

     1 /*
     2  * Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     8  *
     9  * This code is distributed in the hope that it will be useful, but WITHOUT
    10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    12  * version 2 for more details (a copy is included in the LICENSE file that
    13  * accompanied this code).
    14  *
    15  * You should have received a copy of the GNU General Public License version
    16  * 2 along with this work; if not, write to the Free Software Foundation,
    17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    18  *
    19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    20  * or visit www.oracle.com if you need additional information or have any
    21  * questions.
    22  */
    24 import java.io.File;
    26 /*
    27  * @test
    28  * @bug 4258405 4973606
    29  * @summary This test verifies that the doc-file directory does not
    30  *          get overwritten when the sourcepath is equal to the destination
    31  *          directory.
    32  *          Also test that -docfilessubdirs and -excludedocfilessubdir both work.
    33  * @author jamieh
    34  * @library ../lib/
    35  * @build JavadocTester
    36  * @build TestDocFileDir
    37  * @run main TestDocFileDir
    38  */
    40 public class TestDocFileDir extends JavadocTester {
    42     private static final String BUG_ID = "4258405-4973606";
    44     private static final String[][] TEST1 = {
    45         {BUG_ID + "-1" + FS + "pkg" + FS + "doc-files" + FS + "testfile.txt",
    46             "This doc file did not get trashed."}
    47         };
    48     private static final String[][] NEGATED_TEST1 = NO_TEST;
    50     private static final String[][] TEST2 = {
    51         {BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-used1" +
    52             FS + "testfile.txt",
    53             "passed"
    54         },
    55         {BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-used2" +
    56             FS + "testfile.txt",
    57             "passed"
    58         },
    59     };
    60     private static final String[][] NEGATED_TEST2 = {
    61         {BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-excluded1" +
    62             FS + "testfile.txt",
    63             "passed"
    64         },
    65         {BUG_ID + "-2" + FS + "pkg" + FS + "doc-files" + FS + "subdir-excluded2" +
    66             FS + "testfile.txt",
    67             "passed"
    68         },
    69     };
    71     private static final String[][] TEST0 = {
    72         {"pkg" + FS + "doc-files" + FS + "testfile.txt",
    73             "This doc file did not get trashed."}
    74         };
    75     private static final String[][] NEGATED_TEST0 = {};
    77     //Output dir = Input Dir
    78     private static final String[] ARGS1 =
    79         new String[] {
    80             "-d", BUG_ID + "-1",
    81             "-sourcepath",
    82                 "blah" + File.pathSeparator + BUG_ID + "-1" + File.pathSeparator + "blah",
    83             "pkg"};
    85     //Exercising -docfilessubdirs and -excludedocfilessubdir
    86     private static final String[] ARGS2 =
    87         new String[] {
    88             "-d", BUG_ID + "-2",
    89             "-sourcepath", SRC_DIR,
    90             "-docfilessubdirs",
    91             "-excludedocfilessubdir", "subdir-excluded1:subdir-excluded2",
    92             "pkg"};
    94     //Output dir = "", Input dir = ""
    95     private static final String[] ARGS0 =
    96         new String[] {"pkg" + FS + "C.java"};
    99     /**
   100      * The entry point of the test.
   101      * @param args the array of command line arguments.
   102      */
   103     public static void main(String[] args) {
   104         TestDocFileDir tester = new TestDocFileDir();
   105         copyDir(SRC_DIR + FS + "pkg", ".");
   106         run(tester, ARGS0, TEST0, NEGATED_TEST0);
   107         copyDir(SRC_DIR + FS + "pkg", BUG_ID + "-1");
   108         run(tester, ARGS1, TEST1, NEGATED_TEST1);
   109         run(tester, ARGS2, TEST2, NEGATED_TEST2);
   110         tester.printSummary();
   111     }
   113     /**
   114      * {@inheritDoc}
   115      */
   116     public String getBugId() {
   117         return BUG_ID;
   118     }
   120     /**
   121      * {@inheritDoc}
   122      */
   123     public String getBugName() {
   124         return getClass().getName();
   125     }
   126 }

mercurial