jjg@1455: /* jjg@1455: * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. jjg@1455: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@1455: * jjg@1455: * This code is free software; you can redistribute it and/or modify it jjg@1455: * under the terms of the GNU General Public License version 2 only, as jjg@1455: * published by the Free Software Foundation. jjg@1455: * jjg@1455: * This code is distributed in the hope that it will be useful, but WITHOUT jjg@1455: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@1455: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@1455: * version 2 for more details (a copy is included in the LICENSE file that jjg@1455: * accompanied this code). jjg@1455: * jjg@1455: * You should have received a copy of the GNU General Public License version jjg@1455: * 2 along with this work; if not, write to the Free Software Foundation, jjg@1455: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@1455: * jjg@1455: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jjg@1455: * or visit www.oracle.com if you need additional information or have any jjg@1455: * questions. jjg@1455: */ jjg@1455: jjg@1455: /* jjg@1455: * @test jjg@1465: * @bug 8004832 jjg@1465: * @summary Add new doclint package jjg@1455: */ jjg@1465: jjg@1465: import com.sun.tools.doclint.DocLint; jjg@1465: jjg@1455: public class OptionTest { jjg@1455: public static void main(String... args) throws Exception { jjg@1455: new OptionTest().run(); jjg@1455: } jjg@1455: jjg@1455: String[] positiveTests = { jjg@1455: "-Xmsgs", jjg@1455: "-Xmsgs:all", jjg@1455: "-Xmsgs:none", jjg@1455: "-Xmsgs:accessibility", jjg@1455: "-Xmsgs:html", jjg@1455: "-Xmsgs:missing", jjg@1455: "-Xmsgs:reference", jjg@1455: "-Xmsgs:syntax", jjg@1455: "-Xmsgs:html/public", jjg@1455: "-Xmsgs:html/protected", jjg@1455: "-Xmsgs:html/package", jjg@1455: "-Xmsgs:html/private", jjg@1455: "-Xmsgs:-html/public", jjg@1455: "-Xmsgs:-html/protected", jjg@1455: "-Xmsgs:-html/package", jjg@1455: "-Xmsgs:-html/private", jjg@1455: "-Xmsgs:html,syntax", jjg@1455: "-Xmsgs:html,-syntax", jjg@1455: "-Xmsgs:-html,syntax", jjg@1455: "-Xmsgs:-html,-syntax", jjg@1455: "-Xmsgs:html/public,syntax", jjg@1455: "-Xmsgs:html,syntax/public", jjg@1455: "-Xmsgs:-html/public,syntax/public" jjg@1455: }; jjg@1455: jjg@1455: String[] negativeTests = { jjg@1455: "-typo", jjg@1455: "-Xmsgs:-all", jjg@1455: "-Xmsgs:-none", jjg@1455: "-Xmsgs:typo", jjg@1455: "-Xmsgs:html/typo", jjg@1455: "-Xmsgs:html/public,typo", jjg@1455: "-Xmsgs:html/public,syntax/typo", jjg@1455: }; jjg@1455: jjg@1455: void run() throws Exception { jjg@1455: test(positiveTests, true); jjg@1455: test(negativeTests, false); jjg@1455: jjg@1455: if (errors > 0) jjg@1455: throw new Exception(errors + " errors occurred"); jjg@1455: } jjg@1455: jjg@1455: void test(String[] tests, boolean expect) { jjg@1455: for (String test: tests) { jjg@1455: System.err.println("test: " + test); jjg@1455: boolean found = DocLint.isValidOption(test); jjg@1455: if (found != expect) jjg@1455: error("Unexpected result: " + found + ",expected: " + expect); jjg@1455: } jjg@1455: } jjg@1455: jjg@1455: void error(String msg) { jjg@1455: System.err.println("Error: " + msg); jjg@1455: errors++; jjg@1455: } jjg@1455: jjg@1455: int errors; jjg@1455: }