2020-03-16 10:45:53 +01:00
|
|
|
# Copyright 2020 Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
|
2020-04-01 15:54:28 +02:00
|
|
|
try:
|
|
|
|
from unittest import mock
|
|
|
|
except ImportError:
|
|
|
|
import mock
|
2021-06-07 14:17:07 +02:00
|
|
|
|
2020-03-16 10:45:53 +01:00
|
|
|
from unittest import TestCase
|
|
|
|
|
2021-06-07 14:17:07 +02:00
|
|
|
from validations_libs import utils, constants
|
2020-03-16 10:45:53 +01:00
|
|
|
from validations_libs.tests import fakes
|
|
|
|
|
|
|
|
|
|
|
|
class TestUtils(TestCase):
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
super(TestUtils, self).setUp()
|
|
|
|
|
2020-03-18 21:03:25 +01:00
|
|
|
@mock.patch('validations_libs.validation.Validation._get_content',
|
2020-04-01 15:48:23 +02:00
|
|
|
return_value=fakes.FAKE_PLAYBOOK[0])
|
2020-03-18 21:03:25 +01:00
|
|
|
@mock.patch('six.moves.builtins.open')
|
2020-03-24 14:47:16 +01:00
|
|
|
@mock.patch('os.path.exists', return_value=True)
|
|
|
|
def test_get_validations_data(self, mock_exists, mock_open, mock_data):
|
2020-03-18 21:03:25 +01:00
|
|
|
output = {'Name': 'Advanced Format 512e Support',
|
|
|
|
'Description': 'foo', 'Groups': ['prep', 'pre-deployment'],
|
2021-07-08 12:31:38 +02:00
|
|
|
'Categories': ['os', 'storage'],
|
2021-07-12 13:58:04 +02:00
|
|
|
'Products': ['product1'],
|
2020-10-13 23:58:20 +02:00
|
|
|
'ID': '512e',
|
|
|
|
'Parameters': {}}
|
2020-03-24 14:47:16 +01:00
|
|
|
res = utils.get_validations_data('512e')
|
2020-03-18 21:03:25 +01:00
|
|
|
self.assertEqual(res, output)
|
2020-03-16 10:45:53 +01:00
|
|
|
|
2020-11-09 14:24:40 +01:00
|
|
|
@mock.patch('os.path.exists', return_value=True)
|
|
|
|
def test_get_validations_data_wrong_type(self, mock_exists):
|
|
|
|
validation = ['val1']
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.get_validations_data,
|
|
|
|
validation)
|
|
|
|
|
2020-04-01 15:48:23 +02:00
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
@mock.patch('glob.glob')
|
|
|
|
def test_parse_all_validations_on_disk(self, mock_glob, mock_open,
|
|
|
|
mock_load):
|
|
|
|
mock_glob.return_value = \
|
|
|
|
['/foo/playbook/foo.yaml']
|
|
|
|
result = utils.parse_all_validations_on_disk('/foo/playbook')
|
|
|
|
self.assertEqual(result, [fakes.FAKE_METADATA])
|
|
|
|
|
2021-07-12 11:57:29 +02:00
|
|
|
def test_parse_all_validations_on_disk_wrong_path_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.parse_all_validations_on_disk,
|
|
|
|
path=['/foo/playbook'])
|
|
|
|
|
|
|
|
def test_parse_all_validations_on_disk_wrong_groups_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.parse_all_validations_on_disk,
|
|
|
|
path='/foo/playbook',
|
|
|
|
groups='foo1,foo2')
|
|
|
|
|
2021-07-08 12:31:38 +02:00
|
|
|
def test_parse_all_validations_on_disk_wrong_categories_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.parse_all_validations_on_disk,
|
|
|
|
path='/foo/playbook',
|
|
|
|
categories='foo1,foo2')
|
|
|
|
|
2021-07-12 13:58:04 +02:00
|
|
|
def test_parse_all_validations_on_disk_wrong_products_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.parse_all_validations_on_disk,
|
|
|
|
path='/foo/playbook',
|
|
|
|
products='foo1,foo2')
|
|
|
|
|
2021-07-12 11:57:29 +02:00
|
|
|
def test_get_validations_playbook_wrong_validation_id_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.get_validations_playbook,
|
|
|
|
path='/foo/playbook',
|
|
|
|
validation_id='foo1,foo2')
|
|
|
|
|
|
|
|
def test_get_validations_playbook_wrong_groups_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.get_validations_playbook,
|
|
|
|
path='/foo/playbook',
|
|
|
|
groups='foo1,foo2')
|
|
|
|
|
2021-07-08 12:31:38 +02:00
|
|
|
def test_get_validations_playbook_wrong_categories_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.get_validations_playbook,
|
|
|
|
path='/foo/playbook',
|
|
|
|
categories='foo1,foo2')
|
|
|
|
|
2021-07-12 13:58:04 +02:00
|
|
|
def test_get_validations_playbook_wrong_products_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.get_validations_playbook,
|
|
|
|
path='/foo/playbook',
|
|
|
|
products='foo1,foo2')
|
|
|
|
|
2021-07-08 12:31:38 +02:00
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
@mock.patch('glob.glob')
|
|
|
|
def test_parse_all_validations_on_disk_by_group(self, mock_glob,
|
|
|
|
mock_open,
|
|
|
|
mock_load):
|
|
|
|
mock_glob.return_value = \
|
|
|
|
['/foo/playbook/foo.yaml']
|
|
|
|
result = utils.parse_all_validations_on_disk('/foo/playbook',
|
|
|
|
['prep'])
|
|
|
|
self.assertEqual(result, [fakes.FAKE_METADATA])
|
|
|
|
|
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
@mock.patch('glob.glob')
|
|
|
|
def test_parse_all_validations_on_disk_by_category(self, mock_glob,
|
|
|
|
mock_open,
|
|
|
|
mock_load):
|
|
|
|
mock_glob.return_value = \
|
|
|
|
['/foo/playbook/foo.yaml']
|
|
|
|
result = utils.parse_all_validations_on_disk('/foo/playbook',
|
|
|
|
categories=['os'])
|
|
|
|
self.assertEqual(result, [fakes.FAKE_METADATA])
|
|
|
|
|
2021-07-12 11:57:29 +02:00
|
|
|
def test_get_validations_playbook_wrong_path_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.get_validations_playbook,
|
|
|
|
path=['/foo/playbook'])
|
|
|
|
|
2021-07-12 13:58:04 +02:00
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
@mock.patch('glob.glob')
|
|
|
|
def test_parse_all_validations_on_disk_by_product(self, mock_glob,
|
|
|
|
mock_open,
|
|
|
|
mock_load):
|
|
|
|
mock_glob.return_value = \
|
|
|
|
['/foo/playbook/foo.yaml']
|
|
|
|
result = utils.parse_all_validations_on_disk('/foo/playbook',
|
|
|
|
products=['product1'])
|
|
|
|
self.assertEqual(result, [fakes.FAKE_METADATA])
|
|
|
|
|
2020-04-01 15:48:23 +02:00
|
|
|
@mock.patch('os.path.isfile')
|
|
|
|
@mock.patch('os.listdir')
|
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validations_playbook_by_id(self, mock_open, mock_load,
|
|
|
|
mock_listdir, mock_isfile):
|
|
|
|
mock_listdir.return_value = ['foo.yaml']
|
|
|
|
mock_isfile.return_value = True
|
2020-11-03 15:29:42 +01:00
|
|
|
result = utils.get_validations_playbook('/foo/playbook',
|
2021-07-12 11:57:29 +02:00
|
|
|
validation_id=['foo'])
|
2020-04-01 15:48:23 +02:00
|
|
|
self.assertEqual(result, ['/foo/playbook/foo.yaml'])
|
|
|
|
|
|
|
|
@mock.patch('os.path.isfile')
|
|
|
|
@mock.patch('os.listdir')
|
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validations_playbook_by_id_group(self, mock_open, mock_load,
|
|
|
|
mock_listdir, mock_isfile):
|
|
|
|
mock_listdir.return_value = ['foo.yaml']
|
|
|
|
mock_isfile.return_value = True
|
2021-07-12 11:57:29 +02:00
|
|
|
result = utils.get_validations_playbook('/foo/playbook', ['foo'], ['prep'])
|
2020-10-15 11:13:13 +02:00
|
|
|
self.assertEqual(result, ['/foo/playbook/foo.yaml',
|
|
|
|
'/foo/playbook/foo.yaml'])
|
2020-04-01 15:48:23 +02:00
|
|
|
|
|
|
|
@mock.patch('os.path.isfile')
|
|
|
|
@mock.patch('os.listdir')
|
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validations_playbook_group_not_exist(self, mock_open,
|
|
|
|
mock_load,
|
|
|
|
mock_listdir,
|
|
|
|
mock_isfile):
|
|
|
|
mock_listdir.return_value = ['foo.yaml']
|
|
|
|
mock_isfile.return_value = True
|
2020-10-15 11:13:13 +02:00
|
|
|
result = utils.get_validations_playbook('/foo/playbook',
|
2021-07-12 11:57:29 +02:00
|
|
|
groups=['no_group'])
|
2020-04-01 15:48:23 +02:00
|
|
|
self.assertEqual(result, [])
|
|
|
|
|
2021-07-08 12:31:38 +02:00
|
|
|
@mock.patch('os.path.isfile')
|
|
|
|
@mock.patch('os.listdir')
|
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validations_playbook_by_category(self, mock_open, mock_load,
|
|
|
|
mock_listdir, mock_isfile):
|
|
|
|
mock_listdir.return_value = ['foo.yaml']
|
|
|
|
mock_isfile.return_value = True
|
|
|
|
result = utils.get_validations_playbook('/foo/playbook',
|
|
|
|
categories=['os', 'storage'])
|
|
|
|
self.assertEqual(result, ['/foo/playbook/foo.yaml'])
|
|
|
|
|
2021-07-12 13:58:04 +02:00
|
|
|
@mock.patch('os.path.isfile')
|
|
|
|
@mock.patch('os.listdir')
|
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validations_playbook_by_product(self, mock_open, mock_load,
|
|
|
|
mock_listdir, mock_isfile):
|
|
|
|
mock_listdir.return_value = ['foo.yaml']
|
|
|
|
mock_isfile.return_value = True
|
|
|
|
result = utils.get_validations_playbook('/foo/playbook',
|
|
|
|
products=['product1'])
|
|
|
|
self.assertEqual(result, ['/foo/playbook/foo.yaml'])
|
|
|
|
|
2020-04-01 15:48:23 +02:00
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validation_parameters(self, mock_open, mock_load):
|
|
|
|
|
|
|
|
result = utils.get_validation_parameters('/foo/playbook/foo.yaml')
|
|
|
|
self.assertEqual(result, {})
|
|
|
|
|
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.GROUP)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_read_validation_groups_file(self, mock_open, mock_load):
|
|
|
|
|
|
|
|
result = utils.read_validation_groups_file('/foo/groups.yaml')
|
|
|
|
self.assertEqual(result, {'no-op': [{'description': 'noop-foo'}],
|
|
|
|
'post': [{'description': 'post-foo'}],
|
|
|
|
'pre': [{'description': 'pre-foo'}]})
|
|
|
|
|
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.GROUP)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validation_group_name_list(self, mock_open, mock_load):
|
|
|
|
|
|
|
|
result = utils.get_validation_group_name_list('/foo/groups.yaml')
|
2020-04-08 11:02:28 +02:00
|
|
|
self.assertEqual(result, ['no-op', 'post', 'pre'])
|
2020-04-01 15:48:23 +02:00
|
|
|
|
|
|
|
@mock.patch('validations_libs.utils.parse_all_validations_on_disk',
|
|
|
|
return_value=[fakes.FAKE_METADATA])
|
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.GROUP)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validations_details(self, mock_open, mock_load, mock_parse):
|
|
|
|
|
|
|
|
result = utils.get_validations_details('foo')
|
|
|
|
self.assertEqual(result, fakes.FAKE_METADATA)
|
|
|
|
|
2020-11-09 14:24:40 +01:00
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validations_details_wrong_type(self, mock_open):
|
|
|
|
validation = ['foo']
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.get_validations_details,
|
|
|
|
validation=validation)
|
|
|
|
|
2021-07-12 11:57:29 +02:00
|
|
|
def test_get_validations_parameters_wrong_validations_data_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.get_validations_parameters,
|
|
|
|
validations_data='/foo/playbook1.yaml')
|
|
|
|
|
|
|
|
def test_get_validations_parameters_wrong_validation_name_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.get_validations_parameters,
|
|
|
|
validations_data=['/foo/playbook1.yaml',
|
|
|
|
'/foo/playbook2.yaml'],
|
|
|
|
validation_name='playbook1,playbook2')
|
|
|
|
|
|
|
|
def test_get_validations_parameters_wrong_groups_type(self):
|
|
|
|
self.assertRaises(TypeError,
|
|
|
|
utils.get_validations_parameters,
|
|
|
|
validations_data=['/foo/playbook1.yaml',
|
|
|
|
'/foo/playbook2.yaml'],
|
|
|
|
groups='group1,group2')
|
|
|
|
|
2020-04-09 14:17:01 +02:00
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK2)
|
2020-04-01 15:48:23 +02:00
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validations_parameters_no_group(self, mock_open, mock_load):
|
|
|
|
|
|
|
|
result = utils.get_validations_parameters(['/foo/playbook/foo.yaml'],
|
2021-07-12 11:57:29 +02:00
|
|
|
['foo'])
|
2020-04-09 14:17:01 +02:00
|
|
|
output = {'foo': {'parameters': {'foo': 'bar'}}}
|
2020-10-15 11:13:13 +02:00
|
|
|
self.assertEqual(result, output)
|
2020-04-01 15:48:23 +02:00
|
|
|
|
2020-04-09 14:17:01 +02:00
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK2)
|
2020-04-01 15:48:23 +02:00
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validations_parameters_no_val(self, mock_open, mock_load):
|
|
|
|
|
|
|
|
result = utils.get_validations_parameters(['/foo/playbook/foo.yaml'],
|
|
|
|
[], ['prep'])
|
2020-04-09 14:17:01 +02:00
|
|
|
output = {'foo': {'parameters': {'foo': 'bar'}}}
|
2020-10-15 11:13:13 +02:00
|
|
|
self.assertEqual(result, output)
|
2020-04-01 15:48:23 +02:00
|
|
|
|
|
|
|
@mock.patch('yaml.safe_load', return_value=fakes.FAKE_PLAYBOOK)
|
|
|
|
@mock.patch('six.moves.builtins.open')
|
|
|
|
def test_get_validations_parameters_nothing(self, mock_open, mock_load):
|
|
|
|
|
|
|
|
result = utils.get_validations_parameters(['/foo/playbook/foo.yaml'],
|
|
|
|
[], [])
|
2020-10-15 11:13:13 +02:00
|
|
|
self.assertEqual(result, {})
|
2020-11-03 15:29:42 +01:00
|
|
|
|
2021-06-07 14:17:07 +02:00
|
|
|
@mock.patch('validations_libs.utils.LOG', autospec=True)
|
|
|
|
@mock.patch('validations_libs.utils.os.makedirs')
|
|
|
|
@mock.patch(
|
|
|
|
'validations_libs.utils.os.access',
|
|
|
|
side_effect=[False, True])
|
|
|
|
@mock.patch('validations_libs.utils.os.path.exists', return_value=True)
|
|
|
|
def test_create_log_dir_access_issue(self, mock_exists,
|
|
|
|
mock_access, mock_mkdirs,
|
|
|
|
mock_log):
|
|
|
|
log_path = utils.create_log_dir("/foo/bar")
|
|
|
|
self.assertEqual(log_path, constants.VALIDATIONS_LOG_BASEDIR)
|
|
|
|
|
|
|
|
@mock.patch('validations_libs.utils.LOG', autospec=True)
|
|
|
|
@mock.patch(
|
|
|
|
'validations_libs.utils.os.makedirs',
|
|
|
|
side_effect=PermissionError)
|
|
|
|
@mock.patch(
|
|
|
|
'validations_libs.utils.os.access',
|
|
|
|
autospec=True,
|
|
|
|
return_value=True)
|
|
|
|
@mock.patch(
|
|
|
|
'validations_libs.utils.os.path.exists',
|
|
|
|
autospec=True,
|
|
|
|
side_effect=fakes._accept_default_log_path)
|
|
|
|
def test_create_log_dir_existence_issue(self, mock_exists,
|
|
|
|
mock_access, mock_mkdirs,
|
|
|
|
mock_log):
|
|
|
|
"""Tests behavior after encountering non-existence
|
|
|
|
of the the selected log folder, failed attempt to create it
|
|
|
|
(raising PermissionError), and finally resorting to a fallback.
|
|
|
|
"""
|
|
|
|
log_path = utils.create_log_dir("/foo/bar")
|
|
|
|
self.assertEqual(log_path, constants.VALIDATIONS_LOG_BASEDIR)
|
|
|
|
|
|
|
|
@mock.patch('validations_libs.utils.LOG', autospec=True)
|
|
|
|
@mock.patch('validations_libs.utils.os.makedirs')
|
|
|
|
@mock.patch('validations_libs.utils.os.access', return_value=True)
|
|
|
|
@mock.patch('validations_libs.utils.os.path.exists', return_value=True)
|
|
|
|
def test_create_log_dir_success(self, mock_exists,
|
|
|
|
mock_access, mock_mkdirs,
|
|
|
|
mock_log):
|
|
|
|
"""Test successful log dir retrieval on the first try.
|
|
|
|
"""
|
|
|
|
log_path = utils.create_log_dir("/foo/bar")
|
|
|
|
self.assertEqual(log_path, "/foo/bar")
|
|
|
|
|
|
|
|
@mock.patch('validations_libs.utils.LOG', autospec=True)
|
|
|
|
@mock.patch(
|
|
|
|
'validations_libs.utils.os.makedirs',
|
|
|
|
side_effect=PermissionError)
|
|
|
|
@mock.patch('validations_libs.utils.os.access', return_value=False)
|
|
|
|
@mock.patch('validations_libs.utils.os.path.exists', return_value=False)
|
|
|
|
def test_create_log_dir_runtime_err(self, mock_exists,
|
|
|
|
mock_access, mock_mkdirs,
|
|
|
|
mock_log):
|
|
|
|
"""Test if failure of the fallback raises 'RuntimeError'
|
|
|
|
"""
|
|
|
|
self.assertRaises(RuntimeError, utils.create_log_dir, "/foo/bar")
|
|
|
|
|
|
|
|
@mock.patch('validations_libs.utils.LOG', autospec=True)
|
|
|
|
@mock.patch(
|
|
|
|
'validations_libs.utils.os.makedirs',
|
|
|
|
side_effect=PermissionError)
|
|
|
|
@mock.patch('validations_libs.utils.os.access', return_value=False)
|
|
|
|
@mock.patch(
|
|
|
|
'validations_libs.utils.os.path.exists',
|
|
|
|
side_effect=fakes._accept_default_log_path)
|
|
|
|
def test_create_log_dir_default_perms_runtime_err(
|
|
|
|
self, mock_exists,
|
|
|
|
mock_access, mock_mkdirs,
|
|
|
|
mock_log):
|
|
|
|
"""Test if the inaccessible fallback raises 'RuntimeError'
|
|
|
|
"""
|
|
|
|
self.assertRaises(RuntimeError, utils.create_log_dir, "/foo/bar")
|
|
|
|
|
|
|
|
@mock.patch('validations_libs.utils.LOG', autospec=True)
|
|
|
|
@mock.patch('validations_libs.utils.os.makedirs')
|
|
|
|
@mock.patch('validations_libs.utils.os.access', return_value=False)
|
|
|
|
@mock.patch('validations_libs.utils.os.path.exists', return_value=False)
|
|
|
|
def test_create_log_dir_mkdirs(self, mock_exists,
|
|
|
|
mock_access, mock_mkdirs,
|
|
|
|
mock_log):
|
|
|
|
"""Test successful creation of the directory if the first access fails.
|
|
|
|
"""
|
|
|
|
|
|
|
|
log_path = utils.create_log_dir("/foo/bar")
|
|
|
|
self.assertEqual(log_path, "/foo/bar")
|
|
|
|
|
|
|
|
@mock.patch(
|
|
|
|
'validations_libs.utils.os.makedirs',
|
|
|
|
side_effect=PermissionError)
|
|
|
|
def test_create_artifacts_dir_runtime_err(self, mock_mkdirs):
|
|
|
|
"""Test if failure to create artifacts dir raises 'RuntimeError'.
|
|
|
|
"""
|
|
|
|
self.assertRaises(RuntimeError, utils.create_artifacts_dir, "/foo/bar")
|
2021-05-20 19:09:37 +02:00
|
|
|
|
|
|
|
def test_eval_types_str(self):
|
|
|
|
self.assertIsInstance(utils._eval_types('/usr'), str)
|
|
|
|
|
|
|
|
def test_eval_types_bool(self):
|
|
|
|
self.assertIsInstance(utils._eval_types('True'), bool)
|
|
|
|
|
|
|
|
def test_eval_types_int(self):
|
|
|
|
self.assertIsInstance(utils._eval_types('15'), int)
|
|
|
|
|
|
|
|
def test_eval_types_dict(self):
|
|
|
|
self.assertIsInstance(utils._eval_types('{}'), dict)
|
|
|
|
|
|
|
|
@mock.patch('os.path.exists', return_value=True)
|
|
|
|
@mock.patch('configparser.ConfigParser.sections',
|
|
|
|
return_value=['default'])
|
|
|
|
def test_load_config(self, mock_config, mock_exists):
|
|
|
|
results = utils.load_config('foo.cfg')
|
|
|
|
self.assertEqual(results, {})
|
|
|
|
|
|
|
|
def test_default_load_config(self):
|
|
|
|
results = utils.load_config('validation.cfg')
|
|
|
|
self.assertEqual(results['default'], fakes.DEFAULT_CONFIG)
|
|
|
|
|
|
|
|
def test_ansible_runner_load_config(self):
|
|
|
|
results = utils.load_config('validation.cfg')
|
|
|
|
self.assertEqual(results['ansible_runner'],
|
|
|
|
fakes.ANSIBLE_RUNNER_CONFIG)
|
|
|
|
|
|
|
|
def test_ansible_environment_config_load_config(self):
|
|
|
|
results = utils.load_config('validation.cfg')
|
|
|
|
self.assertEqual(
|
|
|
|
results['ansible_environment']['ANSIBLE_CALLBACK_WHITELIST'],
|
|
|
|
fakes.ANSIBLE_ENVIRONNMENT_CONFIG['ANSIBLE_CALLBACK_WHITELIST'])
|
|
|
|
self.assertEqual(
|
|
|
|
results['ansible_environment']['ANSIBLE_STDOUT_CALLBACK'],
|
|
|
|
fakes.ANSIBLE_ENVIRONNMENT_CONFIG['ANSIBLE_STDOUT_CALLBACK'])
|