blob: 7439b1d549f33390ce5082c617c0f42ae129b805 [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.phoenix.end2end;
import javax.annotation.concurrent.NotThreadSafe;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.hbase.HConstants;
import org.apache.phoenix.query.BaseTest;
import org.apache.phoenix.util.ReadOnlyProps;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.experimental.categories.Category;
/**
* Base class for tests that let HBase set timestamps.
* We need to separate these from tests that rely on clients
* to set timestamps, because we create/destroy the Phoenix tables
* between tests and only allow a table time stamp to increase.
* Without this separation table deletion/creation would fail.
*
* Try and use (@link BaseHBaseManagedTimeTableReuseIT) and only
* extend this class if really necessary. It is very slow as
* we have to delete tables which takes up to 10 seconds per test case.
* All tests extending this class use the mini cluster that is
* different from the mini cluster used by test classes extending
* {@link BaseClientManagedTimeIT}.
*
* @since 0.1
*/
@NotThreadSafe
@Category(HBaseManagedTimeTest.class)
public abstract class BaseHBaseManagedTimeIT extends BaseTest {
protected static Configuration getTestClusterConfig() {
// don't want callers to modify config.
return new Configuration(config);
}
@BeforeClass
public static void doSetup() throws Exception {
setUpTestDriver(ReadOnlyProps.EMPTY_PROPS);
}
@AfterClass
public static void doTeardown() throws Exception {
dropNonSystemTables();
}
@After
public void cleanUpAfterTest() throws Exception {
deletePriorMetaData(HConstants.LATEST_TIMESTAMP, getUrl());
}
}