1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

190 lines
5.7 KiB
Python
Raw Normal View History

from __future__ import unicode_literals
2017-09-21 16:32:05 -04:00
import importlib
import inspect
import pkgutil
from collections import OrderedDict
2017-09-19 17:47:42 -04:00
from django.conf import settings
2017-09-19 17:47:42 -04:00
from django.utils import timezone
from .constants import LOG_DEFAULT, LOG_FAILURE, LOG_INFO, LOG_LEVEL_CODES, LOG_SUCCESS, LOG_WARNING
from .models import ReportResult
2017-09-21 16:32:05 -04:00
def is_report(obj):
"""
Returns True if the given object is a Report.
"""
if obj in Report.__subclasses__():
return True
return False
2017-09-25 17:27:58 -04:00
def get_report(module_name, report_name):
"""
Return a specific report from within a module.
"""
module = importlib.import_module('reports.{}'.format(module_name))
2017-09-26 16:36:43 -04:00
report = getattr(module, report_name, None)
if report is None:
return None
2017-09-26 16:36:43 -04:00
return report()
2017-09-25 17:27:58 -04:00
2017-09-21 16:32:05 -04:00
def get_reports():
"""
Compile a list of all reports available across all modules in the reports path. Returns a list of tuples:
[
(module_name, (report, report, report, ...)),
(module_name, (report, report, report, ...)),
2017-09-26 16:36:43 -04:00
...
]
2017-09-21 16:32:05 -04:00
"""
module_list = []
# Iterate through all modules within the reports path. These are the user-created files in which reports are
2017-09-26 16:36:43 -04:00
# defined.
for importer, module_name, is_pkg in pkgutil.walk_packages([settings.REPORTS_ROOT]):
2017-09-21 16:32:05 -04:00
module = importlib.import_module('reports.{}'.format(module_name))
2017-09-26 16:36:43 -04:00
report_list = [cls() for _, cls in inspect.getmembers(module, is_report)]
2017-09-21 16:32:05 -04:00
module_list.append((module_name, report_list))
return module_list
2017-09-19 17:47:42 -04:00
class Report(object):
"""
NetBox users can extend this object to write custom reports to be used for validating data within NetBox. Each
report must have one or more test methods named `test_*`.
The `_results` attribute of a completed report will take the following form:
2017-09-19 17:47:42 -04:00
{
'test_bar': {
'failures': 42,
'log': [
(<datetime>, <level>, <object>, <message>),
...
]
},
'test_foo': {
'failures': 0,
'log': [
(<datetime>, <level>, <object>, <message>),
...
]
}
}
"""
2017-09-21 16:32:05 -04:00
description = None
2017-09-19 17:47:42 -04:00
def __init__(self):
self._results = OrderedDict()
2017-09-21 13:49:04 -04:00
self.active_test = None
self.failed = False
2017-09-19 17:47:42 -04:00
# Compile test methods and initialize results skeleton
test_methods = []
for method in dir(self):
if method.startswith('test_') and callable(getattr(self, method)):
test_methods.append(method)
self._results[method] = OrderedDict([
2017-09-19 17:47:42 -04:00
('success', 0),
('info', 0),
('warning', 0),
2017-09-28 13:35:18 -04:00
('failure', 0),
2017-09-19 17:47:42 -04:00
('log', []),
])
if not test_methods:
raise Exception("A report must contain at least one test method.")
self.test_methods = test_methods
2017-09-26 16:36:43 -04:00
@property
def module(self):
return self.__module__.rsplit('.', 1)[1]
@property
def name(self):
return self.__class__.__name__
@property
def full_name(self):
return '.'.join([self.module, self.name])
2017-09-19 17:47:42 -04:00
def _log(self, obj, message, level=LOG_DEFAULT):
"""
Log a message from a test method. Do not call this method directly; use one of the log_* wrappers below.
"""
if level not in LOG_LEVEL_CODES:
raise Exception("Unknown logging level: {}".format(level))
2017-09-28 13:36:50 -04:00
self._results[self.active_test]['log'].append((
2017-09-28 13:35:18 -04:00
timezone.now().isoformat(),
LOG_LEVEL_CODES.get(level),
str(obj) if obj else None,
obj.get_absolute_url() if getattr(obj, 'get_absolute_url', None) else None,
message,
2017-09-28 13:36:50 -04:00
))
2017-09-28 13:35:18 -04:00
def log(self, message):
"""
Log a message which is not associated with a particular object.
"""
self._log(None, message, level=LOG_DEFAULT)
2017-09-19 17:47:42 -04:00
def log_success(self, obj, message=None):
"""
Record a successful test against an object. Logging a message is optional.
"""
if message:
self._log(obj, message, level=LOG_SUCCESS)
self._results[self.active_test]['success'] += 1
2017-09-19 17:47:42 -04:00
def log_info(self, obj, message):
"""
Log an informational message.
"""
self._log(obj, message, level=LOG_INFO)
self._results[self.active_test]['info'] += 1
2017-09-19 17:47:42 -04:00
def log_warning(self, obj, message):
"""
Log a warning.
"""
self._log(obj, message, level=LOG_WARNING)
self._results[self.active_test]['warning'] += 1
2017-09-19 17:47:42 -04:00
def log_failure(self, obj, message):
"""
Log a failure. Calling this method will automatically mark the report as failed.
"""
self._log(obj, message, level=LOG_FAILURE)
2017-09-28 13:35:18 -04:00
self._results[self.active_test]['failure'] += 1
2017-09-19 17:47:42 -04:00
self.failed = True
def run(self):
"""
2017-09-21 13:49:04 -04:00
Run the report and return its results. Each test method will be executed in order.
2017-09-19 17:47:42 -04:00
"""
for method_name in self.test_methods:
self.active_test = method_name
test_method = getattr(self, method_name)
test_method()
2017-09-21 13:49:04 -04:00
# Delete any previous ReportResult and create a new one to record the result.
ReportResult.objects.filter(report=self.full_name).delete()
result = ReportResult(report=self.full_name, failed=self.failed, data=self._results)
result.save()
self.result = result
# Perform any post-run tasks
self.post_run()
def post_run(self):
"""
Extend this method to include any tasks which should execute after the report has been run.
"""
pass