Merge "API for list all service for senlin engine"

This commit is contained in:
Zuul 2021-12-15 02:48:51 +00:00 committed by Gerrit Code Review
commit 33a38e44f0
4 changed files with 40 additions and 1 deletions

View File

@ -20,7 +20,7 @@ CONF = config.CONF
class BaseSenlinTest(test.BaseTestCase):
credentials = ['primary']
credentials = ['primary', 'admin']
default_params = config.service_client_config()

View File

@ -40,6 +40,13 @@ class BaseSenlinAPITest(base.BaseSenlinTest):
**cls.default_params_with_timeout_values
)
cls.admin_client = clustering_client.ClusteringAPIClient(
cls.os_admin.auth_provider,
CONF.clustering.catalog_type,
CONF.identity.region,
**cls.default_params_with_timeout_values
)
cls.compute_client = compute_client.V21ComputeClient(
cls.os_primary.auth_provider,
CONF.compute.catalog_type,

View File

@ -0,0 +1,32 @@
# 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.
from tempest.lib import decorators
from senlin_tempest_plugin.common import utils
from senlin_tempest_plugin.tests.api import base
class TestServicesList(base.BaseSenlinAPITest):
@utils.api_microversion('1.7')
@decorators.idempotent_id('ff263248-19e2-488d-8fb3-fc09ed3b078e')
def test_services_list(self):
res = self.admin_client.list_objs('services')
self.assertEqual(200, res['status'])
self.assertIsNotNone(res['body'])
services = res['body']
for service in services:
for key in ['binary', 'host', 'id', 'state',
'status', 'topic', 'updated_at']:
self.assertIn(key, service)