
When Tempest is used in customer site, often we are required to provide a testcase list including testcase names and descriptions. Now no this kind of doc is available, so we can add descriptions with the format of doc string for every testcase, so later we can generata such a testcase description list. There are hundreds of testcases missing descriptions, so we can add them gradually, and limit the modified files in one patch for the convenience of reviewing. Change-Id: I3726f5df4afd23366a5a34de9c9da8b69287d30e partially-implements: blueprint testcase-description
159 lines
6.1 KiB
Python
159 lines
6.1 KiB
Python
# Copyright 2013 Huawei Technologies Co.,LTD.
|
|
# 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.
|
|
|
|
from tempest.api.compute import base
|
|
from tempest.lib.common.utils import data_utils
|
|
from tempest.lib import decorators
|
|
from tempest.lib import exceptions as lib_exc
|
|
|
|
|
|
class HypervisorAdminNegativeTestBase(base.BaseV2ComputeAdminTest):
|
|
"""Tests Hypervisors API that require admin privileges"""
|
|
|
|
@classmethod
|
|
def setup_clients(cls):
|
|
super(HypervisorAdminNegativeTestBase, cls).setup_clients()
|
|
cls.client = cls.os_admin.hypervisor_client
|
|
cls.non_adm_client = cls.hypervisor_client
|
|
|
|
def _list_hypervisors(self):
|
|
# List of hypervisors
|
|
hypers = self.client.list_hypervisors()['hypervisors']
|
|
return hypers
|
|
|
|
|
|
class HypervisorAdminNegativeTestJSON(HypervisorAdminNegativeTestBase):
|
|
"""Tests Hypervisors API that require admin privileges"""
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('c136086a-0f67-4b2b-bc61-8482bd68989f')
|
|
def test_show_nonexistent_hypervisor(self):
|
|
"""Test showing non existent hypervisor should fail"""
|
|
nonexistent_hypervisor_id = data_utils.rand_uuid()
|
|
|
|
self.assertRaises(
|
|
lib_exc.NotFound,
|
|
self.client.show_hypervisor,
|
|
nonexistent_hypervisor_id)
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('51e663d0-6b89-4817-a465-20aca0667d03')
|
|
def test_show_hypervisor_with_non_admin_user(self):
|
|
"""Test showing hypervisor by non admin user should fail"""
|
|
hypers = self._list_hypervisors()
|
|
self.assertNotEmpty(hypers)
|
|
|
|
self.assertRaises(
|
|
lib_exc.Forbidden,
|
|
self.non_adm_client.show_hypervisor,
|
|
hypers[0]['id'])
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('e2b061bb-13f9-40d8-9d6e-d5bf17595849')
|
|
def test_get_hypervisor_stats_with_non_admin_user(self):
|
|
"""Test getting hypervisor stats by non admin user should fail"""
|
|
self.assertRaises(
|
|
lib_exc.Forbidden,
|
|
self.non_adm_client.show_hypervisor_statistics)
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('f60aa680-9a3a-4c7d-90e1-fae3a4891303')
|
|
def test_get_nonexistent_hypervisor_uptime(self):
|
|
"""Test showing uptime of non existent hypervisor should fail"""
|
|
nonexistent_hypervisor_id = data_utils.rand_uuid()
|
|
|
|
self.assertRaises(
|
|
lib_exc.NotFound,
|
|
self.client.show_hypervisor_uptime,
|
|
nonexistent_hypervisor_id)
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('6c3461f9-c04c-4e2a-bebb-71dc9cb47df2')
|
|
def test_get_hypervisor_uptime_with_non_admin_user(self):
|
|
"""Test showing uptime of hypervisor by non admin user should fail"""
|
|
hypers = self._list_hypervisors()
|
|
self.assertNotEmpty(hypers)
|
|
|
|
self.assertRaises(
|
|
lib_exc.Forbidden,
|
|
self.non_adm_client.show_hypervisor_uptime,
|
|
hypers[0]['id'])
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('51b3d536-9b14-409c-9bce-c6f7c794994e')
|
|
def test_get_hypervisor_list_with_non_admin_user(self):
|
|
"""Test listing hypervisors by non admin user should fail"""
|
|
self.assertRaises(
|
|
lib_exc.Forbidden,
|
|
self.non_adm_client.list_hypervisors)
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('dc02db05-e801-4c5f-bc8e-d915290ab345')
|
|
def test_get_hypervisor_list_details_with_non_admin_user(self):
|
|
"""Test listing hypervisor details by non admin user should fail"""
|
|
self.assertRaises(
|
|
lib_exc.Forbidden,
|
|
self.non_adm_client.list_hypervisors, detail=True)
|
|
|
|
|
|
class HypervisorAdminNegativeUnderV252Test(HypervisorAdminNegativeTestBase):
|
|
"""Tests Hypervisors API below ver 2.53 that require admin privileges"""
|
|
|
|
max_microversion = '2.52'
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('2a0a3938-832e-4859-95bf-1c57c236b924')
|
|
def test_show_servers_with_non_admin_user(self):
|
|
"""Test showing hypervisor servers by non admin user should fail"""
|
|
hypers = self._list_hypervisors()
|
|
self.assertNotEmpty(hypers)
|
|
|
|
self.assertRaises(
|
|
lib_exc.Forbidden,
|
|
self.non_adm_client.list_servers_on_hypervisor,
|
|
hypers[0]['id'])
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('02463d69-0ace-4d33-a4a8-93d7883a2bba')
|
|
def test_show_servers_with_nonexistent_hypervisor(self):
|
|
"""Test showing servers on non existent hypervisor should fail"""
|
|
nonexistent_hypervisor_id = data_utils.rand_uuid()
|
|
|
|
self.assertRaises(
|
|
lib_exc.NotFound,
|
|
self.client.list_servers_on_hypervisor,
|
|
nonexistent_hypervisor_id)
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('5b6a6c79-5dc1-4fa5-9c58-9c8085948e74')
|
|
def test_search_hypervisor_with_non_admin_user(self):
|
|
"""Test searching hypervisor by non admin user should fail"""
|
|
hypers = self._list_hypervisors()
|
|
self.assertNotEmpty(hypers)
|
|
|
|
self.assertRaises(
|
|
lib_exc.Forbidden,
|
|
self.non_adm_client.search_hypervisor,
|
|
hypers[0]['hypervisor_hostname'])
|
|
|
|
@decorators.attr(type=['negative'])
|
|
@decorators.idempotent_id('19a45cc1-1000-4055-b6d2-28e8b2ec4faa')
|
|
def test_search_nonexistent_hypervisor(self):
|
|
"""Test searching non existent hypervisor should fail"""
|
|
self.assertRaises(
|
|
lib_exc.NotFound,
|
|
self.client.search_hypervisor,
|
|
'nonexistent_hypervisor_name')
|