From ee28034a8a155406b111813602cb5f4fb3fb1f4d Mon Sep 17 00:00:00 2001 From: Zhe Zhang Date: Mon, 29 Aug 2016 23:37:26 -0700 Subject: [PATCH] HDFS-10814. Add assertion for getNumEncryptionZones when no EZ is created. Contributed by Vinitha Reddy Gankidi. (cherry picked from commit 4bd45f54eedd449a98a90540698c6ceb47454fec) --- .../test/java/org/apache/hadoop/hdfs/TestEncryptionZones.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 0ebe05c0914..6ae2aca69b4 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");