65 lines
1.9 KiB
Python
65 lines
1.9 KiB
Python
# Copyright 2014 Huawei Technologies Co. Ltd
|
|
#
|
|
# 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 datetime
|
|
import logging
|
|
import os
|
|
import unittest2
|
|
|
|
|
|
os.environ['COMPASS_IGNORE_SETTING'] = 'true'
|
|
|
|
|
|
from compass.utils import setting_wrapper as setting
|
|
reload(setting)
|
|
|
|
|
|
from compass.db.api import adapter_holder as adapter_api
|
|
from compass.db.api import database
|
|
from compass.db.api import metadata_holder as metadata_api
|
|
from compass.db.api import switch
|
|
from compass.db.api import user as user_api
|
|
from compass.db import exception
|
|
from compass.utils import flags
|
|
from compass.utils import logsetting
|
|
|
|
|
|
class BaseTest(unittest2.TestCase):
|
|
"""Base Class for unit test."""
|
|
|
|
def setUp(self):
|
|
super(BaseTest, self).setUp()
|
|
os.environ['COMPASS_IGNORE_SETTING'] = 'true'
|
|
os.environ['COMPASS_CONFIG_DIR'] = os.path.join(
|
|
os.path.dirname(os.path.abspath(__file__)),
|
|
'data'
|
|
)
|
|
reload(setting)
|
|
database.init('sqlite://')
|
|
database.create_db()
|
|
adapter_api.load_adapters(force_reload=True)
|
|
metadata_api.load_metadatas(force_reload=True)
|
|
adapter_api.load_flavors(force_reload=True)
|
|
self.user_object = (
|
|
user_api.get_user_object(
|
|
setting.COMPASS_ADMIN_EMAIL
|
|
)
|
|
)
|
|
|
|
def tearDown(self):
|
|
super(BaseTest, self).setUp()
|
|
reload(setting)
|
|
database.drop_db()
|