diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/diskbalancer/command/TestDiskBalancerCommand.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/diskbalancer/command/TestDiskBalancerCommand.java index b0821e2e8d2..e55c418e49f 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/diskbalancer/command/TestDiskBalancerCommand.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/diskbalancer/command/TestDiskBalancerCommand.java @@ -280,7 +280,7 @@ public class TestDiskBalancerCommand { final String cmdLine = String .format( "hdfs diskbalancer %s", planArg); - runCommand(cmdLine); + runCommand(cmdLine, cluster); } /* Test that illegal arguments are handled correctly*/ @@ -335,12 +335,12 @@ public class TestDiskBalancerCommand { runCommand(cmdLine); } - private List runCommand(final String cmdLine) throws Exception { + private List runCommandInternal(final String cmdLine) throws + Exception { String[] cmds = StringUtils.split(cmdLine, ' '); org.apache.hadoop.hdfs.tools.DiskBalancer db = new org.apache.hadoop.hdfs.tools.DiskBalancer(conf); - FileSystem.setDefaultUri(conf, clusterJson); ByteArrayOutputStream bufOut = new ByteArrayOutputStream(); PrintStream out = new PrintStream(bufOut); db.run(cmds, out); @@ -353,6 +353,17 @@ public class TestDiskBalancerCommand { return outputs; } + private List runCommand(final String cmdLine) throws Exception { + FileSystem.setDefaultUri(conf, clusterJson); + return runCommandInternal(cmdLine); + } + + private List runCommand(final String cmdLine, + MiniDFSCluster miniCluster) throws Exception { + FileSystem.setDefaultUri(conf, miniCluster.getURI()); + return runCommandInternal(cmdLine); + } + /** * Making sure that we can query the node without having done a submit. * @throws Exception