mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-15 17:40:50 -07:00
Mv AnsibleFactCollector back to module_utils (#26150)
It was in lib/ansible/modules/system/setup.py since it was the only thing using it, but move it back to module_utils and add a ansible_collector.get_ansible_collector() to build a facts collector just like the one used by setup.py mv test_setup.py -> test_ansible_collector.py All the code it was testing is now in ansible_collector rm code to create 'ansible_facts' subkey from namespace Just leave it up to the caller to do, and just return a flat dictionary from AnsibleFactCollector.collect()
This commit is contained in:
parent
9f02bb02bf
commit
0fc0b6f059
3 changed files with 167 additions and 145 deletions
295
test/units/module_utils/facts/test_ansible_collector.py
Normal file
295
test/units/module_utils/facts/test_ansible_collector.py
Normal file
|
@ -0,0 +1,295 @@
|
|||
# unit tests for ansible/module_utils/facts/__init__.py
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
#
|
||||
# Ansible is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Ansible is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
# Make coding more python3-ish
|
||||
from __future__ import (absolute_import, division)
|
||||
__metaclass__ = type
|
||||
|
||||
# for testing
|
||||
from ansible.compat.tests import unittest
|
||||
from ansible.compat.tests.mock import Mock
|
||||
|
||||
from ansible.module_utils.facts import collector
|
||||
from ansible.module_utils.facts import ansible_collector
|
||||
from ansible.module_utils.facts import namespace
|
||||
|
||||
from ansible.module_utils.facts.other.facter import FacterFactCollector
|
||||
from ansible.module_utils.facts.other.ohai import OhaiFactCollector
|
||||
|
||||
from ansible.module_utils.facts.system.apparmor import ApparmorFactCollector
|
||||
from ansible.module_utils.facts.system.caps import SystemCapabilitiesFactCollector
|
||||
from ansible.module_utils.facts.system.date_time import DateTimeFactCollector
|
||||
from ansible.module_utils.facts.system.env import EnvFactCollector
|
||||
from ansible.module_utils.facts.system.distribution import DistributionFactCollector
|
||||
from ansible.module_utils.facts.system.dns import DnsFactCollector
|
||||
from ansible.module_utils.facts.system.fips import FipsFactCollector
|
||||
from ansible.module_utils.facts.system.local import LocalFactCollector
|
||||
from ansible.module_utils.facts.system.lsb import LSBFactCollector
|
||||
from ansible.module_utils.facts.system.pkg_mgr import PkgMgrFactCollector
|
||||
from ansible.module_utils.facts.system.platform import PlatformFactCollector
|
||||
from ansible.module_utils.facts.system.python import PythonFactCollector
|
||||
from ansible.module_utils.facts.system.selinux import SelinuxFactCollector
|
||||
from ansible.module_utils.facts.system.service_mgr import ServiceMgrFactCollector
|
||||
from ansible.module_utils.facts.system.user import UserFactCollector
|
||||
|
||||
# from ansible.module_utils.facts.hardware.base import HardwareCollector
|
||||
from ansible.module_utils.facts.network.base import NetworkCollector
|
||||
from ansible.module_utils.facts.virtual.base import VirtualCollector
|
||||
|
||||
ALL_COLLECTOR_CLASSES = \
|
||||
[PlatformFactCollector,
|
||||
DistributionFactCollector,
|
||||
SelinuxFactCollector,
|
||||
ApparmorFactCollector,
|
||||
SystemCapabilitiesFactCollector,
|
||||
FipsFactCollector,
|
||||
PkgMgrFactCollector,
|
||||
ServiceMgrFactCollector,
|
||||
LSBFactCollector,
|
||||
DateTimeFactCollector,
|
||||
UserFactCollector,
|
||||
LocalFactCollector,
|
||||
EnvFactCollector,
|
||||
DnsFactCollector,
|
||||
PythonFactCollector,
|
||||
# FIXME: re-enable when hardware doesnt Hardware() doesnt munge self.facts
|
||||
# HardwareCollector
|
||||
NetworkCollector,
|
||||
VirtualCollector,
|
||||
OhaiFactCollector,
|
||||
FacterFactCollector]
|
||||
|
||||
|
||||
def mock_module(gather_subset=None):
|
||||
if gather_subset is None:
|
||||
gather_subset = ['all', '!facter', '!ohai']
|
||||
mock_module = Mock()
|
||||
mock_module.params = {'gather_subset': gather_subset,
|
||||
'gather_timeout': 5,
|
||||
'filter': '*'}
|
||||
mock_module.get_bin_path = Mock(return_value=None)
|
||||
return mock_module
|
||||
|
||||
|
||||
def _collectors(module,
|
||||
all_collector_classes=None,
|
||||
minimal_gather_subset=None):
|
||||
gather_subset = module.params.get('gather_subset')
|
||||
if all_collector_classes is None:
|
||||
all_collector_classes = ALL_COLLECTOR_CLASSES
|
||||
if minimal_gather_subset is None:
|
||||
minimal_gather_subset = frozenset([])
|
||||
|
||||
collector_classes = \
|
||||
collector.collector_classes_from_gather_subset(all_collector_classes=all_collector_classes,
|
||||
minimal_gather_subset=minimal_gather_subset,
|
||||
gather_subset=gather_subset)
|
||||
|
||||
collectors = []
|
||||
for collector_class in collector_classes:
|
||||
collector_obj = collector_class()
|
||||
collectors.append(collector_obj)
|
||||
|
||||
# Add a collector that knows what gather_subset we used so it it can provide a fact
|
||||
collector_meta_data_collector = \
|
||||
ansible_collector.CollectorMetaDataCollector(gather_subset=gather_subset,
|
||||
module_setup=True)
|
||||
collectors.append(collector_meta_data_collector)
|
||||
|
||||
return collectors
|
||||
|
||||
|
||||
ns = namespace.PrefixFactNamespace('ansible_facts', 'ansible_')
|
||||
|
||||
|
||||
# FIXME: this is brute force, but hopefully enough to get some refactoring to make facts testable
|
||||
class TestInPlace(unittest.TestCase):
|
||||
def _mock_module(self, gather_subset=None):
|
||||
return mock_module(gather_subset=gather_subset)
|
||||
|
||||
def _collectors(self, module,
|
||||
all_collector_classes=None,
|
||||
minimal_gather_subset=None):
|
||||
return _collectors(module=module,
|
||||
all_collector_classes=all_collector_classes,
|
||||
minimal_gather_subset=minimal_gather_subset)
|
||||
|
||||
def test(self):
|
||||
gather_subset = ['all']
|
||||
mock_module = self._mock_module(gather_subset=gather_subset)
|
||||
all_collector_classes = [EnvFactCollector]
|
||||
collectors = self._collectors(mock_module,
|
||||
all_collector_classes=all_collector_classes)
|
||||
|
||||
fact_collector = \
|
||||
ansible_collector.AnsibleFactCollector(collectors=collectors,
|
||||
namespace=ns)
|
||||
|
||||
res = fact_collector.collect(module=mock_module)
|
||||
self.assertIsInstance(res, dict)
|
||||
self.assertIn('env', res)
|
||||
self.assertIn('gather_subset', res)
|
||||
self.assertEqual(res['gather_subset'], ['all'])
|
||||
|
||||
def test1(self):
|
||||
gather_subset = ['all']
|
||||
mock_module = self._mock_module(gather_subset=gather_subset)
|
||||
collectors = self._collectors(mock_module)
|
||||
|
||||
fact_collector = \
|
||||
ansible_collector.AnsibleFactCollector(collectors=collectors,
|
||||
namespace=ns)
|
||||
|
||||
res = fact_collector.collect(module=mock_module)
|
||||
self.assertIsInstance(res, dict)
|
||||
# just assert it's not almost empty
|
||||
# with run_command and get_file_content mock, many facts are empty, like network
|
||||
self.assertGreater(len(res), 20)
|
||||
|
||||
def test_empty_all_collector_classes(self):
|
||||
mock_module = self._mock_module()
|
||||
all_collector_classes = []
|
||||
|
||||
collectors = self._collectors(mock_module,
|
||||
all_collector_classes=all_collector_classes)
|
||||
|
||||
fact_collector = \
|
||||
ansible_collector.AnsibleFactCollector(collectors=collectors,
|
||||
namespace=ns)
|
||||
|
||||
res = fact_collector.collect()
|
||||
self.assertIsInstance(res, dict)
|
||||
# just assert it's not almost empty
|
||||
self.assertLess(len(res), 3)
|
||||
|
||||
# def test_facts_class(self):
|
||||
# mock_module = self._mock_module()
|
||||
# Facts(mock_module)
|
||||
|
||||
# def test_facts_class_load_on_init_false(self):
|
||||
# mock_module = self._mock_module()
|
||||
# Facts(mock_module, load_on_init=False)
|
||||
# # FIXME: assert something
|
||||
|
||||
|
||||
class TestCollectedFacts(unittest.TestCase):
|
||||
gather_subset = ['all', '!facter', '!ohai']
|
||||
min_fact_count = 30
|
||||
max_fact_count = 1000
|
||||
|
||||
# TODO: add ansible_cmdline, ansible_*_pubkey* back when TempFactCollector goes away
|
||||
expected_facts = ['date_time',
|
||||
'user_id', 'distribution',
|
||||
'gather_subset', 'module_setup',
|
||||
'env']
|
||||
not_expected_facts = ['facter', 'ohai']
|
||||
|
||||
def _mock_module(self, gather_subset=None):
|
||||
return mock_module(gather_subset=self.gather_subset)
|
||||
|
||||
def setUp(self):
|
||||
mock_module = self._mock_module()
|
||||
collectors = self._collectors(mock_module)
|
||||
|
||||
fact_collector = \
|
||||
ansible_collector.AnsibleFactCollector(collectors=collectors,
|
||||
namespace=ns)
|
||||
self.facts = fact_collector.collect(module=mock_module)
|
||||
|
||||
def _collectors(self, module,
|
||||
all_collector_classes=None,
|
||||
minimal_gather_subset=None):
|
||||
return _collectors(module=module,
|
||||
all_collector_classes=all_collector_classes,
|
||||
minimal_gather_subset=minimal_gather_subset)
|
||||
|
||||
def test_basics(self):
|
||||
self._assert_basics(self.facts)
|
||||
|
||||
def test_expected_facts(self):
|
||||
self._assert_expected_facts(self.facts)
|
||||
|
||||
def test_not_expected_facts(self):
|
||||
self._assert_not_expected_facts(self.facts)
|
||||
|
||||
def _assert_basics(self, facts):
|
||||
self.assertIsInstance(facts, dict)
|
||||
# just assert it's not almost empty
|
||||
self.assertGreaterEqual(len(facts), self.min_fact_count)
|
||||
# and that is not huge number of keys
|
||||
self.assertLess(len(facts), self.max_fact_count)
|
||||
|
||||
# everything starts with ansible_ namespace
|
||||
def _assert_ansible_namespace(self, facts):
|
||||
|
||||
# FIXME: kluge for non-namespace fact
|
||||
facts.pop('module_setup', None)
|
||||
facts.pop('gather_subset', None)
|
||||
|
||||
for fact_key in facts:
|
||||
self.assertTrue(fact_key.startswith('ansible_'),
|
||||
'The fact name "%s" does not startwith "ansible_"' % fact_key)
|
||||
|
||||
def _assert_expected_facts(self, facts):
|
||||
|
||||
facts_keys = sorted(facts.keys())
|
||||
for expected_fact in self.expected_facts:
|
||||
self.assertIn(expected_fact, facts_keys)
|
||||
|
||||
def _assert_not_expected_facts(self, facts):
|
||||
|
||||
facts_keys = sorted(facts.keys())
|
||||
for not_expected_fact in self.not_expected_facts:
|
||||
self.assertNotIn(not_expected_fact, facts_keys)
|
||||
|
||||
|
||||
class ExceptionThrowingCollector(collector.BaseFactCollector):
|
||||
def collect(self, module=None, collected_facts=None):
|
||||
raise Exception('A collector failed')
|
||||
|
||||
|
||||
class TestExceptionCollectedFacts(TestCollectedFacts):
|
||||
|
||||
def _collectors(self, module,
|
||||
all_collector_classes=None,
|
||||
minimal_gather_subset=None):
|
||||
collectors = _collectors(module=module,
|
||||
all_collector_classes=all_collector_classes,
|
||||
minimal_gather_subset=minimal_gather_subset)
|
||||
|
||||
c = [ExceptionThrowingCollector()] + collectors
|
||||
return c
|
||||
|
||||
|
||||
class TestOnlyExceptionCollector(TestCollectedFacts):
|
||||
expected_facts = []
|
||||
min_fact_count = 0
|
||||
|
||||
def _collectors(self, module,
|
||||
all_collector_classes=None,
|
||||
minimal_gather_subset=None):
|
||||
return [ExceptionThrowingCollector()]
|
||||
|
||||
|
||||
class TestMinimalCollectedFacts(TestCollectedFacts):
|
||||
gather_subset = ['!all']
|
||||
min_fact_count = 1
|
||||
max_fact_count = 10
|
||||
expected_facts = ['gather_subset',
|
||||
'module_setup']
|
||||
not_expected_facts = ['lsb']
|
Loading…
Add table
Add a link
Reference in a new issue