diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index f0483f72467..e22f961fd6e 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -522,6 +522,9 @@ Release 2.8.0 - UNRELEASED HDFS-8207. Improper log message when blockreport interval compared with initial delay. (Brahma Reddy Battula and Ashish Singhi via ozawa) + HDFS-7559. Create unit test to automatically compare HDFS related classes + and hdfs-default.xml. (Ray Chiang via asuresh) + OPTIMIZATIONS HDFS-8026. Trace FSOutputSummer#writeChecksumChunks rather than diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/tools/TestHdfsConfigFields.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/tools/TestHdfsConfigFields.java new file mode 100644 index 00000000000..0e75d817d6a --- /dev/null +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/tools/TestHdfsConfigFields.java @@ -0,0 +1,80 @@ +/** + * 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.tools; + +import java.util.HashSet; + +import org.apache.hadoop.conf.TestConfigurationFieldsBase; +import org.apache.hadoop.hdfs.DFSConfigKeys; + +/** + * Unit test class to compare the following MR Configuration classes: + *
+ * {@link org.apache.hadoop.hdfs.DFSConfigKeys} + * + * against hdfs-default.xml for missing properties. Currently only + * throws an error if the class is missing a property. + * + * Refer to {@link org.apache.hadoop.conf.TestConfigurationFieldsBase} + * for how this class works. + */ +public class TestHdfsConfigFields extends TestConfigurationFieldsBase { + + @Override + public void initializeMemberVariables() { + xmlFilename = new String("hdfs-default.xml"); + configurationClasses = new Class[] { DFSConfigKeys.class }; + + // Set error modes + errorIfMissingConfigProps = true; + errorIfMissingXmlProps = false; + + // Allocate + xmlPropsToSkipCompare = new HashSet