TestEnclosingRoot.java
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.hadoop.hdfs;
import java.io.File;
import java.util.EnumSet;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.crypto.key.JavaKeyStoreProvider;
import org.apache.hadoop.fs.CommonConfigurationKeysPublic;
import org.apache.hadoop.fs.FileSystemTestHelper;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.hdfs.client.CreateEncryptionZoneFlag;
import org.apache.hadoop.hdfs.client.HdfsAdmin;
import org.apache.hadoop.hdfs.server.namenode.EncryptionFaultInjector;
import org.apache.hadoop.hdfs.server.namenode.EncryptionZoneManager;
import org.apache.hadoop.test.AbstractHadoopTestBase;
import org.apache.hadoop.test.GenericTestUtils;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.slf4j.event.Level;
import static org.assertj.core.api.Assertions.assertThat;
public class TestEnclosingRoot extends AbstractHadoopTestBase {
private static final Logger LOG = LoggerFactory.getLogger(TestEnclosingRoot.class);
private static final String TEST_KEY = "test_key";
private static final EnumSet<CreateEncryptionZoneFlag> NO_TRASH =
EnumSet.of(CreateEncryptionZoneFlag.NO_TRASH);
private Configuration conf;
private FileSystemTestHelper fsHelper;
private MiniDFSCluster cluster;
private HdfsAdmin dfsAdmin;
private DistributedFileSystem fs;
private File testRootDir;
private String getKeyProviderURI() {
return JavaKeyStoreProvider.SCHEME_NAME + "://file" +
new Path(testRootDir.toString(), "test.jks").toUri();
}
@BeforeEach
public void setup() throws Exception {
conf = new HdfsConfiguration();
fsHelper = new FileSystemTestHelper();
// Set up java key store
String testRoot = fsHelper.getTestRootDir();
testRootDir = new File(testRoot).getAbsoluteFile();
conf.set(CommonConfigurationKeysPublic.HADOOP_SECURITY_KEY_PROVIDER_PATH,
getKeyProviderURI());
conf.setBoolean(DFSConfigKeys.DFS_NAMENODE_DELEGATION_TOKEN_ALWAYS_USE_KEY, true);
// Lower the batch size for testing
conf.setInt(DFSConfigKeys.DFS_NAMENODE_LIST_ENCRYPTION_ZONES_NUM_RESPONSES,
2);
cluster = new MiniDFSCluster.Builder(conf).numDataNodes(1).build();
cluster.waitActive();
GenericTestUtils.setLogLevel(
LoggerFactory.getLogger(EncryptionZoneManager.class), Level.TRACE);
fs = cluster.getFileSystem();
dfsAdmin = new HdfsAdmin(cluster.getURI(), conf);
setProvider();
// Create a test key
DFSTestUtil.createKey(TEST_KEY, cluster, conf);
}
protected void setProvider() {
// Need to set the client's KeyProvider to the NN's for JKS,
// else the updates do not get flushed properly
fs.getClient().setKeyProvider(cluster.getNameNode().getNamesystem()
.getProvider());
}
@AfterEach
public void teardown() {
try {
if (cluster != null) {
cluster.shutdown();
cluster = null;
}
} finally {
EncryptionFaultInjector.instance = new EncryptionFaultInjector();
}
}
@Test
/**
* Testing basic operations for getEnclosingRoot with dfs/DistributedFileSystem
*/
public void testBasicOperations() throws Exception {
final Path rootDir = new Path("/");
final Path zone1 = new Path(rootDir, "zone1");
// Ensure that the root "/" returns the root without mount points or encryption zones
assertThat(fs.getEnclosingRoot(rootDir))
.describedAs("enclosing root of %s", rootDir)
.isEqualTo(rootDir);
// Ensure a dir returns the root without mount points or encryption zones
assertThat(fs.getEnclosingRoot(zone1))
.describedAs("enclosing root of %s", zone1)
.isEqualTo(rootDir);
// create an encryption zone
fs.mkdirs(zone1);
dfsAdmin.createEncryptionZone(zone1, TEST_KEY, NO_TRASH);
// Ensure that the root "/" returns the root with an encryption zone present
assertThat(fs.getEnclosingRoot(rootDir))
.describedAs("enclosing root of %s", rootDir)
.isEqualTo(rootDir);
// Ensure that the encryption zone path itself returns correctly as itself
assertThat(fs.getEnclosingRoot(zone1))
.describedAs("enclosing root of %s", zone1)
.isEqualTo(zone1);
// Ensure that a path where the file does not exist returns the encryption zone root path
final Path zone1FileDNE = new Path(zone1, "newDNE.txt");
assertThat(fs.getEnclosingRoot(zone1FileDNE))
.describedAs("enclosing root of %s", zone1FileDNE)
.isEqualTo(zone1);
// Ensure that a path where the dir does not exist returns the encryption zone root path
final Path zone1DirDNE = new Path(zone1, "zone2/newDNE.txt");
assertThat(fs.getEnclosingRoot(zone1DirDNE))
.describedAs("enclosing root of %s", zone1DirDNE)
.isEqualTo(zone1);
}
}