Author: szetszwo
Date: Fri Mar 16 17:48:33 2012
New Revision: 1301665
URL: http://svn.apache.org/viewvc?rev=1301665&view=rev
Log:
HDFS-3104. Add tests for HADOOP-8175. Contributed by Daryn Sharp
Modified:
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml
Modified: hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt?rev=1301665&r1=1301664&r2=1301665&view=diff
==============================================================================
--- hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt (original)
+++ hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt Fri Mar 16
17:48:33 2012
@@ -656,6 +656,8 @@ Release 0.23.2 - UNRELEASED
HDFS-3098. Update and add tests for HADOOP-8173. (Daryn Sharp via szetszwo)
+ HDFS-3104. Add tests for HADOOP-8175. (Daryn Sharp via szetszwo)
+
OPTIMIZATIONS
BUG FIXES
Modified:
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml
URL:
http://svn.apache.org/viewvc/hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml?rev=1301665&r1=1301664&r2=1301665&view=diff
==============================================================================
---
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml
(original)
+++
hadoop/common/trunk/hadoop-hdfs-project/hadoop-hdfs/src/test/resources/testHDFSConf.xml
Fri Mar 16 17:48:33 2012
@@ -5719,6 +5719,42 @@
</comparator>
</comparators>
</test>
+
+ <test> <!-- TESTED -->
+ <description>mkdir: Test recreate of existing directory
fails</description>
+ <test-commands>
+ <command>-fs NAMENODE -rm -r -f dir0</command>
+ <command>-fs NAMENODE -mkdir dir0/dir1</command>
+ <command>-fs NAMENODE -mkdir dir0/dir1</command>
+ </test-commands>
+ <cleanup-commands>
+ <command>-fs NAMENODE -rm -r dir0</command>
+ </cleanup-commands>
+ <comparators>
+ <comparator>
+ <type>RegexpComparator</type>
+ <expected-output>mkdir: `dir0/dir1': File exists</expected-output>
+ </comparator>
+ </comparators>
+ </test>
+
+ <test> <!-- TESTED -->
+ <description>mkdir: Test recreate of existing directory with -p
succeeds</description>
+ <test-commands>
+ <command>-fs NAMENODE -rm -r -f dir0</command>
+ <command>-fs NAMENODE -mkdir dir0/dir1</command>
+ <command>-fs NAMENODE -mkdir -p dir0/dir1</command>
+ </test-commands>
+ <cleanup-commands>
+ <command>-fs NAMENODE -rm -r dir0</command>
+ </cleanup-commands>
+ <comparators>
+ <comparator>
+ <type>ExactComparator</type>
+ <expected-output></expected-output>
+ </comparator>
+ </comparators>
+ </test>
<!--Tests for setrep-->
<test> <!-- TESTED -->