HDFS-10814. Add assertion for getNumEncryptionZones when no EZ is created. Contributed by Vinitha Reddy Gankidi.

This commit is contained in:
Zhe Zhang 2016-08-29 23:37:26 -07:00
parent cd5e10ccca
commit 4bd45f54ee
1 changed files with 3 additions and 1 deletions

View File

@ -326,7 +326,9 @@ public void testProvisionTrash() throws Exception {
public void testBasicOperations() throws Exception { public void testBasicOperations() throws Exception {
int numZones = 0; 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. */ /* Test failure of create EZ on a directory that doesn't exist. */
final Path zoneParent = new Path("/zones"); final Path zoneParent = new Path("/zones");
final Path zone1 = new Path(zoneParent, "zone1"); final Path zone1 = new Path(zoneParent, "zone1");