4b2488b7d8
The Oslo libraries have moved all of their code out of the 'oslo' namespace package into per-library packages. The namespace package was retained during kilo for backwards compatibility, but will be removed by the liberty-2 milestone. This change removes the use of the namespace package, replacing it with the new package names. The patches in the libraries will be put on hold until application patches have landed, or L2, whichever comes first. At that point, new versions of the libraries without namespace packages will be released as a major version update. Please merge this patch, or an equivalent, before L2 to avoid problems with those library releases. Blueprint: remove-namespace-packages https://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages Change-Id: I5e2f3d91bf02d6a00ef0e90961b479e0e9323c8c
72 lines
2.2 KiB
Python
72 lines
2.2 KiB
Python
# Copyright 2013 - Red Hat, Inc.
|
|
#
|
|
# 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 tempfile
|
|
|
|
import fixtures
|
|
from oslo_config import cfg
|
|
from oslo_db import options
|
|
|
|
from solum.common import context
|
|
from solum import objects
|
|
from solum.objects.sqlalchemy import models
|
|
|
|
CONF = cfg.CONF
|
|
|
|
|
|
def dummy_context(user='test_username', tenant_id='fake_project_id',
|
|
user_name='usr_name'):
|
|
return context.RequestContext(user=user, tenant=tenant_id,
|
|
user_name=user_name)
|
|
|
|
|
|
class Database(fixtures.Fixture):
|
|
|
|
def __init__(self):
|
|
super(Database, self).__init__()
|
|
self.db_file = None
|
|
with tempfile.NamedTemporaryFile(suffix='.sqlite',
|
|
delete=False) as test_file:
|
|
# note the temp file gets deleted by the NestedTempfile fixture.
|
|
self.db_file = test_file.name
|
|
objects.IMPL.cleanup()
|
|
|
|
def setUp(self):
|
|
super(Database, self).setUp()
|
|
self.configure()
|
|
self.addCleanup(objects.IMPL.cleanup)
|
|
models.Base.metadata.create_all(objects.IMPL.get_engine())
|
|
objects.IMPL.get_engine().connect()
|
|
objects.load()
|
|
|
|
def configure(self):
|
|
options.cfg.set_defaults(options.database_opts,
|
|
sqlite_synchronous=False)
|
|
options.set_defaults(cfg.CONF,
|
|
connection='sqlite:///%s' % self.db_file,
|
|
sqlite_db=self.db_file)
|
|
|
|
|
|
def get_dummy_session():
|
|
return objects.IMPL.get_session()
|
|
|
|
|
|
def create_models_from_data(model_cls, data, ctx):
|
|
for d in data:
|
|
mdl = model_cls()
|
|
for key, value in d.items():
|
|
setattr(mdl, key, value)
|
|
mdl.create(ctx)
|
|
d['id'] = mdl.id
|