125d950dd4
Currently, unittests at real HBase are not usually used. Jenkins jobs and a predominant amount of developers use HBase mock. One of the reasons for this is that unittests at real HBase are too slow. It's due to processing of "disable_table" and "delete_table" commands. In HBase these command take up to 1-2 seconds. Now we create all table-set for each test that's why at real HBase unit tests may be executed several hours. So, at real HBase backend unit tests may be executed several hours. My CR speeds up this case. To solve this problem it was decided to keep all test data in one table. To provide a distinguishability of data from different tests unique row-prefix is used for each one. Creating and deleting required table are implements at setup-test-env.sh. Separating data is implemented with mock.patchs which transforms row value in happybase.Table methods. Change-Id: I1883d6e0619b0b2f223a4e58bdc0fc0656636e1f Closes-bug: #1372912
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
# Licensed 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.
|
|
|
|
import os
|
|
import sys
|
|
|
|
from oslo.config import cfg
|
|
|
|
from ceilometer import storage
|
|
|
|
def main(argv):
|
|
cfg.CONF([], project='ceilometer')
|
|
if os.getenv("CEILOMETER_TEST_HBASE_URL"):
|
|
url = ("%s?table_prefix=%s" %
|
|
(os.getenv("CEILOMETER_TEST_HBASE_URL"),
|
|
os.getenv("CEILOMETER_TEST_HBASE_TABLE_PREFIX", "test")))
|
|
conn = storage.get_connection(url, 'ceilometer.metering.storage')
|
|
alarm_conn = storage.get_connection(url, 'ceilometer.alarm.storage')
|
|
for arg in argv:
|
|
if arg == "--upgrade":
|
|
conn.upgrade()
|
|
alarm_conn.upgrade()
|
|
if arg == "--clear":
|
|
conn.clear()
|
|
alarm_conn.clear()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main(sys.argv[1:]) |