HDDS-1192. Support -conf command line argument in GenericCli

Closes #713
This commit is contained in:
Kitti Nanasi 2019-04-24 15:07:13 +02:00 committed by Márton Elek
parent 64f30da428
commit 3f787cd506
No known key found for this signature in database
GPG Key ID: D51EA8F00EE79B28
15 changed files with 144 additions and 138 deletions

View File

@ -22,6 +22,7 @@ import java.util.Map.Entry;
import java.util.concurrent.Callable; import java.util.concurrent.Callable;
import org.apache.hadoop.hdds.conf.OzoneConfiguration; import org.apache.hadoop.hdds.conf.OzoneConfiguration;
import org.apache.hadoop.fs.Path;
import com.google.common.annotations.VisibleForTesting; import com.google.common.annotations.VisibleForTesting;
import picocli.CommandLine; import picocli.CommandLine;
@ -41,6 +42,9 @@ public class GenericCli implements Callable<Void>, GenericParentCommand {
@Option(names = {"-D", "--set"}) @Option(names = {"-D", "--set"})
private Map<String, String> configurationOverrides = new HashMap<>(); private Map<String, String> configurationOverrides = new HashMap<>();
@Option(names = {"-conf"})
private String configurationPath;
private final CommandLine cmd; private final CommandLine cmd;
public GenericCli() { public GenericCli() {
@ -70,19 +74,19 @@ public class GenericCli implements Callable<Void>, GenericParentCommand {
} else { } else {
System.err.println(error.getMessage().split("\n")[0]); System.err.println(error.getMessage().split("\n")[0]);
} }
if(error instanceof MissingSubcommandException){
System.err.println(((MissingSubcommandException) error).getUsage());
}
} }
@Override @Override
public Void call() throws Exception { public Void call() throws Exception {
throw new MissingSubcommandException(cmd.getUsageMessage()); throw new MissingSubcommandException(cmd);
} }
@Override @Override
public OzoneConfiguration createOzoneConfiguration() { public OzoneConfiguration createOzoneConfiguration() {
OzoneConfiguration ozoneConf = new OzoneConfiguration(); OzoneConfiguration ozoneConf = new OzoneConfiguration();
if (configurationPath != null) {
ozoneConf.addResource(new Path(configurationPath));
}
if (configurationOverrides != null) { if (configurationOverrides != null) {
for (Entry<String, String> entry : configurationOverrides.entrySet()) { for (Entry<String, String> entry : configurationOverrides.entrySet()) {
ozoneConf.set(entry.getKey(), entry.getValue()); ozoneConf.set(entry.getKey(), entry.getValue());

View File

@ -17,19 +17,15 @@
*/ */
package org.apache.hadoop.hdds.cli; package org.apache.hadoop.hdds.cli;
import picocli.CommandLine;
/** /**
* Exception to throw if subcommand is not selected but required. * Exception to throw if subcommand is not selected but required.
*/ */
public class MissingSubcommandException extends RuntimeException { public class MissingSubcommandException extends CommandLine.ParameterException {
private String usage; public MissingSubcommandException(CommandLine cmd) {
super(cmd, "Incomplete command");
public MissingSubcommandException(String usage) {
super("Incomplete command");
this.usage = usage;
} }
public String getUsage() {
return usage;
}
} }

View File

@ -53,6 +53,7 @@ import java.io.IOException;
import java.net.InetAddress; import java.net.InetAddress;
import java.security.KeyPair; import java.security.KeyPair;
import java.security.cert.CertificateException; import java.security.cert.CertificateException;
import java.util.Arrays;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
@ -81,32 +82,12 @@ public class HddsDatanodeService extends GenericCli implements ServicePlugin {
private CertificateClient dnCertClient; private CertificateClient dnCertClient;
private String component; private String component;
private HddsDatanodeHttpServer httpServer; private HddsDatanodeHttpServer httpServer;
private boolean printBanner;
private String[] args;
/** public HddsDatanodeService(boolean printBanner, String[] args) {
* Default constructor. this.printBanner = printBanner;
*/ this.args = args != null ? Arrays.copyOf(args, args.length) : null;
public HddsDatanodeService() {
this(null);
}
/**
* Constructs {@link HddsDatanodeService} using the provided {@code conf}
* value.
*
* @param conf OzoneConfiguration
*/
public HddsDatanodeService(Configuration conf) {
if (conf == null) {
this.conf = new OzoneConfiguration();
} else {
this.conf = new OzoneConfiguration(conf);
}
}
@VisibleForTesting
public static HddsDatanodeService createHddsDatanodeService(
String[] args, Configuration conf) {
return createHddsDatanodeService(args, conf, false);
} }
/** /**
@ -115,30 +96,32 @@ public class HddsDatanodeService extends GenericCli implements ServicePlugin {
* This method is intended for unit tests only. It suppresses the * This method is intended for unit tests only. It suppresses the
* startup/shutdown message and skips registering Unix signal handlers. * startup/shutdown message and skips registering Unix signal handlers.
* *
* @param args command line arguments.
* @return Datanode instance
*/
@VisibleForTesting
public static HddsDatanodeService createHddsDatanodeService(
String[] args) {
return createHddsDatanodeService(args, false);
}
/**
* Create an Datanode instance based on the supplied command-line arguments.
*
* @param args command line arguments. * @param args command line arguments.
* @param conf HDDS configuration
* @param printBanner if true, then log a verbose startup message. * @param printBanner if true, then log a verbose startup message.
* @return Datanode instance * @return Datanode instance
*/ */
private static HddsDatanodeService createHddsDatanodeService( private static HddsDatanodeService createHddsDatanodeService(
String[] args, Configuration conf, boolean printBanner) { String[] args, boolean printBanner) {
if (args.length == 0 && printBanner) { return new HddsDatanodeService(printBanner, args);
StringUtils
.startupShutdownMessage(HddsDatanodeService.class, args, LOG);
}
return new HddsDatanodeService(conf);
} }
public static void main(String[] args) { public static void main(String[] args) {
try { try {
Configuration conf = new OzoneConfiguration();
HddsDatanodeService hddsDatanodeService = HddsDatanodeService hddsDatanodeService =
createHddsDatanodeService(args, conf, true); createHddsDatanodeService(args, true);
if (hddsDatanodeService != null) { hddsDatanodeService.run(args);
hddsDatanodeService.start(null);
hddsDatanodeService.join();
}
} catch (Throwable e) { } catch (Throwable e) {
LOG.error("Exception in HddsDatanodeService.", e); LOG.error("Exception in HddsDatanodeService.", e);
terminate(1, e); terminate(1, e);
@ -149,6 +132,21 @@ public class HddsDatanodeService extends GenericCli implements ServicePlugin {
return LOG; return LOG;
} }
@Override
public Void call() throws Exception {
if (printBanner) {
StringUtils
.startupShutdownMessage(HddsDatanodeService.class, args, LOG);
}
start(createOzoneConfiguration());
join();
return null;
}
public void setConfiguration(OzoneConfiguration configuration) {
this.conf = configuration;
}
/** /**
* Starts HddsDatanode services. * Starts HddsDatanode services.
* *
@ -156,12 +154,21 @@ public class HddsDatanodeService extends GenericCli implements ServicePlugin {
*/ */
@Override @Override
public void start(Object service) { public void start(Object service) {
if (service instanceof Configurable) {
start(new OzoneConfiguration(((Configurable) service).getConf()));
} else {
start(new OzoneConfiguration());
}
}
public void start(OzoneConfiguration configuration) {
setConfiguration(configuration);
start();
}
public void start() {
DefaultMetricsSystem.initialize("HddsDatanode"); DefaultMetricsSystem.initialize("HddsDatanode");
OzoneConfiguration.activate(); OzoneConfiguration.activate();
if (service instanceof Configurable) {
conf = new OzoneConfiguration(((Configurable) service).getConf());
}
if (HddsUtils.isHddsEnabled(conf)) { if (HddsUtils.isHddsEnabled(conf)) {
try { try {
String hostname = HddsUtils.getHostName(conf); String hostname = HddsUtils.getHostName(conf);
@ -404,11 +411,13 @@ public class HddsDatanodeService extends GenericCli implements ServicePlugin {
} }
public void join() { public void join() {
try { if (datanodeStateMachine != null) {
datanodeStateMachine.join(); try {
} catch (InterruptedException e) { datanodeStateMachine.join();
Thread.currentThread().interrupt(); } catch (InterruptedException e) {
LOG.info("Interrupted during StorageContainerManager join."); Thread.currentThread().interrupt();
LOG.info("Interrupted during StorageContainerManager join.");
}
} }
} }

View File

@ -24,7 +24,6 @@ import static org.junit.Assert.assertNotNull;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileUtil; import org.apache.hadoop.fs.FileUtil;
import org.apache.hadoop.hdds.HddsConfigKeys; import org.apache.hadoop.hdds.HddsConfigKeys;
import org.apache.hadoop.hdds.conf.OzoneConfiguration; import org.apache.hadoop.hdds.conf.OzoneConfiguration;
@ -40,7 +39,7 @@ import org.junit.Test;
*/ */
public class TestHddsDatanodeService { public class TestHddsDatanodeService {
private File testDir; private File testDir;
private Configuration conf; private OzoneConfiguration conf;
private HddsDatanodeService service; private HddsDatanodeService service;
private String[] args = new String[] {}; private String[] args = new String[] {};
@ -64,8 +63,8 @@ public class TestHddsDatanodeService {
@Test @Test
public void testStartup() throws IOException { public void testStartup() throws IOException {
service = HddsDatanodeService.createHddsDatanodeService(args, conf); service = HddsDatanodeService.createHddsDatanodeService(args);
service.start(null); service.start(conf);
service.join(); service.join();
assertNotNull(service.getDatanodeDetails()); assertNotNull(service.getDatanodeDetails());

View File

@ -83,10 +83,10 @@ public class TestHddsSecureDatanodeInit {
ServicePlugin.class); ServicePlugin.class);
securityConfig = new SecurityConfig(conf); securityConfig = new SecurityConfig(conf);
service = HddsDatanodeService.createHddsDatanodeService(args, conf); service = HddsDatanodeService.createHddsDatanodeService(args);
dnLogs = GenericTestUtils.LogCapturer.captureLogs(getLogger()); dnLogs = GenericTestUtils.LogCapturer.captureLogs(getLogger());
callQuietly(() -> { callQuietly(() -> {
service.start(null); service.start(conf);
return null; return null;
}); });
callQuietly(() -> { callQuietly(() -> {

View File

@ -54,7 +54,6 @@ public class SafeModeCommands implements Callable<Void> {
@Override @Override
public Void call() throws Exception { public Void call() throws Exception {
throw new MissingSubcommandException( throw new MissingSubcommandException(
this.parent.getCmd().getSubcommands().get("safemode"). this.parent.getCmd().getSubcommands().get("safemode"));
getUsageMessage());
} }
} }

View File

@ -23,7 +23,6 @@ import java.util.List;
import java.util.Optional; import java.util.Optional;
import org.apache.commons.io.FileUtils; import org.apache.commons.io.FileUtils;
import org.apache.hadoop.classification.InterfaceAudience; import org.apache.hadoop.classification.InterfaceAudience;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.conf.StorageUnit; import org.apache.hadoop.conf.StorageUnit;
import org.apache.hadoop.hdds.HddsConfigKeys; import org.apache.hadoop.hdds.HddsConfigKeys;
import org.apache.hadoop.hdds.protocol.DatanodeDetails; import org.apache.hadoop.hdds.protocol.DatanodeDetails;
@ -104,9 +103,9 @@ public class MiniOzoneClusterImpl implements MiniOzoneCluster {
* @throws IOException if there is an I/O error * @throws IOException if there is an I/O error
*/ */
MiniOzoneClusterImpl(OzoneConfiguration conf, MiniOzoneClusterImpl(OzoneConfiguration conf,
OzoneManager ozoneManager, OzoneManager ozoneManager,
StorageContainerManager scm, StorageContainerManager scm,
List<HddsDatanodeService> hddsDatanodes) { List<HddsDatanodeService> hddsDatanodes) {
this.conf = conf; this.conf = conf;
this.ozoneManager = ozoneManager; this.ozoneManager = ozoneManager;
this.scm = scm; this.scm = scm;
@ -275,7 +274,7 @@ public class MiniOzoneClusterImpl implements MiniOzoneCluster {
datanodeService.stop(); datanodeService.stop();
datanodeService.join(); datanodeService.join();
// ensure same ports are used across restarts. // ensure same ports are used across restarts.
Configuration config = datanodeService.getConf(); OzoneConfiguration config = datanodeService.getConf();
int currentPort = datanodeService.getDatanodeDetails() int currentPort = datanodeService.getDatanodeDetails()
.getPort(DatanodeDetails.Port.Name.STANDALONE).getValue(); .getPort(DatanodeDetails.Port.Name.STANDALONE).getValue();
config.setInt(DFS_CONTAINER_IPC_PORT, currentPort); config.setInt(DFS_CONTAINER_IPC_PORT, currentPort);
@ -291,9 +290,9 @@ public class MiniOzoneClusterImpl implements MiniOzoneCluster {
} }
String[] args = new String[]{}; String[] args = new String[]{};
HddsDatanodeService service = HddsDatanodeService service =
HddsDatanodeService.createHddsDatanodeService(args, config); HddsDatanodeService.createHddsDatanodeService(args);
hddsDatanodes.add(i, service); hddsDatanodes.add(i, service);
service.start(null); service.start(config);
if (waitForDatanode) { if (waitForDatanode) {
// wait for the node to be identified as a healthy node again. // wait for the node to be identified as a healthy node again.
waitForClusterToBeReady(); waitForClusterToBeReady();
@ -371,7 +370,7 @@ public class MiniOzoneClusterImpl implements MiniOzoneCluster {
public void startHddsDatanodes() { public void startHddsDatanodes() {
hddsDatanodes.forEach((datanode) -> { hddsDatanodes.forEach((datanode) -> {
datanode.setCertificateClient(getCAClient()); datanode.setCertificateClient(getCAClient());
datanode.start(null); datanode.start();
}); });
} }
@ -537,7 +536,7 @@ public class MiniOzoneClusterImpl implements MiniOzoneCluster {
conf.setStrings(ScmConfigKeys.OZONE_SCM_NAMES, scmAddress); conf.setStrings(ScmConfigKeys.OZONE_SCM_NAMES, scmAddress);
List<HddsDatanodeService> hddsDatanodes = new ArrayList<>(); List<HddsDatanodeService> hddsDatanodes = new ArrayList<>();
for (int i = 0; i < numOfDatanodes; i++) { for (int i = 0; i < numOfDatanodes; i++) {
Configuration dnConf = new OzoneConfiguration(conf); OzoneConfiguration dnConf = new OzoneConfiguration(conf);
String datanodeBaseDir = path + "/datanode-" + Integer.toString(i); String datanodeBaseDir = path + "/datanode-" + Integer.toString(i);
Path metaDir = Paths.get(datanodeBaseDir, "meta"); Path metaDir = Paths.get(datanodeBaseDir, "meta");
Path dataDir = Paths.get(datanodeBaseDir, "data", "containers"); Path dataDir = Paths.get(datanodeBaseDir, "data", "containers");
@ -555,8 +554,10 @@ public class MiniOzoneClusterImpl implements MiniOzoneCluster {
dnConf.set(OzoneConfigKeys.OZONE_CONTAINER_COPY_WORKDIR, dnConf.set(OzoneConfigKeys.OZONE_CONTAINER_COPY_WORKDIR,
wrokDir.toString()); wrokDir.toString());
hddsDatanodes.add( HddsDatanodeService datanode
HddsDatanodeService.createHddsDatanodeService(args, dnConf)); = HddsDatanodeService.createHddsDatanodeService(args);
datanode.setConfiguration(dnConf);
hddsDatanodes.add(datanode);
} }
return hddsDatanodes; return hddsDatanodes;
} }

View File

@ -270,7 +270,7 @@ public class TestScmSafeMode {
assertFalse(logCapturer.getOutput().contains("SCM exiting safe mode.")); assertFalse(logCapturer.getOutput().contains("SCM exiting safe mode."));
assertTrue(scm.getCurrentContainerThreshold() == 0); assertTrue(scm.getCurrentContainerThreshold() == 0);
for (HddsDatanodeService dn : cluster.getHddsDatanodes()) { for (HddsDatanodeService dn : cluster.getHddsDatanodes()) {
dn.start(null); dn.start();
} }
GenericTestUtils GenericTestUtils
.waitFor(() -> scm.getCurrentContainerThreshold() == 1.0, 100, 20000); .waitFor(() -> scm.getCurrentContainerThreshold() == 1.0, 100, 20000);

View File

@ -27,7 +27,6 @@ import java.util.Collection;
import java.util.List; import java.util.List;
import org.apache.hadoop.fs.FileUtil; import org.apache.hadoop.fs.FileUtil;
import org.apache.hadoop.hdds.cli.MissingSubcommandException;
import org.apache.hadoop.hdds.client.ReplicationFactor; import org.apache.hadoop.hdds.client.ReplicationFactor;
import org.apache.hadoop.hdds.conf.OzoneConfiguration; import org.apache.hadoop.hdds.conf.OzoneConfiguration;
import org.apache.hadoop.ozone.HddsDatanodeService; import org.apache.hadoop.ozone.HddsDatanodeService;
@ -108,7 +107,7 @@ public class TestOzoneDatanodeShell {
baseDir = new File(path); baseDir = new File(path);
baseDir.mkdirs(); baseDir.mkdirs();
datanode = new HddsDatanodeService(); datanode = HddsDatanodeService.createHddsDatanodeService(null);
cluster = MiniOzoneCluster.newBuilder(conf) cluster = MiniOzoneCluster.newBuilder(conf)
.setNumDatanodes(3) .setNumDatanodes(3)
@ -177,7 +176,7 @@ public class TestOzoneDatanodeShell {
* was thrown and contains the specified usage string. * was thrown and contains the specified usage string.
*/ */
private void executeDatanodeWithError(HddsDatanodeService hdds, String[] args, private void executeDatanodeWithError(HddsDatanodeService hdds, String[] args,
String expectedError, String usage) { String expectedError) {
if (Strings.isNullOrEmpty(expectedError)) { if (Strings.isNullOrEmpty(expectedError)) {
executeDatanode(hdds, args); executeDatanode(hdds, args);
} else { } else {
@ -197,24 +196,27 @@ public class TestOzoneDatanodeShell {
"exception [%s] in [%s]", "exception [%s] in [%s]",
expectedError, exceptionToCheck.getMessage()), expectedError, exceptionToCheck.getMessage()),
exceptionToCheck.getMessage().contains(expectedError)); exceptionToCheck.getMessage().contains(expectedError));
Assert.assertTrue(
exceptionToCheck instanceof MissingSubcommandException);
Assert.assertTrue(
((MissingSubcommandException) exceptionToCheck)
.getUsage().contains(usage));
} }
} }
} }
} }
@Test @Test
public void testDatanodeIncompleteCommand() { public void testDatanodeCommand() {
LOG.info("Running testDatanodeIncompleteCommand"); LOG.info("Running testDatanodeIncompleteCommand");
String expectedError = "Incomplete command";
String[] args = new String[]{}; //executing 'ozone datanode' String[] args = new String[]{}; //executing 'ozone datanode'
executeDatanodeWithError(datanode, args, expectedError, //'ozone datanode' command should not result in error
"Usage: ozone datanode [-hV] [--verbose] [-D=<String=String>]..."); executeDatanodeWithError(datanode, args, null);
}
@Test
public void testDatanodeInvalidParamCommand() {
LOG.info("Running testDatanodeIncompleteCommand");
String expectedError = "Unknown option: -invalidParam";
//executing 'ozone datanode -invalidParam'
String[] args = new String[]{"-invalidParam"};
executeDatanodeWithError(datanode, args, expectedError);
} }
} }

View File

@ -361,21 +361,19 @@ public class TestOzoneShell {
String expectedError = "Incomplete command"; String expectedError = "Incomplete command";
String[] args = new String[] {}; //executing 'ozone sh' String[] args = new String[] {}; //executing 'ozone sh'
executeWithError(shell, args, expectedError, executeWithError(shell, args, expectedError);
"Usage: ozone sh [-hV] [--verbose] [-D=<String=String>]..." +
" [COMMAND]");
args = new String[] {"volume"}; //executing 'ozone sh volume' args = new String[] {"volume"}; //executing 'ozone sh volume'
executeWithError(shell, args, expectedError, executeWithError(shell, args, MissingSubcommandException.class,
"Usage: ozone sh volume [-hV] [COMMAND]"); expectedError);
args = new String[] {"bucket"}; //executing 'ozone sh bucket' args = new String[] {"bucket"}; //executing 'ozone sh bucket'
executeWithError(shell, args, expectedError, executeWithError(shell, args, MissingSubcommandException.class,
"Usage: ozone sh bucket [-hV] [COMMAND]"); expectedError);
args = new String[] {"key"}; //executing 'ozone sh key' args = new String[] {"key"}; //executing 'ozone sh key'
executeWithError(shell, args, expectedError, executeWithError(shell, args, MissingSubcommandException.class,
"Usage: ozone sh key [-hV] [COMMAND]"); expectedError);
} }
@Test @Test
@ -475,32 +473,11 @@ public class TestOzoneShell {
} }
/** /**
* Execute command, assert exception message and returns true if error * Execute command, assert exception message and exception class
* was thrown. * and returns true if error was thrown.
*/ */
private void executeWithError(Shell ozoneShell, String[] args, private void executeWithError(Shell ozoneShell, String[] args,
Class exception) { Class expectedException, String expectedError) {
if (Objects.isNull(exception)) {
execute(ozoneShell, args);
} else {
try {
execute(ozoneShell, args);
fail("Exception is expected from command execution " + Arrays
.asList(args));
} catch (Exception ex) {
LOG.error("Exception: ", ex);
assertTrue(ex.getCause().getClass().getCanonicalName()
.equals(exception.getCanonicalName()));
}
}
}
/**
* Execute command, assert exception message and returns true if error
* was thrown and contains the specified usage string.
*/
private void executeWithError(Shell ozoneShell, String[] args,
String expectedError, String usage) {
if (Strings.isNullOrEmpty(expectedError)) { if (Strings.isNullOrEmpty(expectedError)) {
execute(ozoneShell, args); execute(ozoneShell, args);
} else { } else {
@ -517,19 +494,37 @@ public class TestOzoneShell {
Assert.assertTrue( Assert.assertTrue(
String.format( String.format(
"Error of shell code doesn't contain the " + "Error of shell code doesn't contain the " +
"exception [%s] in [%s]", "expectedException [%s] in [%s]",
expectedError, exceptionToCheck.getMessage()), expectedError, exceptionToCheck.getMessage()),
exceptionToCheck.getMessage().contains(expectedError)); exceptionToCheck.getMessage().contains(expectedError));
Assert.assertTrue( assertTrue(ex.getClass().getCanonicalName()
exceptionToCheck instanceof MissingSubcommandException); .equals(expectedException.getCanonicalName()));
Assert.assertTrue(
((MissingSubcommandException)exceptionToCheck)
.getUsage().contains(usage));
} }
} }
} }
} }
/**
* Execute command, assert exception cause message and returns true if error
* was thrown.
*/
private void executeWithError(Shell ozoneShell, String[] args,
Class expectedCause) {
if (Objects.isNull(expectedCause)) {
execute(ozoneShell, args);
} else {
try {
execute(ozoneShell, args);
fail("Exception is expected from command execution " + Arrays
.asList(args));
} catch (Exception ex) {
LOG.error("Exception: ", ex);
assertTrue(ex.getCause().getClass().getCanonicalName()
.equals(expectedCause.getCanonicalName()));
}
}
}
@Test @Test
public void testListVolume() throws Exception { public void testListVolume() throws Exception {
LOG.info("Running testListVolume"); LOG.info("Running testListVolume");

View File

@ -51,7 +51,7 @@ public class BucketCommands implements GenericParentCommand, Callable<Void> {
@Override @Override
public Void call() throws Exception { public Void call() throws Exception {
throw new MissingSubcommandException( throw new MissingSubcommandException(
this.shell.getCmd().getSubcommands().get("bucket").getUsageMessage()); this.shell.getCmd().getSubcommands().get("bucket"));
} }
@Override @Override

View File

@ -52,7 +52,7 @@ public class KeyCommands implements GenericParentCommand, Callable<Void> {
@Override @Override
public Void call() throws Exception { public Void call() throws Exception {
throw new MissingSubcommandException( throw new MissingSubcommandException(
this.shell.getCmd().getSubcommands().get("key").getUsageMessage()); this.shell.getCmd().getSubcommands().get("key"));
} }
@Override @Override

View File

@ -49,7 +49,7 @@ public class TokenCommands implements GenericParentCommand, Callable<Void> {
@Override @Override
public Void call() throws Exception { public Void call() throws Exception {
throw new MissingSubcommandException( throw new MissingSubcommandException(
this.shell.getCmd().getSubcommands().get("token").getUsageMessage()); this.shell.getCmd().getSubcommands().get("token"));
} }
@Override @Override

View File

@ -52,7 +52,7 @@ public class VolumeCommands implements GenericParentCommand, Callable<Void> {
@Override @Override
public Void call() throws Exception { public Void call() throws Exception {
throw new MissingSubcommandException( throw new MissingSubcommandException(
this.shell.getCmd().getSubcommands().get("volume").getUsageMessage()); this.shell.getCmd().getSubcommands().get("volume"));
} }
@Override @Override

View File

@ -177,9 +177,10 @@ public class TestAuditParser {
public void testHelp() throws Exception { public void testHelp() throws Exception {
String[] args = new String[]{"--help"}; String[] args = new String[]{"--help"};
execute(args, execute(args,
"Usage: ozone auditparser [-hV] [--verbose] [-D=<String=String>]... " + "Usage: ozone auditparser [-hV] [--verbose] " +
"<database>\n" + "[-conf=<configurationPath>]\n" +
" [COMMAND]"); " [-D=<String=String>]... <database> " +
"[COMMAND]");
} }
private static File getRandomTempDir() throws IOException { private static File getRandomTempDir() throws IOException {