test/tools/doclint/OptionTest.java

Wed, 13 Aug 2014 14:50:00 -0700

author
katleman
date
Wed, 13 Aug 2014 14:50:00 -0700
changeset 2549
0b6cc4ea670f
parent 1465
a22f23fb7abf
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Added tag jdk8u40-b01 for changeset bf89a471779d

jjg@1455 1 /*
jjg@1455 2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
jjg@1455 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@1455 4 *
jjg@1455 5 * This code is free software; you can redistribute it and/or modify it
jjg@1455 6 * under the terms of the GNU General Public License version 2 only, as
jjg@1455 7 * published by the Free Software Foundation.
jjg@1455 8 *
jjg@1455 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@1455 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@1455 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@1455 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@1455 13 * accompanied this code).
jjg@1455 14 *
jjg@1455 15 * You should have received a copy of the GNU General Public License version
jjg@1455 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@1455 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@1455 18 *
jjg@1455 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@1455 20 * or visit www.oracle.com if you need additional information or have any
jjg@1455 21 * questions.
jjg@1455 22 */
jjg@1455 23
jjg@1455 24 /*
jjg@1455 25 * @test
jjg@1465 26 * @bug 8004832
jjg@1465 27 * @summary Add new doclint package
jjg@1455 28 */
jjg@1465 29
jjg@1465 30 import com.sun.tools.doclint.DocLint;
jjg@1465 31
jjg@1455 32 public class OptionTest {
jjg@1455 33 public static void main(String... args) throws Exception {
jjg@1455 34 new OptionTest().run();
jjg@1455 35 }
jjg@1455 36
jjg@1455 37 String[] positiveTests = {
jjg@1455 38 "-Xmsgs",
jjg@1455 39 "-Xmsgs:all",
jjg@1455 40 "-Xmsgs:none",
jjg@1455 41 "-Xmsgs:accessibility",
jjg@1455 42 "-Xmsgs:html",
jjg@1455 43 "-Xmsgs:missing",
jjg@1455 44 "-Xmsgs:reference",
jjg@1455 45 "-Xmsgs:syntax",
jjg@1455 46 "-Xmsgs:html/public",
jjg@1455 47 "-Xmsgs:html/protected",
jjg@1455 48 "-Xmsgs:html/package",
jjg@1455 49 "-Xmsgs:html/private",
jjg@1455 50 "-Xmsgs:-html/public",
jjg@1455 51 "-Xmsgs:-html/protected",
jjg@1455 52 "-Xmsgs:-html/package",
jjg@1455 53 "-Xmsgs:-html/private",
jjg@1455 54 "-Xmsgs:html,syntax",
jjg@1455 55 "-Xmsgs:html,-syntax",
jjg@1455 56 "-Xmsgs:-html,syntax",
jjg@1455 57 "-Xmsgs:-html,-syntax",
jjg@1455 58 "-Xmsgs:html/public,syntax",
jjg@1455 59 "-Xmsgs:html,syntax/public",
jjg@1455 60 "-Xmsgs:-html/public,syntax/public"
jjg@1455 61 };
jjg@1455 62
jjg@1455 63 String[] negativeTests = {
jjg@1455 64 "-typo",
jjg@1455 65 "-Xmsgs:-all",
jjg@1455 66 "-Xmsgs:-none",
jjg@1455 67 "-Xmsgs:typo",
jjg@1455 68 "-Xmsgs:html/typo",
jjg@1455 69 "-Xmsgs:html/public,typo",
jjg@1455 70 "-Xmsgs:html/public,syntax/typo",
jjg@1455 71 };
jjg@1455 72
jjg@1455 73 void run() throws Exception {
jjg@1455 74 test(positiveTests, true);
jjg@1455 75 test(negativeTests, false);
jjg@1455 76
jjg@1455 77 if (errors > 0)
jjg@1455 78 throw new Exception(errors + " errors occurred");
jjg@1455 79 }
jjg@1455 80
jjg@1455 81 void test(String[] tests, boolean expect) {
jjg@1455 82 for (String test: tests) {
jjg@1455 83 System.err.println("test: " + test);
jjg@1455 84 boolean found = DocLint.isValidOption(test);
jjg@1455 85 if (found != expect)
jjg@1455 86 error("Unexpected result: " + found + ",expected: " + expect);
jjg@1455 87 }
jjg@1455 88 }
jjg@1455 89
jjg@1455 90 void error(String msg) {
jjg@1455 91 System.err.println("Error: " + msg);
jjg@1455 92 errors++;
jjg@1455 93 }
jjg@1455 94
jjg@1455 95 int errors;
jjg@1455 96 }

mercurial