2020-07-17 18:36:22 +02:00
|
|
|
import glob
|
|
|
|
import json
|
|
|
|
import pytest
|
|
|
|
import yaml
|
|
|
|
|
|
|
|
KNOWN_MODELS = {}
|
|
|
|
|
|
|
|
def _get_definition_files():
|
|
|
|
"""
|
|
|
|
Return a list of all definition files.
|
|
|
|
"""
|
|
|
|
return [f for f in glob.glob("device-types/*/*", recursive=True)]
|
|
|
|
|
|
|
|
def test_environment():
|
|
|
|
"""
|
|
|
|
Run basic sanity checks on the environment to ensure tests are running correctly.
|
|
|
|
"""
|
|
|
|
# Validate that definition files exist
|
|
|
|
assert _get_definition_files(), "No definition files found!"
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("file_path", _get_definition_files())
|
|
|
|
def test_dupes(file_path):
|
|
|
|
# Check file extension
|
|
|
|
assert file_path.split('.')[-1] in ('yaml', 'yml'), f"Invalid file extension: {file_path}"
|
|
|
|
|
|
|
|
# Read file
|
|
|
|
with open(file_path) as definition_file:
|
|
|
|
content = definition_file.read()
|
|
|
|
|
|
|
|
# Check for trailing newline
|
|
|
|
assert content[-1] == '\n', "Missing trailing newline"
|
|
|
|
|
|
|
|
# Load YAML data
|
|
|
|
definition = yaml.load(content, Loader=yaml.SafeLoader)
|
|
|
|
|
|
|
|
slug = definition.get('slug')
|
|
|
|
|
|
|
|
if KNOWN_MODELS.get(slug, None) is not None:
|
2020-11-24 19:22:23 +01:00
|
|
|
pytest.fail(f"{file_path} is a duplicate device_type for {slug}", False)
|
2020-07-17 18:36:22 +02:00
|
|
|
|
|
|
|
KNOWN_MODELS[slug] = definition.get('model')
|
2021-02-27 13:25:47 +01:00
|
|
|
|
2020-11-24 20:10:31 +01:00
|
|
|
def test_components(type):
|
|
|
|
KNOWN = []
|
|
|
|
components = definition.get(type, None)
|
2021-02-27 13:25:47 +01:00
|
|
|
|
2020-11-24 20:10:31 +01:00
|
|
|
if components is not None:
|
|
|
|
for idx,component in enumerate(components):
|
|
|
|
name = component.get('name')
|
|
|
|
if name in KNOWN:
|
|
|
|
pytest.fail(f'Duplicate {type} "{name}" in {file_path}', False)
|
|
|
|
KNOWN.append(name)
|
2021-02-27 13:25:47 +01:00
|
|
|
|
2020-11-24 20:10:31 +01:00
|
|
|
test_components('interfaces')
|
|
|
|
test_components('device-bays')
|
|
|
|
test_components('front-ports')
|
|
|
|
test_components('rear-ports')
|
|
|
|
test_components('power-ports')
|
|
|
|
test_components('power-outlets')
|
|
|
|
test_components('console-ports')
|
|
|
|
test_components('console-server-ports')
|