HDFS-10696. TestHDFSCLI fails. Contributed by Kai Sasaki.

(cherry picked from commit 414fbfab41)
This commit is contained in:
Akira Ajisaka 2016-07-28 16:58:23 +09:00
parent 4ecfd05095
commit ab49c2b399
2 changed files with 33 additions and 11 deletions

View File

@ -212,17 +212,19 @@ private static class ClearSpaceQuotaCommand extends DFSAdminCommand {
private static final String NAME = "clrSpaceQuota"; private static final String NAME = "clrSpaceQuota";
private static final String USAGE = "-"+NAME+" [-storageType <storagetype>] <dirname>...<dirname>"; private static final String USAGE = "-"+NAME+" [-storageType <storagetype>] <dirname>...<dirname>";
private static final String DESCRIPTION = USAGE + ": " + private static final String DESCRIPTION = USAGE + ": " +
"Clear the space quota for each directory <dirName>.\n" + "Clear the space quota for each directory <dirName>.\n" +
"\t\tFor each directory, attempt to clear the quota. An error will be reported if\n" + "\t\tFor each directory, attempt to clear the quota. " +
"\t\t1. the directory does not exist or is a file, or\n" + "An error will be reported if\n" +
"\t\t2. user is not an administrator.\n" + "\t\t1. the directory does not exist or is a file, or\n" +
"\t\tIt does not fault if the directory has no quota.\n" + "\t\t2. user is not an administrator.\n" +
"\t\tThe storage type specific quota is cleared when -storageType option is specified." + "\t\tIt does not fault if the directory has no quota.\n" +
"\t\tAvailable storageTypes are \n" + "\t\tThe storage type specific quota is cleared when -storageType " +
"\t\t- RAM_DISK\n" + "option is specified.\n" +
"\t\t- DISK\n" + "\t\tAvailable storageTypes are \n" +
"\t\t- SSD\n" + "\t\t- RAM_DISK\n" +
"\t\t- ARCHIVE"; "\t\t- DISK\n" +
"\t\t- SSD\n" +
"\t\t- ARCHIVE";
private StorageType type; private StorageType type;

View File

@ -15979,6 +15979,26 @@
<type>RegexpComparator</type> <type>RegexpComparator</type>
<expected-output>^( |\t)*The storage type specific quota is cleared when -storageType option is specified.( )*</expected-output> <expected-output>^( |\t)*The storage type specific quota is cleared when -storageType option is specified.( )*</expected-output>
</comparator> </comparator>
<comparator>
<type>RegexpComparator</type>
<expected-output>^( |\t)*Available storageTypes are( )*</expected-output>
</comparator>
<comparator>
<type>RegexpComparator</type>
<expected-output>^( |\t)*- RAM_DISK( )*</expected-output>
</comparator>
<comparator>
<type>RegexpComparator</type>
<expected-output>^( |\t)*- DISK( )*</expected-output>
</comparator>
<comparator>
<type>RegexpComparator</type>
<expected-output>^( |\t)*- SSD( )*</expected-output>
</comparator>
<comparator>
<type>RegexpComparator</type>
<expected-output>^( |\t)*- ARCHIVE( )*</expected-output>
</comparator>
</comparators> </comparators>
</test> </test>