blob: d13208a7c4a4c75e9c2c73eae66804502b20c857 [file] [log] [blame]
/**
* 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.storm.hdfs.testing;
import java.io.File;
import java.util.function.Supplier;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hdfs.MiniDFSCluster;
import org.junit.jupiter.api.extension.AfterAllCallback;
import org.junit.jupiter.api.extension.BeforeAllCallback;
import org.junit.jupiter.api.extension.ExtensionContext;
import static org.apache.storm.hdfs.testing.MiniDFSClusterExtension.getTestDir;
public class MiniDFSClusterExtensionClassLevel implements BeforeAllCallback, AfterAllCallback {
private static final String TEST_BUILD_DATA = "test.build.data";
private final Supplier<Configuration> hadoopConfSupplier;
private Configuration hadoopConf;
private MiniDFSCluster dfscluster;
public MiniDFSClusterExtensionClassLevel() {
this(() -> new Configuration());
}
public MiniDFSClusterExtensionClassLevel(Supplier<Configuration> hadoopConfSupplier) {
this.hadoopConfSupplier = hadoopConfSupplier;
}
public Configuration getHadoopConf() {
return hadoopConf;
}
public MiniDFSCluster getDfscluster() {
return dfscluster;
}
@Override
public void beforeAll(ExtensionContext arg0) throws Exception {
System.setProperty(TEST_BUILD_DATA, "target/test/data");
hadoopConf = hadoopConfSupplier.get();
String tempDir = getTestDir("dfs").getAbsolutePath() + File.separator;
hadoopConf.set("hdfs.minidfs.basedir", tempDir);
dfscluster = new MiniDFSCluster.Builder(hadoopConf).numDataNodes(3).build();
dfscluster.waitActive();
}
@Override
public void afterAll(ExtensionContext arg0) throws Exception {
dfscluster.shutdown();
System.clearProperty(TEST_BUILD_DATA);
}
}