blob: 4ee068f98e5166c2ff0908b02f3433173b76e2a0 [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.hadoop.hbase;
import java.io.IOException;
import java.util.concurrent.CompletableFuture;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.client.AsyncConnection;
import org.apache.hadoop.hbase.client.ConnectionFactory;
import org.junit.ClassRule;
import org.junit.Rule;
import org.junit.rules.ExternalResource;
import org.junit.rules.TestRule;
/**
* A {@link TestRule} that manages an instance of the {@link MiniHBaseCluster}. Can be used in
* either the {@link Rule} or {@link ClassRule} positions. Built on top of an instance of
* {@link HBaseTestingUtility}, so be weary of intermixing direct use of that class with this Rule.
* </p>
* Use in combination with {@link ConnectionRule}, for example:
*
* <pre>{@code
* public class TestMyClass {
* @ClassRule
* public static final MiniClusterRule miniClusterRule = MiniClusterRule.newBuilder().build();
*
* @Rule
* public final ConnectionRule connectionRule =
* new ConnectionRule(miniClusterRule::createConnection);
* }
* }</pre>
*/
public final class MiniClusterRule extends ExternalResource {
/**
* A builder for fluent composition of a new {@link MiniClusterRule}.
*/
public static class Builder {
private StartMiniClusterOption miniClusterOption;
private Configuration conf;
/**
* Use the provided {@link StartMiniClusterOption} to construct the {@link MiniHBaseCluster}.
*/
public Builder setMiniClusterOption(final StartMiniClusterOption miniClusterOption) {
this.miniClusterOption = miniClusterOption;
return this;
}
/**
* Seed the underlying {@link HBaseTestingUtility} with the provided {@link Configuration}.
*/
public Builder setConfiguration(final Configuration conf) {
this.conf = conf;
return this;
}
public MiniClusterRule build() {
return new MiniClusterRule(
conf,
miniClusterOption != null
? miniClusterOption
: StartMiniClusterOption.builder().build());
}
}
private final HBaseTestingUtility testingUtility;
private final StartMiniClusterOption miniClusterOptions;
private MiniHBaseCluster miniCluster;
private MiniClusterRule(final Configuration conf,
final StartMiniClusterOption miniClusterOptions) {
this.testingUtility = new HBaseTestingUtility(conf);
this.miniClusterOptions = miniClusterOptions;
}
public static Builder newBuilder() {
return new Builder();
}
/**
* @return the underlying instance of {@link HBaseTestingUtility}
*/
public HBaseTestingUtility getTestingUtility() {
return testingUtility;
}
/**
* Create a {@link AsyncConnection} to the managed {@link MiniHBaseCluster}. It's up to the caller
* to {@link AsyncConnection#close() close()} the connection when finished.
*/
public CompletableFuture<AsyncConnection> createConnection() {
if (miniCluster == null) {
throw new IllegalStateException("test cluster not initialized");
}
return ConnectionFactory.createAsyncConnection(miniCluster.getConf());
}
@Override
protected void before() throws Throwable {
miniCluster = testingUtility.startMiniCluster(miniClusterOptions);
}
@Override
protected void after() {
try {
testingUtility.shutdownMiniCluster();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}