5f083986ad
Change-Id: I8ae17f57afdb2129fc39452f19b3c24bbabb53a9
85 lines
3.6 KiB
Python
85 lines
3.6 KiB
Python
# Copyright 2014: Mirantis 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.
|
|
|
|
from rally.common.plugin import info
|
|
from rally.common.plugin import plugin
|
|
from rally.common import validation
|
|
from rally import plugins
|
|
from rally.task import scenario
|
|
from tests.unit import test
|
|
|
|
|
|
class DocstringsTestCase(test.TestCase):
|
|
|
|
def setUp(self):
|
|
super(DocstringsTestCase, self).setUp()
|
|
plugins.load()
|
|
|
|
def _validate_code_block(self, plg_cls, code_block):
|
|
ignored_params = ["self", "scenario_obj"]
|
|
params_count = code_block.co_argcount
|
|
params = code_block.co_varnames[:params_count]
|
|
param_data = plg_cls.get_info()["parameters"]
|
|
documented_params = [p["name"] for p in param_data]
|
|
result = []
|
|
for param in params:
|
|
if param not in ignored_params:
|
|
if param not in documented_params:
|
|
msg = ("Class: %(class)s Docstring for "
|
|
"%(scenario)s should"
|
|
" describe the '%(param)s' parameter"
|
|
" in the :param <name>: clause."
|
|
% {"class": plg_cls.__name__,
|
|
"scenario": plg_cls.get_name(),
|
|
"param": param})
|
|
result.append(msg)
|
|
return result
|
|
|
|
def _check_docstrings(self, msg_buffer):
|
|
for plg_cls in plugin.Plugin.get_all():
|
|
if plg_cls.__module__.startswith("rally."):
|
|
doc = info.parse_docstring(plg_cls.__doc__)
|
|
short_description = doc["short_description"]
|
|
if short_description.startswith("Test"):
|
|
msg_buffer.append("One-line description for %s"
|
|
" should be declarative and not"
|
|
" start with 'Test(s) ...'"
|
|
% plg_cls.__name__)
|
|
if not plg_cls.get_info()["title"]:
|
|
msg = "Class '{}.{}' should have a docstring."
|
|
msg_buffer.append(msg.format(plg_cls.__module__,
|
|
plg_cls.__name__))
|
|
|
|
def _check_described_params(self, msg_buffer):
|
|
for plg_cls in plugin.Plugin.get_all():
|
|
msg = []
|
|
if hasattr(plg_cls, "run") and issubclass(
|
|
plg_cls, scenario.Scenario):
|
|
msg = self._validate_code_block(plg_cls,
|
|
plg_cls.run.__code__)
|
|
elif hasattr(plg_cls, "validate") and issubclass(
|
|
plg_cls, validation.Validator):
|
|
msg = self._validate_code_block(plg_cls,
|
|
plg_cls.__init__.__code__)
|
|
msg_buffer.extend(msg) if len(msg) else None
|
|
|
|
def test_all_plugins_have_docstrings(self):
|
|
msg_buffer = []
|
|
self._check_docstrings(msg_buffer)
|
|
|
|
self._check_described_params(msg_buffer)
|
|
if msg_buffer:
|
|
self.fail("\n%s" % "\n".join(msg_buffer))
|