123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?xml-stylesheet type="text/xsl" href="testConf.xsl"?>
- <!--
- 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.
- -->
- <configuration>
- <!-- Normal mode is test. To run just the commands and dump the output
- to the log, set it to nocompare -->
- <mode>test</mode>
- <!-- Comparator types:
- ExactComparator
- SubstringComparator
- RegexpComparator
- TokenComparator
- -->
- <tests>
- <!-- Test usage options -->
- <test>
- <description>usage: help for erasure coding command</description>
- <test-commands>
- <ec-admin-command>-usage</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Can't understand command '-usage'</expected-output>
- </comparator>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Usage: bin/hdfs ec [COMMAND]</expected-output>
- </comparator>
- </comparators>
- </test>
- <!-- Test help options -->
- <test>
- <description>help: help for erasure coding command</description>
- <test-commands>
- <ec-admin-command>-help</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>[-listPolicies]</expected-output>
- </comparator>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>[-unsetPolicy -path</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>help: help with extra argument</description>
- <test-commands>
- <ec-admin-command>-help arg1 arg2</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>You must give exactly one argument to -help.</expected-output>
- <expected-exit-code>1</expected-exit-code>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>help: setPolicy command</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -help setPolicy</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Set the erasure coding policy for a file/directory.</expected-output>
- </comparator>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>[-setPolicy -path <path> [-policy <policy>] [-replicate]]</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>help: getPolicy command</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -help getPolicy</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Get the erasure coding policy of a file/directory</expected-output>
- </comparator>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>[-getPolicy -path <path>]</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>help: listPolicies command</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -help listPolicies</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Get the list of enabled erasure coding policies</expected-output>
- </comparator>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>[-listPolicies]</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>help: addPolicies command</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -help addPolicies</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Add a list of erasure coding policies</expected-output>
- </comparator>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>[-addPolicies -policyFile <file>]</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>help: enablePolicy command</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -help enablePolicy</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Enable the erasure coding policy</expected-output>
- </comparator>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>[-enablePolicy -policy <policy>]</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>help: disablePolicy command</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -help disablePolicy</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Disable the erasure coding policy</expected-output>
- </comparator>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>[-disablePolicy -policy <policy>]</expected-output>
- </comparator>
- </comparators>
- </test>
- <!-- Test erasure code commands -->
- <test>
- <description>setPolicy : set erasure coding policy on a directory to encode files</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-6-3-64k -path /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Set erasure coding policy RS-6-3-64k on /ecdir</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : set a policy twice</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-6-3-64k -path /ecdir</ec-admin-command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-6-3-64k -path /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Set erasure coding policy RS-6-3-64k on /ecdir</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : set replication policy on a directory</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-6-3-64k -path /ecdir</ec-admin-command>
- <command>-fs NAMENODE -mkdir /ecdir/replica</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -replicate -path /ecdir/replica</ec-admin-command>
- <command>-fs NAMENODE -touchz /ecdir/replica/file</command>
- <ec-admin-command>-fs NAMENODE -getPolicy -path /ecdir/replica/file</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rm /ecdir/replica/file</command>
- <command>-fs NAMENODE -rmdir /ecdir/replica</command>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>is unspecified</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>unsetPolicy : unset policy and get</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-6-3-64k -path /ecdir</ec-admin-command>
- <ec-admin-command>-fs NAMENODE -unsetPolicy -path /ecdir</ec-admin-command>
- <ec-admin-command>-fs NAMENODE -getPolicy -path /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>is unspecified</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : change different policy and get</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-6-3-64k -path /ecdir</ec-admin-command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-3-2-64k -path /ecdir</ec-admin-command>
- <ec-admin-command>-fs NAMENODE -getPolicy -path /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>RS-3-2-64k</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>unsetPolicy : unset inherited EC policy, has no effect</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <command>-fs NAMENODE -mkdir /ecdir/child</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-6-3-64k -path /ecdir</ec-admin-command>
- <ec-admin-command>-fs NAMENODE -unsetPolicy -path /ecdir/child</ec-admin-command>
- <command>-fs NAMENODE -touchz /ecdir/child/ecfile</command>
- <ec-admin-command>-fs NAMENODE -getPolicy -path /ecdir/child/ecfile</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rm /ecdir/child/ecfile</command>
- <command>-fs NAMENODE -rmdir /ecdir/child</command>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>RS-6-3-64k</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>getPolicy : get EC policy information at specified path, which doesn't have an EC policy</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /noec</command>
- <ec-admin-command>-fs NAMENODE -getPolicy -path /noec</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /noec</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>is unspecified</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>getPolicy : get EC policy information at specified path, which doesn't have an EC policy</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-6-3-64k -path /ecdir</ec-admin-command>
- <ec-admin-command>-fs NAMENODE -getPolicy -path /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>RS-6-3-64k</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>getPolicy : get EC policy information at specified path, which doesn't have an EC policy</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-6-3-64k -path /ecdir</ec-admin-command>
- <command>-fs NAMENODE -touchz /ecdir/ecfile</command>
- <ec-admin-command>-fs NAMENODE -getPolicy -path /ecdir/ecfile</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rm /ecdir/ecfile</command>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>RS-6-3-64k</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>listPolicies : get the list of ECPolicies supported</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -listPolicies</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>RS-6-3</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>addPolicies : add a list of ECPolicies</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -addPolicies -policyFile CLITEST_DATA/test_ec_policies.xml</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Add ErasureCodingPolicy XOR-2-1-128k succeed</expected-output>
- </comparator>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Add ErasureCodingPolicy RS-6-3-64k failed</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>enablePolicy : enable the erasure coding policy</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -enablePolicy -policy RS-6-3-64k</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Erasure coding policy RS-6-3-64k is enabled</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>enablePolicy : enable the erasure coding policy twice</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -enablePolicy -policy RS-6-3-64k</ec-admin-command>
- <ec-admin-command>-fs NAMENODE -enablePolicy -policy RS-6-3-64k</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Erasure coding policy RS-6-3-64k is enabled</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>disablePolicy : disable the erasure coding policy</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -disablePolicy -policy RS-6-3-64k</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <ec-admin-command>-fs NAMENODE -enablePolicy -policy RS-6-3-64k</ec-admin-command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Erasure coding policy RS-6-3-64k is disabled</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>disablePolicy : disable the erasure coding policy twice</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -disablePolicy -policy RS-6-3-64k</ec-admin-command>
- <ec-admin-command>-fs NAMENODE -disablePolicy -policy RS-6-3-64k</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <ec-admin-command>-fs NAMENODE -enablePolicy -policy RS-6-3-64k</ec-admin-command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Erasure coding policy RS-6-3-64k is disabled</expected-output>
- </comparator>
- </comparators>
- </test>
- <!-- Test illegal parameters -->
- <test>
- <description>setPolicy : illegal parameters - path option is missing</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Please specify the path for setting the EC policy.</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : illegal parameters - path name is missing</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -path</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>option -path requires 1 argument</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : illegal parameters - too many arguments case 1</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -path /ecdir1 -policy RS-3-2-64k /ecdir2</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>-setPolicy: Too many arguments</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : illegal parameters - too many arguments case 2</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -path /ecdir1 -policy RS-3-2-64k -replicate /ecdir2</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>-setPolicy: Too many arguments</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : illegal parameters - invalidpolicy</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy invalidpolicy -path /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Policy 'invalidpolicy' does not match any enabled erasure coding policies</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : illegal parameters - RS-10-4-64k</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -policy RS-10-4-64k -path /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Policy 'RS-10-4-64k' does not match any enabled erasure coding policies</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : illegal parameters - no such file</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -setPolicy -path /ecdir -policy RS-3-2-64k</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Path not found: /ecdir</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : illegal parameters - wrong spelling replicate </description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -setPolicy -path /ecdir -replica</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>-setPolicy: Too many arguments</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : illegal parameters - replicate and policy coexist</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -setPolicy -path /ecdir -policy RS-3-2-64k -replicate</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>-replicate and -policy cannot been used at the same time</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>setPolicy : set erasure coding policy without given a specific policy name</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -path /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Set default erasure coding policy on /ecdir</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>getPolicy: get the default policy after setPolicy without given a specific policy name</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -path /ecdir</ec-admin-command>
- <ec-admin-command>-fs NAMENODE -getPolicy -path /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>RS-6-3-64k</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>getPolicy : illegal parameters - path is missing</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -getPolicy </ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Please specify the path with -path</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>getPolicy : illegal parameters - too many arguments</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -getPolicy -path /ecdir /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rm /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>-getPolicy: Too many arguments</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>getPolicy : illegal parameters - no such file</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -getPolicy -path /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Path not found: /ecdir</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>listPolicies : illegal parameters - too many parameters</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -listPolicies /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>-listPolicies: Too many arguments</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>addPolicies : illegal parameters - policyFile is missing</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -addPolicies /etc</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Please specify the path with -policyFile</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>addPolicies : illegal parameters - too many parameters</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -addPolicies -policyFile /ecdir /ecdir2</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>-addPolicies: Too many arguments</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>enablePolicy : illegal parameters - policy is missing</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -enablePolicy RS-6-3-64k</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Please specify the policy name</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>enablePolicy : illegal parameters - too many parameters</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -enablePolicy -policy RS-6-3-64k RS-3-2-64k</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>-enablePolicy: Too many arguments</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>disablePolicy : illegal parameters - policy is missing</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -disablePolicy RS-6-3-64k</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Please specify the policy name</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>disablePolicy : illegal parameters - too many parameters</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -disablePolicy -policy RS-6-3-64k RS-3-2-64k</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>-disablePolicy: Too many arguments</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>listCodecs : illegal parameters - too many parameters</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -listCodecs /ecdir</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>-listCodecs: Too many arguments</expected-output>
- </comparator>
- </comparators>
- </test>
- <test>
- <description>listCodecs : successful list codecs</description>
- <test-commands>
- <ec-admin-command>-fs NAMENODE -listCodecs</ec-admin-command>
- </test-commands>
- <cleanup-commands>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>SubstringComparator</type>
- <expected-output>Erasure Coding Codecs: Codec [Coder List]</expected-output>
- </comparator>
- </comparators>
- </test>
- <test> <!-- TESTED -->
- <description>count: file using absolute path with option -e to show erasurecoding policy of a directory</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir /dir1</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -path /dir1 -policy RS-6-3-64k</ec-admin-command>
- <command>-fs NAMENODE -touchz /dir1/file1</command>
- <command>-fs NAMENODE -touchz /dir1/file2</command>
- <command>-fs NAMENODE -count -e -v /dir1</command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /dir1</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>RegexpComparator</type>
- <expected-output>( |\t)*1( |\t)*2( |\t)*0 EC:[A-Za-z0-9-]{1,}( )*/dir1</expected-output>
- </comparator>
- </comparators>
- </test>
- <test> <!-- TESTED -->
- <description>count: file using absolute path with option -e to show erasurecoding policy of a file and option -v to show head information</description>
- <test-commands>
- <command>-fs NAMENODE -touchz /file1</command>
- <command>-fs NAMENODE -count -e -v /file1</command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rm /file1</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>RegexpComparator</type>
- <expected-output>( |\t)*DIR_COUNT FILE_COUNT CONTENT_SIZE( )*ERASURECODING_POLICY( )*PATHNAME</expected-output>
- </comparator>
- <comparator>
- <type>RegexpComparator</type>
- <expected-output>( |\t)*0( |\t)*1( |\t)*0 [A-Za-z0-9-]{1,}( )*/file1</expected-output>
- </comparator>
- </comparators>
- </test>
- <test> <!-- TESTED -->
- <description>ls: file using absolute path and option -e to show erasure coding policy of a directory</description>
- <test-commands>
- <command>-fs NAMENODE -mkdir -p /ecdir</command>
- <ec-admin-command>-fs NAMENODE -setPolicy -path /ecdir -policy RS-6-3-64k</ec-admin-command>
- <command>-fs NAMENODE -touchz /ecdir/file1</command>
- <command>-fs NAMENODE -touchz /ecdir/file2</command>
- <command>-fs NAMENODE -touchz /ecdir/file3</command>
- <command>-fs NAMENODE -ls -e /ecdir</command>
- </test-commands>
- <cleanup-commands>
- <command>-fs NAMENODE -rmdir /ecdir</command>
- </cleanup-commands>
- <comparators>
- <comparator>
- <type>RegexpComparator</type>
- <expected-output>Found [0-9] items</expected-output>
- </comparator>
- <comparator>
- <type>RegexpComparator</type>
- <expected-output>^-rw-r--r--( )*1( )*USERNAME( )*supergroup( )*[A-Za-z0-9-]{1,}( )*0( )*[0-9]{4,}-[0-9]{2,}-[0-9]{2,} [0-9]{2,}:[0-9]{2,}( )*/ecdir/file1</expected-output>
- </comparator>
- <comparator>
- <type>RegexpComparator</type>
- <expected-output>^-rw-r--r--( )*1( )*USERNAME( )*supergroup( )*[A-Za-z0-9-]{1,}( )*0( )*[0-9]{4,}-[0-9]{2,}-[0-9]{2,} [0-9]{2,}:[0-9]{2,}( )*/ecdir/file2</expected-output>
- </comparator>
- <comparator>
- <type>RegexpComparator</type>
- <expected-output>^-rw-r--r--( )*1( )*USERNAME( )*supergroup( )*[A-Za-z0-9-]{1,}( )*0( )*[0-9]{4,}-[0-9]{2,}-[0-9]{2,} [0-9]{2,}:[0-9]{2,}( )*/ecdir/file3</expected-output>
- </comparator>
- </comparators>
- </test>
- </tests>
- </configuration>
|