2020-05-11 15:46:10 +02:00
|
|
|
from dcim.choices import DeviceStatusChoices
|
2018-12-20 00:26:24 +01:00
|
|
|
from dcim.models import ConsolePort, Device, PowerPort
|
|
|
|
from extras.reports import Report
|
|
|
|
|
|
|
|
|
|
|
|
class DeviceConnectionsReport(Report):
|
|
|
|
description = "Validate the minimum physical connections for each device"
|
|
|
|
|
|
|
|
def test_console_connection(self):
|
|
|
|
|
|
|
|
# Check that every console port for every active device has a connection defined.
|
2020-05-11 15:46:10 +02:00
|
|
|
active = DeviceStatusChoices.STATUS_ACTIVE
|
|
|
|
for console_port in ConsolePort.objects.prefetch_related('device').filter(device__status=active):
|
2018-12-20 00:26:24 +01:00
|
|
|
if console_port.connected_endpoint is None:
|
|
|
|
self.log_failure(
|
|
|
|
console_port.device,
|
|
|
|
"No console connection defined for {}".format(console_port.name)
|
|
|
|
)
|
2020-05-11 15:46:10 +02:00
|
|
|
elif not console_port.connection_status:
|
2018-12-20 00:26:24 +01:00
|
|
|
self.log_warning(
|
|
|
|
console_port.device,
|
|
|
|
"Console connection for {} marked as planned".format(console_port.name)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
self.log_success(console_port.device)
|
|
|
|
|
|
|
|
def test_power_connections(self):
|
|
|
|
|
|
|
|
# Check that every active device has at least two connected power supplies.
|
2020-05-11 15:46:10 +02:00
|
|
|
for device in Device.objects.filter(status=DeviceStatusChoices.STATUS_ACTIVE):
|
2018-12-20 00:26:24 +01:00
|
|
|
connected_ports = 0
|
|
|
|
for power_port in PowerPort.objects.filter(device=device):
|
|
|
|
if power_port.connected_endpoint is not None:
|
|
|
|
connected_ports += 1
|
2020-05-11 15:46:10 +02:00
|
|
|
if not power_port.connection_status:
|
2018-12-20 00:26:24 +01:00
|
|
|
self.log_warning(
|
|
|
|
device,
|
|
|
|
"Power connection for {} marked as planned".format(power_port.name)
|
|
|
|
)
|
|
|
|
if connected_ports < 2:
|
|
|
|
self.log_failure(
|
|
|
|
device,
|
|
|
|
"{} connected power supplies found (2 needed)".format(connected_ports)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
self.log_success(device)
|