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

71 lines
2.8 KiB
Python
Raw Normal View History

import time
from django.contrib.contenttypes.models import ContentType
2017-09-21 16:32:05 -04:00
from django.core.management.base import BaseCommand
2017-09-19 17:47:42 -04:00
from django.utils import timezone
from extras.choices import JobResultStatusChoices
from extras.models import JobResult
from extras.reports import get_reports, run_report
2017-09-19 17:47:42 -04:00
class Command(BaseCommand):
help = "Run a report to validate data in NetBox"
def add_arguments(self, parser):
parser.add_argument('reports', nargs='+', help="Report(s) to run")
def handle(self, *args, **options):
2017-09-28 12:50:52 -04:00
# Gather all available reports
2017-09-21 16:32:05 -04:00
reports = get_reports()
2017-09-19 17:47:42 -04:00
# Run reports
2017-09-28 12:50:52 -04:00
for module_name, report_list in reports:
for report in report_list:
2017-10-12 13:47:44 -04:00
if module_name in options['reports'] or report.full_name in options['reports']:
2017-09-21 16:32:05 -04:00
# Run the report and create a new JobResult
2017-09-21 16:32:05 -04:00
self.stdout.write(
2017-09-28 12:50:52 -04:00
"[{:%H:%M:%S}] Running {}...".format(timezone.now(), report.full_name)
2017-09-21 16:32:05 -04:00
)
report_content_type = ContentType.objects.get(app_label='extras', model='report')
job_result = JobResult.enqueue_job(
run_report,
report.full_name,
report_content_type,
None
)
# Wait on the job to finish
while job_result.status not in JobResultStatusChoices.TERMINAL_STATE_CHOICES:
time.sleep(1)
job_result = JobResult.objects.get(pk=job_result.pk)
2017-09-21 16:32:05 -04:00
# Report on success/failure
if job_result.status == JobResultStatusChoices.STATUS_FAILED:
status = self.style.ERROR('FAILED')
elif job_result == JobResultStatusChoices.STATUS_ERRORED:
status = self.style.ERROR('ERRORED')
else:
status = self.style.SUCCESS('SUCCESS')
for test_name, attrs in job_result.data.items():
2017-09-21 16:32:05 -04:00
self.stdout.write(
2017-09-28 14:57:54 -04:00
"\t{}: {} success, {} info, {} warning, {} failure".format(
test_name, attrs['success'], attrs['info'], attrs['warning'], attrs['failure']
2017-09-21 16:32:05 -04:00
)
)
self.stdout.write(
2017-09-28 12:50:52 -04:00
"[{:%H:%M:%S}] {}: {}".format(timezone.now(), report.full_name, status)
2017-09-21 16:32:05 -04:00
)
self.stdout.write(
"[{:%H:%M:%S}] {}: Duration {}".format(timezone.now(), report.full_name, job_result.duration)
)
2017-09-21 16:32:05 -04:00
# Wrap things up
self.stdout.write(
"[{:%H:%M:%S}] Finished".format(timezone.now())
)