1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/units/module_utils
Adrian Likins 6e585bdf24
Fact collector ordering deps (#31362)
Add deps/requires for fact collectors

Fact collectors can now set a required_facts
class attribute that will be a set of the names
of fact collectors they require to be run first.

ie, if a collector needs to know the ansible_distribution,
it should set it's required_facts to include 'distribution'

        required_facts = set(['distribution'])

If a collector requires another collector, it gets added
to the selected collector names.

We then topological sort the ordering of the collectors
so that deps work out (ie, 'distribution' will run before
'service_mgr')

required_facts were added to the collectors for:

        - network (requires 'distribution', 'platform')
        - hardware (requires 'platform')
        - service_mgr (requires 'distribution', 'platform')

Fix name references for facts (need 'ansible_' prefix)
is service_mgr

Fixes #30753
2018-01-22 18:23:40 -05:00
..
aws
basic If check mode enabled and file missing set changed to true 32676 (#33967) 2018-01-04 20:33:14 -08:00
cloud
ec2 Route table boto3 (#32059) 2018-01-09 20:09:25 -05:00
facts Fact collector ordering deps (#31362) 2018-01-22 18:23:40 -05:00
gcp
json_utils
net_tools Add support for Infoblox NIOS (#35097) 2018-01-22 14:25:13 +00:00
network Add Python 3.7 to CI unit test matrix. (#34680) 2018-01-10 00:57:11 -08:00
parsing
__init__.py
conftest.py
test_database.py
test_distribution_version.py Facts distribution clear linux 31501 (#32453) 2018-01-20 15:05:53 -05:00
test_known_hosts.py
test_postgresql.py
test_text.py