
This commit adds a new management_ip field to the dcorch subcloud table. This field will be used to build the subclouds service endpoints after the OptimizedOpenStackDriver [1] is integrated into dcorch. The DB upgrade script and related upgrade tests will be done in a separate commit. Test Plan: 1. PASS - Run the dcorch database migration script to update it to version 009, verify that the management_ip column is added to the subcloud table. 2. PASS - Add a new subcloud and verify in dcorch DB that the a new subcloud item was added with the correct management_ip field. 3. PASS - Run a subcloud update with network reconfiguration, changing the management_ip, verify that in dcorch DB that the subcloud item was updated correctly. [1]: https://review.opendev.org/c/starlingx/distcloud/+/918311 Story: 2011106 Task: 50105 Change-Id: If1c299700fd769dc8f89172c5088fe7de66d0774 Signed-off-by: Gustavo Herzmann <gustavo.herzmann@windriver.com>
124 lines
3.4 KiB
Python
124 lines
3.4 KiB
Python
# Copyright (c) 2015 Ericsson AB
|
|
# Copyright (c) 2024 Wind River Systems, Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# 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 random
|
|
import string
|
|
import uuid
|
|
|
|
import eventlet
|
|
from oslo_config import cfg
|
|
from oslo_db import options
|
|
import sqlalchemy
|
|
|
|
from dccommon import consts as dccommon_consts
|
|
from dcorch.common import context
|
|
from dcorch.db import api as db_api
|
|
from dcorch.tests import base
|
|
|
|
get_engine = db_api.get_engine
|
|
|
|
|
|
class UUIDStub(object):
|
|
def __init__(self, value):
|
|
self.value = value
|
|
|
|
def __enter__(self):
|
|
self.uuid4 = uuid.uuid4
|
|
uuid_stub = lambda: self.value
|
|
uuid.uuid4 = uuid_stub
|
|
|
|
def __exit__(self, *exc_info):
|
|
uuid.uuid4 = self.uuid4
|
|
|
|
|
|
UUIDs = (UUID1, UUID2, UUID3, UUID4, UUID5) = sorted([str(uuid.uuid4())
|
|
for x in range(5)])
|
|
|
|
|
|
def random_name():
|
|
return ''.join(random.choice(string.ascii_uppercase)
|
|
for x in range(10))
|
|
|
|
|
|
def setup_dummy_db():
|
|
options.cfg.set_defaults(options.database_opts, sqlite_synchronous=False)
|
|
options.set_defaults(cfg.CONF, connection="sqlite://")
|
|
engine = get_engine()
|
|
db_api.db_sync(engine)
|
|
engine.connect()
|
|
|
|
|
|
def reset_dummy_db():
|
|
engine = get_engine()
|
|
meta = sqlalchemy.MetaData()
|
|
meta.reflect(bind=engine)
|
|
|
|
for table in reversed(meta.sorted_tables):
|
|
if table.name == 'migrate_version':
|
|
continue
|
|
engine.execute(table.delete())
|
|
|
|
|
|
def create_quota_limit(ctxt, **kwargs):
|
|
values = {
|
|
'project_id': UUID1,
|
|
'resource': "ram",
|
|
'limit': 10,
|
|
}
|
|
values.update(kwargs)
|
|
return db_api.quota_create(ctxt, **values)
|
|
|
|
|
|
def dummy_context(user='test_username', tenant='test_project_id',
|
|
region_name=None):
|
|
return context.RequestContext.from_dict({
|
|
'auth_token': 'abcd1234',
|
|
'user': user,
|
|
'project': tenant,
|
|
'is_admin': True,
|
|
'region_name': region_name
|
|
})
|
|
|
|
|
|
def wait_until_true(predicate, timeout=60, sleep=1, exception=None):
|
|
with eventlet.timeout.Timeout(timeout, exception):
|
|
while not predicate():
|
|
eventlet.sleep(sleep)
|
|
|
|
|
|
def create_subcloud_static(ctxt, name, **kwargs):
|
|
values = {
|
|
'software_version': '10.04',
|
|
'management_state': dccommon_consts.MANAGEMENT_MANAGED,
|
|
'availability_status': dccommon_consts.AVAILABILITY_ONLINE,
|
|
'initial_sync_state': '',
|
|
'capabilities': base.CAPABILITES,
|
|
'management_ip': '192.168.0.1'
|
|
}
|
|
values.update(kwargs)
|
|
return db_api.subcloud_create(ctxt, name, values=values)
|
|
|
|
|
|
def create_subcloud_sync_static(ctxt, name, endpoint_type, **kwargs):
|
|
values = {
|
|
'subcloud_name': name,
|
|
'endpoint_type': endpoint_type,
|
|
'subcloud_id': '',
|
|
'sync_request': ''
|
|
}
|
|
values.update(kwargs)
|
|
return db_api.subcloud_sync_create(ctxt, name, endpoint_type, values=values)
|