blob: 27c442a206f92ae6f3f96048f5698c1151eba5a7 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.commons.cli;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.File;
import java.io.FileInputStream;
import java.net.URL;
import java.util.Calendar;
import java.util.Date;
import java.util.Vector;
import org.junit.Test;
/**
* Test case for the PatternOptionBuilder class.
*/
@SuppressWarnings("deprecation") // tests some deprecated classes
public class PatternOptionBuilderTest {
@Test
public void testClassPattern() throws Exception {
final Options options = PatternOptionBuilder.parsePattern("c+d+");
final CommandLineParser parser = new PosixParser();
final CommandLine line = parser.parse(options, new String[] {"-c", "java.util.Calendar", "-d", "System.DateTime"});
assertEquals("c value", Calendar.class, line.getOptionObject("c"));
assertNull("d value", line.getOptionObject("d"));
}
@Test
public void testEmptyPattern() {
final Options options = PatternOptionBuilder.parsePattern("");
assertTrue(options.getOptions().isEmpty());
}
@Test
public void testExistingFilePattern() throws Exception {
final Options options = PatternOptionBuilder.parsePattern("g<");
final CommandLineParser parser = new PosixParser();
final CommandLine line = parser.parse(options, new String[] {"-g", "src/test/resources/org/apache/commons/cli/existing-readable.file"});
final Object parsedReadableFileStream = line.getOptionObject("g");
assertNotNull("option g not parsed", parsedReadableFileStream);
assertTrue("option g not FileInputStream", parsedReadableFileStream instanceof FileInputStream);
}
@Test
public void testExistingFilePatternFileNotExist() throws Exception {
final Options options = PatternOptionBuilder.parsePattern("f<");
final CommandLineParser parser = new PosixParser();
final CommandLine line = parser.parse(options, new String[] {"-f", "non-existing.file"});
assertNull("option f parsed", line.getOptionObject("f"));
}
@Test
public void testNumberPattern() throws Exception {
final Options options = PatternOptionBuilder.parsePattern("n%d%x%");
final CommandLineParser parser = new PosixParser();
final CommandLine line = parser.parse(options, new String[] {"-n", "1", "-d", "2.1", "-x", "3,5"});
assertEquals("n object class", Long.class, line.getOptionObject("n").getClass());
assertEquals("n value", Long.valueOf(1), line.getOptionObject("n"));
assertEquals("d object class", Double.class, line.getOptionObject("d").getClass());
assertEquals("d value", Double.valueOf(2.1), line.getOptionObject("d"));
assertNull("x object", line.getOptionObject("x"));
}
@Test
public void testObjectPattern() throws Exception {
final Options options = PatternOptionBuilder.parsePattern("o@i@n@");
final CommandLineParser parser = new PosixParser();
final CommandLine line = parser.parse(options, new String[] {"-o", "java.lang.String", "-i", "java.util.Calendar", "-n", "System.DateTime"});
assertEquals("o value", "", line.getOptionObject("o"));
assertNull("i value", line.getOptionObject("i"));
assertNull("n value", line.getOptionObject("n"));
}
@Test
public void testRequiredOption() throws Exception {
final Options options = PatternOptionBuilder.parsePattern("!n%m%");
final CommandLineParser parser = new PosixParser();
try {
parser.parse(options, new String[] {""});
fail("MissingOptionException wasn't thrown");
} catch (final MissingOptionException e) {
assertEquals(1, e.getMissingOptions().size());
assertTrue(e.getMissingOptions().contains("n"));
}
}
@Test
public void testSimplePattern() throws Exception {
final Options options = PatternOptionBuilder.parsePattern("a:b@cde>f+n%t/m*z#");
final String[] args = {"-c", "-a", "foo", "-b", "java.util.Vector", "-e", "build.xml", "-f", "java.util.Calendar", "-n", "4.5", "-t",
"https://commons.apache.org", "-z", "Thu Jun 06 17:48:57 EDT 2002", "-m", "test*"};
final CommandLineParser parser = new PosixParser();
final CommandLine line = parser.parse(options, args);
assertEquals("flag a", "foo", line.getOptionValue("a"));
assertEquals("string flag a", "foo", line.getOptionObject("a"));
assertEquals("object flag b", new Vector<>(), line.getOptionObject("b"));
assertTrue("boolean true flag c", line.hasOption("c"));
assertFalse("boolean false flag d", line.hasOption("d"));
assertEquals("file flag e", new File("build.xml"), line.getOptionObject("e"));
assertEquals("class flag f", Calendar.class, line.getOptionObject("f"));
assertEquals("number flag n", Double.valueOf(4.5), line.getOptionObject("n"));
assertEquals("url flag t", new URL("https://commons.apache.org"), line.getOptionObject("t"));
// tests the char methods of CommandLine that delegate to the String methods
assertEquals("flag a", "foo", line.getOptionValue('a'));
assertEquals("string flag a", "foo", line.getOptionObject('a'));
assertEquals("object flag b", new Vector<>(), line.getOptionObject('b'));
assertTrue("boolean true flag c", line.hasOption('c'));
assertFalse("boolean false flag d", line.hasOption('d'));
assertEquals("file flag e", new File("build.xml"), line.getOptionObject('e'));
assertEquals("class flag f", Calendar.class, line.getOptionObject('f'));
assertEquals("number flag n", Double.valueOf(4.5), line.getOptionObject('n'));
assertEquals("url flag t", new URL("https://commons.apache.org"), line.getOptionObject('t'));
// FILES NOT SUPPORTED YET
try {
assertEquals("files flag m", new File[0], line.getOptionObject('m'));
fail("Multiple files are not supported yet, should have failed");
} catch (final UnsupportedOperationException uoe) {
// expected
}
// DATES NOT SUPPORTED YET
try {
assertEquals("date flag z", new Date(1023400137276L), line.getOptionObject('z'));
fail("Date is not supported yet, should have failed");
} catch (final UnsupportedOperationException uoe) {
// expected
}
}
@Test
public void testUntypedPattern() throws Exception {
final Options options = PatternOptionBuilder.parsePattern("abc");
final CommandLineParser parser = new PosixParser();
final CommandLine line = parser.parse(options, new String[] {"-abc"});
assertTrue(line.hasOption('a'));
assertNull("value a", line.getOptionObject('a'));
assertTrue(line.hasOption('b'));
assertNull("value b", line.getOptionObject('b'));
assertTrue(line.hasOption('c'));
assertNull("value c", line.getOptionObject('c'));
}
@Test
public void testURLPattern() throws Exception {
final Options options = PatternOptionBuilder.parsePattern("u/v/");
final CommandLineParser parser = new PosixParser();
final CommandLine line = parser.parse(options, new String[] {"-u", "https://commons.apache.org", "-v", "foo://commons.apache.org"});
assertEquals("u value", new URL("https://commons.apache.org"), line.getOptionObject("u"));
assertNull("v value", line.getOptionObject("v"));
}
}