HBASE-11583 Refactoring out the configuration changes for enabling VisibilityLabels in the unit tests (Srikanth Srungarapu)
This commit is contained in:
parent
b727d1e181
commit
78d47cc0e4
|
@ -18,7 +18,8 @@
|
||||||
package org.apache.hadoop.hbase.security.visibility;
|
package org.apache.hadoop.hbase.security.visibility;
|
||||||
|
|
||||||
import static org.apache.hadoop.hbase.security.visibility.VisibilityConstants.LABELS_TABLE_NAME;
|
import static org.apache.hadoop.hbase.security.visibility.VisibilityConstants.LABELS_TABLE_NAME;
|
||||||
import static org.junit.Assert.*;
|
import static org.junit.Assert.assertFalse;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.security.PrivilegedExceptionAction;
|
import java.security.PrivilegedExceptionAction;
|
||||||
|
@ -28,13 +29,12 @@ import org.apache.hadoop.hbase.HBaseTestingUtility;
|
||||||
import org.apache.hadoop.hbase.HConstants;
|
import org.apache.hadoop.hbase.HConstants;
|
||||||
import org.apache.hadoop.hbase.MediumTests;
|
import org.apache.hadoop.hbase.MediumTests;
|
||||||
import org.apache.hadoop.hbase.TableName;
|
import org.apache.hadoop.hbase.TableName;
|
||||||
import org.apache.hadoop.hbase.client.HTable;
|
|
||||||
import org.apache.hadoop.hbase.client.Get;
|
import org.apache.hadoop.hbase.client.Get;
|
||||||
|
import org.apache.hadoop.hbase.client.HTable;
|
||||||
import org.apache.hadoop.hbase.client.Put;
|
import org.apache.hadoop.hbase.client.Put;
|
||||||
import org.apache.hadoop.hbase.client.Result;
|
import org.apache.hadoop.hbase.client.Result;
|
||||||
import org.apache.hadoop.hbase.security.User;
|
import org.apache.hadoop.hbase.security.User;
|
||||||
import org.apache.hadoop.hbase.util.Bytes;
|
import org.apache.hadoop.hbase.util.Bytes;
|
||||||
|
|
||||||
import org.junit.AfterClass;
|
import org.junit.AfterClass;
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
import org.junit.Rule;
|
import org.junit.Rule;
|
||||||
|
@ -65,9 +65,7 @@ public class TestEnforcingScanLabelGenerator {
|
||||||
public static void setupBeforeClass() throws Exception {
|
public static void setupBeforeClass() throws Exception {
|
||||||
// setup configuration
|
// setup configuration
|
||||||
conf = TEST_UTIL.getConfiguration();
|
conf = TEST_UTIL.getConfiguration();
|
||||||
conf.setInt("hfile.format.version", 3);
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
String classes = DefaultScanLabelGenerator.class.getCanonicalName() + " , "
|
String classes = DefaultScanLabelGenerator.class.getCanonicalName() + " , "
|
||||||
+ EnforcingScanLabelGenerator.class.getCanonicalName();
|
+ EnforcingScanLabelGenerator.class.getCanonicalName();
|
||||||
conf.setStrings(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, classes);
|
conf.setStrings(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, classes);
|
||||||
|
|
|
@ -103,9 +103,7 @@ public class TestVisibilityLabels {
|
||||||
conf = TEST_UTIL.getConfiguration();
|
conf = TEST_UTIL.getConfiguration();
|
||||||
conf.setBoolean(HConstants.DISTRIBUTED_LOG_REPLAY_KEY, false);
|
conf.setBoolean(HConstants.DISTRIBUTED_LOG_REPLAY_KEY, false);
|
||||||
conf.setBoolean("hbase.online.schema.update.enable", true);
|
conf.setBoolean("hbase.online.schema.update.enable", true);
|
||||||
conf.setInt("hfile.format.version", 3);
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, SimpleScanLabelGenerator.class,
|
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, SimpleScanLabelGenerator.class,
|
||||||
ScanLabelGenerator.class);
|
ScanLabelGenerator.class);
|
||||||
conf.set("hbase.superuser", "admin");
|
conf.set("hbase.superuser", "admin");
|
||||||
|
|
|
@ -60,11 +60,9 @@ public class TestVisibilityLabelsOpWithDifferentUsersNoACL {
|
||||||
public static void setupBeforeClass() throws Exception {
|
public static void setupBeforeClass() throws Exception {
|
||||||
// setup configuration
|
// setup configuration
|
||||||
conf = TEST_UTIL.getConfiguration();
|
conf = TEST_UTIL.getConfiguration();
|
||||||
conf.setInt("hfile.format.version", 3);
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
String currentUser = User.getCurrent().getName();
|
String currentUser = User.getCurrent().getName();
|
||||||
conf.set("hbase.superuser", "admin,"+currentUser);
|
conf.set("hbase.superuser", "admin,"+currentUser);
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
TEST_UTIL.startMiniCluster(2);
|
TEST_UTIL.startMiniCluster(2);
|
||||||
|
|
||||||
// Wait for the labels table to become available
|
// Wait for the labels table to become available
|
||||||
|
|
|
@ -85,9 +85,7 @@ public class TestVisibilityLabelsWithDeletes {
|
||||||
// setup configuration
|
// setup configuration
|
||||||
conf = TEST_UTIL.getConfiguration();
|
conf = TEST_UTIL.getConfiguration();
|
||||||
conf.setBoolean(HConstants.DISTRIBUTED_LOG_REPLAY_KEY, false);
|
conf.setBoolean(HConstants.DISTRIBUTED_LOG_REPLAY_KEY, false);
|
||||||
conf.setInt("hfile.format.version", 3);
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, SimpleScanLabelGenerator.class,
|
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, SimpleScanLabelGenerator.class,
|
||||||
ScanLabelGenerator.class);
|
ScanLabelGenerator.class);
|
||||||
conf.set("hbase.superuser", "admin");
|
conf.set("hbase.superuser", "admin");
|
||||||
|
|
|
@ -22,7 +22,6 @@ import static org.apache.hadoop.hbase.security.visibility.VisibilityConstants.LA
|
||||||
import org.apache.hadoop.hbase.HConstants;
|
import org.apache.hadoop.hbase.HConstants;
|
||||||
import org.apache.hadoop.hbase.MediumTests;
|
import org.apache.hadoop.hbase.MediumTests;
|
||||||
import org.apache.hadoop.hbase.security.User;
|
import org.apache.hadoop.hbase.security.User;
|
||||||
import org.junit.AfterClass;
|
|
||||||
import org.junit.BeforeClass;
|
import org.junit.BeforeClass;
|
||||||
import org.junit.experimental.categories.Category;
|
import org.junit.experimental.categories.Category;
|
||||||
|
|
||||||
|
@ -37,9 +36,8 @@ public class TestVisibilityLabelsWithDistributedLogReplay extends TestVisibility
|
||||||
// setup configuration
|
// setup configuration
|
||||||
conf = TEST_UTIL.getConfiguration();
|
conf = TEST_UTIL.getConfiguration();
|
||||||
conf.setBoolean(HConstants.DISTRIBUTED_LOG_REPLAY_KEY, true);
|
conf.setBoolean(HConstants.DISTRIBUTED_LOG_REPLAY_KEY, true);
|
||||||
conf.setInt("hfile.format.version", 3);
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, SimpleScanLabelGenerator.class,
|
conf.setClass(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, SimpleScanLabelGenerator.class,
|
||||||
ScanLabelGenerator.class);
|
ScanLabelGenerator.class);
|
||||||
conf.set("hbase.superuser", "admin");
|
conf.set("hbase.superuser", "admin");
|
||||||
|
|
|
@ -65,9 +65,7 @@ public class TestVisibilityLabelsWithSLGStack {
|
||||||
public static void setupBeforeClass() throws Exception {
|
public static void setupBeforeClass() throws Exception {
|
||||||
// setup configuration
|
// setup configuration
|
||||||
conf = TEST_UTIL.getConfiguration();
|
conf = TEST_UTIL.getConfiguration();
|
||||||
conf.setInt("hfile.format.version", 3);
|
VisibilityTestUtil.enableVisiblityLabels(conf);
|
||||||
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
|
||||||
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
|
||||||
String classes = SimpleScanLabelGenerator.class.getCanonicalName() + " , "
|
String classes = SimpleScanLabelGenerator.class.getCanonicalName() + " , "
|
||||||
+ LabelFilteringScanLabelGenerator.class.getCanonicalName();
|
+ LabelFilteringScanLabelGenerator.class.getCanonicalName();
|
||||||
conf.setStrings(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, classes);
|
conf.setStrings(VisibilityUtils.VISIBILITY_LABEL_GENERATOR_CLASS, classes);
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
/**
|
||||||
|
* 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.security.visibility;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import org.apache.hadoop.conf.Configuration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Utility methods for testing visibility labels.
|
||||||
|
*/
|
||||||
|
public class VisibilityTestUtil {
|
||||||
|
|
||||||
|
public static void enableVisiblityLabels(Configuration conf) throws IOException {
|
||||||
|
conf.setInt("hfile.format.version", 3);
|
||||||
|
conf.set("hbase.coprocessor.master.classes", VisibilityController.class.getName());
|
||||||
|
conf.set("hbase.coprocessor.region.classes", VisibilityController.class.getName());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue