Repository: hadoop Updated Branches: refs/heads/branch-3.0.0-alpha1 a990d2ebc -> 4c00ac815
HDFS-10814. Add assertion for getNumEncryptionZones when no EZ is created. Contributed by Vinitha Reddy Gankidi. (cherry picked from commit 4bd45f54eedd449a98a90540698c6ceb47454fec) Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/4c00ac81 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/4c00ac81 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/4c00ac81 Branch: refs/heads/branch-3.0.0-alpha1 Commit: 4c00ac81595ad33f097db772adc115e94fd170f0 Parents: a990d2e Author: Zhe Zhang <[email protected]> Authored: Mon Aug 29 23:37:26 2016 -0700 Committer: Zhe Zhang <[email protected]> Committed: Mon Aug 29 23:40:29 2016 -0700 ---------------------------------------------------------------------- .../test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/4c00ac81/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java index e221fe4..53c12ec 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java @@ -326,7 +326,9 @@ public class TestEncryptionZones { public void testBasicOperations() throws Exception { int numZones = 0; - + /* Number of EZs should be 0 if no EZ is created */ + assertEquals("Unexpected number of encryption zones!", numZones, + cluster.getNamesystem().getNumEncryptionZones()); /* Test failure of create EZ on a directory that doesn't exist. */ final Path zoneParent = new Path("/zones"); final Path zone1 = new Path(zoneParent, "zone1"); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
