001/*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements.  See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership.  The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the
007 * "License"); you may not use this file except in compliance
008 * with the License.  You may obtain a copy of the License at
009 *
010 *     http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 */
018package org.apache.hadoop.hbase.procedure2.store.region;
019
020import static org.mockito.Mockito.mock;
021import static org.mockito.Mockito.when;
022
023import java.io.IOException;
024import org.apache.hadoop.conf.Configuration;
025import org.apache.hadoop.fs.FileSystem;
026import org.apache.hadoop.fs.Path;
027import org.apache.hadoop.hbase.Server;
028import org.apache.hadoop.hbase.ServerName;
029import org.apache.hadoop.hbase.master.MasterServices;
030import org.apache.hadoop.hbase.master.region.MasterRegion;
031import org.apache.hadoop.hbase.procedure2.store.LeaseRecovery;
032import org.apache.hadoop.hbase.procedure2.store.ProcedureStore.ProcedureLoader;
033import org.apache.hadoop.hbase.util.EnvironmentEdgeManager;
034
035final class RegionProcedureStoreTestHelper {
036
037  private RegionProcedureStoreTestHelper() {
038  }
039
040  static MasterServices mockServer(Configuration conf) {
041    MasterServices server = mock(MasterServices.class);
042    when(server.getConfiguration()).thenReturn(conf);
043    when(server.getServerName())
044      .thenReturn(ServerName.valueOf("localhost", 12345, EnvironmentEdgeManager.currentTime()));
045    return server;
046  }
047
048  static RegionProcedureStore createStore(Server server, MasterRegion region,
049    ProcedureLoader loader) throws IOException {
050    RegionProcedureStore store = new RegionProcedureStore(server, region, new LeaseRecovery() {
051
052      @Override
053      public void recoverFileLease(FileSystem fs, Path path) throws IOException {
054      }
055    });
056    store.start(1);
057    store.recoverLease();
058    store.load(loader);
059    return store;
060  }
061}