178 lines
5.0 KiB
Python
178 lines
5.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2020 Red Hat
|
|
# GNU General Public License v3.0+
|
|
# (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
|
|
__metaclass__ = type
|
|
|
|
from unittest import TestCase
|
|
|
|
from ansible.errors import AnsibleError
|
|
|
|
from ansible_collections.ansible.utils.plugins.test.validate import validate
|
|
|
|
|
|
DATA = {
|
|
"GigabitEthernet0/0/0/0": {
|
|
"auto_negotiate": False,
|
|
"counters": {
|
|
"in_crc_errors": 0,
|
|
"in_errors": 0,
|
|
"rate": {"in_rate": 0, "out_rate": 0},
|
|
},
|
|
"description": "configured using Ansible",
|
|
"duplex_mode": "full",
|
|
"enabled": True,
|
|
"line_protocol": "up",
|
|
"mtu": 1514,
|
|
"oper_status": "down",
|
|
"type": "GigabitEthernet",
|
|
},
|
|
"GigabitEthernet0/0/0/1": {
|
|
"auto_negotiate": False,
|
|
"counters": {
|
|
"in_crc_errors": 10,
|
|
"in_errors": 0,
|
|
"rate": {"in_rate": 0, "out_rate": 0},
|
|
},
|
|
"description": "# interface is configures with Ansible",
|
|
"duplex_mode": "full",
|
|
"enabled": False,
|
|
"line_protocol": "up",
|
|
"mtu": 1514,
|
|
"oper_status": "up",
|
|
"type": "GigabitEthernet",
|
|
},
|
|
}
|
|
|
|
CRITERIA_CRC_ERROR_CHECK = {
|
|
"type": "object",
|
|
"patternProperties": {
|
|
"^.*": {
|
|
"type": "object",
|
|
"properties": {
|
|
"counters": {"properties": {"in_crc_errors": {"type": "number", "maximum": 0}}},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
CRITERIA_ENABLED_CHECK = {
|
|
"type": "object",
|
|
"patternProperties": {"^.*": {"type": "object", "properties": {"enabled": {"enum": [True]}}}},
|
|
}
|
|
|
|
CRITERIA_OPER_STATUS_UP_CHECK = {
|
|
"type": "object",
|
|
"patternProperties": {
|
|
"^.*": {
|
|
"type": "object",
|
|
"properties": {"oper_status": {"type": "string", "pattern": "up"}},
|
|
},
|
|
},
|
|
}
|
|
|
|
CRITERIA_IN_RATE_CHECK = {
|
|
"type": "object",
|
|
"patternProperties": {
|
|
"^.*": {
|
|
"type": "object",
|
|
"properties": {
|
|
"counters": {
|
|
"properties": {
|
|
"rate": {"properties": {"in_rate": {"type": "number", "maximum": 0}}},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
|
|
class TestValidate(TestCase):
|
|
def setUp(self):
|
|
pass
|
|
|
|
def test_invalid_argspec(self):
|
|
"""Check passing invalid argspec"""
|
|
|
|
# missing required arguments
|
|
args = [DATA]
|
|
kwargs = {}
|
|
with self.assertRaises(AnsibleError) as error:
|
|
validate(*args, **kwargs)
|
|
msg = "missing required arguments: criteria"
|
|
self.assertIn(msg, str(error.exception))
|
|
|
|
kwargs = {
|
|
"criteria": CRITERIA_IN_RATE_CHECK,
|
|
"engine": "ansible.utils.sample",
|
|
}
|
|
with self.assertRaises(AnsibleError) as error:
|
|
validate(*args, **kwargs)
|
|
self.assertIn(
|
|
"For engine 'ansible.utils.sample' error loading",
|
|
str(error.exception),
|
|
)
|
|
|
|
args = ["invalid data"]
|
|
kwargs = {
|
|
"criteria": [CRITERIA_IN_RATE_CHECK],
|
|
"engine": "ansible.utils.jsonschema",
|
|
}
|
|
with self.assertRaises(AnsibleError) as error:
|
|
validate(*args, **kwargs)
|
|
self.assertIn("'data' option value is invalid", str(error.exception))
|
|
|
|
args = [DATA]
|
|
kwargs = {
|
|
"criteria": "invalid criteria",
|
|
"engine": "ansible.utils.jsonschema",
|
|
}
|
|
with self.assertRaises(AnsibleError) as error:
|
|
validate(*args, **kwargs)
|
|
self.assertIn("'criteria' option value is invalid", str(error.exception))
|
|
|
|
def test_invalid_validate_plugin_config_options(self):
|
|
"""Check passing invalid validate plugin options"""
|
|
args = [DATA]
|
|
kwargs = {
|
|
"criteria": "invalid criteria",
|
|
"engine": "ansible.utils.jsonschema",
|
|
"draft": "draft0",
|
|
}
|
|
|
|
with self.assertRaises(AnsibleError) as error:
|
|
validate(*args, **kwargs)
|
|
self.assertIn(
|
|
"value of draft must be one of: draft3, draft4, draft6, draft7, 2019-09, 2020-12, got: draft0",
|
|
str(error.exception),
|
|
)
|
|
|
|
def test_invalid_data(self):
|
|
"""Check passing invalid data as per criteria"""
|
|
args = [DATA]
|
|
kwargs = {
|
|
"criteria": [
|
|
CRITERIA_ENABLED_CHECK,
|
|
CRITERIA_OPER_STATUS_UP_CHECK,
|
|
CRITERIA_CRC_ERROR_CHECK,
|
|
],
|
|
"engine": "ansible.utils.jsonschema",
|
|
}
|
|
result = validate(*args, **kwargs)
|
|
self.assertEqual(result, False)
|
|
|
|
def test_valid_data(self):
|
|
"""Check passing valid data as per criteria"""
|
|
args = [DATA]
|
|
kwargs = {
|
|
"criteria": CRITERIA_IN_RATE_CHECK,
|
|
"engine": "ansible.utils.jsonschema",
|
|
}
|
|
result = validate(*args, **kwargs)
|
|
self.assertEqual(result, True)
|