001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041: package org.netbeans.api.sendopts;
042:
043: import java.util.Collections;
044: import java.util.Map;
045: import java.util.Set;
046: import junit.framework.TestCase;
047: import org.netbeans.junit.MockServices;
048: import org.netbeans.spi.sendopts.OptionGroups;
049: import org.netbeans.spi.sendopts.Env;
050: import org.netbeans.spi.sendopts.Option;
051: import org.netbeans.spi.sendopts.OptionProcessor;
052:
053: /** Simple anyOf test.
054: *
055: * @author Jaroslav Tulach
056: */
057: public class MasterTest extends TestCase {
058: /** a shared option part of some API */
059: static final Option SHARED = Option.requiredArgument(
060: Option.NO_SHORT_NAME, "shared");
061:
062: public MasterTest(String s) {
063: super (s);
064: }
065:
066: protected void setUp() throws Exception {
067: MockServices.setServices(P1.class);
068: }
069:
070: public void testSharedSelected() throws Exception {
071: try {
072: CommandLine.getDefault().process(
073: new String[] { "--shared", "Ahoj" });
074: fail("Should fail with CommandException");
075: } catch (CommandException ex) {
076: if (ex.getExitCode() == 1) {
077: fail("Real working that p1 needs to be used shall be printed");
078: }
079: }
080: }
081:
082: public void testP1() throws Exception {
083: try {
084: CommandLine.getDefault().process(new String[] { "--p1" });
085: fail("Should fail with CommandException thrown during processing of our OptionProcessor");
086: } catch (CommandException ex) {
087: if (ex.getExitCode() != 1) {
088: throw ex;
089: }
090: }
091: }
092:
093: public void testNothing() throws Exception {
094: CommandLine.getDefault().process(new String[] {});
095: }
096:
097: public void testAll() throws Exception {
098: try {
099: CommandLine.getDefault().process(
100: new String[] { "--shared", "ble", "--p1" });
101: fail("Should fail with CommandException thrown during processing of our OptionProcessor");
102: } catch (CommandException ex) {
103: if (ex.getExitCode() != 1) {
104: throw ex;
105: }
106: }
107: }
108:
109: public static final class P1 extends OptionProcessor {
110: private static final Option P1 = Option.withoutArgument(
111: Option.NO_SHORT_NAME, "p1");
112:
113: protected Set<Option> getOptions() {
114: return Collections.singleton(OptionGroups.allOf(P1,
115: OptionGroups.anyOf(SHARED)));
116: }
117:
118: protected void process(Env env,
119: Map<Option, String[]> optionValues)
120: throws CommandException {
121: // signal P1 was called
122: throw new CommandException(1);
123: }
124: }
125: }
|