From 9669045691c3ad4bb522b9543335201460f703e4 Mon Sep 17 00:00:00 2001 From: Tsz-wo Sze Date: Fri, 28 Oct 2011 23:45:12 +0000 Subject: [PATCH] svn merge -c 1190677 from trunk for HDFS-2509. git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-0.23@1190680 13f79535-47bb-0310-9956-ffa450edef68 --- hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 3 +++ .../hdfs/TestDistributedFileSystem.java | 20 +++++++++++++++++++ 2 files changed, 23 insertions(+) diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index 8bd74374ac6..22f7f4e362b 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -752,6 +752,9 @@ Release 0.23.0 - Unreleased HDFS-2322. the build fails in Windows because commons-daemon TAR cannot be fetched. (tucu) + HDFS-2509. Add a test for DistributedFileSystem.getFileChecksum(..) on + directories or non existing files. (Uma Maheswara Rao G via szetszwo) + OPTIMIZATIONS HDFS-1458. Improve checkpoint performance by avoiding unnecessary image diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDistributedFileSystem.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDistributedFileSystem.java index 0ea9f017865..c6f86b90c3b 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDistributedFileSystem.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDistributedFileSystem.java @@ -412,6 +412,26 @@ public void testFileChecksum() throws Exception { final UserGroupInformation ugi = UserGroupInformation.createUserForTesting( current.getShortUserName() + "x", new String[]{"user"}); + try { + ((DistributedFileSystem) hdfs).getFileChecksum(new Path( + "/test/TestNonExistingFile")); + fail("Expecting FileNotFoundException"); + } catch (FileNotFoundException e) { + assertTrue("Not throwing the intended exception message", e.getMessage() + .contains("File does not exist: /test/TestNonExistingFile")); + } + + try { + Path path = new Path( + "/test/TestExistingDir/"); + hdfs.mkdirs(path); + ((DistributedFileSystem) hdfs).getFileChecksum(path); + fail("Expecting FileNotFoundException"); + } catch (FileNotFoundException e) { + assertTrue("Not throwing the intended exception message", e.getMessage() + .contains("File does not exist: /test/TestExistingDir")); + } + //hftp final String hftpuri = "hftp://" + nnAddr; System.out.println("hftpuri=" + hftpuri);