Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FQCN mappings for network facts modules #69601

Merged
merged 3 commits into from May 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 12 additions & 0 deletions lib/ansible/config/base.yml
Expand Up @@ -1322,17 +1322,29 @@ CONNECTION_FACTS_MODULES:
name: Map of connections to fact modules
default:
asa: asa_facts
cisco.asa.asa: cisco.asa.asa_facts
eos: eos_facts
arista.eos.eos: arista.eos.eos_facts
frr: frr_facts
frr.frr.frr: frr.frr.frr_facts
ios: ios_facts
cisco.ios.ios: cisco.ios.ios_facts
iosxr: iosxr_facts
cisco.iosxr.iosxr: cisco.iosxr.iosxr_facts
junos: junos_facts
junipernetworks.junos.junos: junipernetworks.junos.junos_facts
nxos: nxos_facts
cisco.nxos.nxos: cisco.nxos.nxos_facts
vyos: vyos_facts
vyos.vyos.vyos: vyos.vyos.vyos_facts
exos: exos_facts
extreme.exos.exos: extreme.exos.exos_facts
slxos: slxos_facts
extreme.slxos.slxos: extreme.slxos.slxos_facts
voss: voss_facts
extreme.voss.voss: extreme.voss.voss_facts
ironware: ironware_facts
community.network.ironware: community.network.ironware_facts
description: "Which modules to run during a play's fact gathering stage based on connection"
env: [{name: ANSIBLE_CONNECTION_FACTS_MODULES}]
ini:
Expand Down
21 changes: 20 additions & 1 deletion test/units/plugins/action/test_gather_facts.py
Expand Up @@ -31,7 +31,6 @@

class TestNetworkFacts(unittest.TestCase):
task = MagicMock(Task)
task_vars = {'ansible_network_os': 'ios'}
play_context = MagicMock()
play_context.check_mode = False
connection = MagicMock()
Expand All @@ -46,6 +45,7 @@ def tearDown(self):
pass

def test_network_gather_facts(self):
self.task_vars = {'ansible_network_os': 'ios'}
self.task.action = 'gather_facts'
self.task.async_val = False
self.task.args = {'gather_subset': 'min'}
Expand All @@ -62,3 +62,22 @@ def test_network_gather_facts(self):

facts_modules = C.config.get_config_value('FACTS_MODULES', variables=self.task_vars)
self.assertEqual(facts_modules, ['ios_facts'])

def test_network_gather_facts_fqcn(self):
self.fqcn_task_vars = {'ansible_network_os': 'cisco.ios.ios'}
self.task.action = 'gather_facts'
self.task.async_val = False
self.task.args = {'gather_subset': 'min'}
self.task.module_defaults = [{'cisco.ios.ios_facts': {'gather_subset': 'min'}}]

plugin = ActionModule(self.task, self.connection, self.play_context, loader=None, templar=self.templar, shared_loader_obj=None)
plugin._execute_module = MagicMock()

res = plugin.run(task_vars=self.fqcn_task_vars)
self.assertEqual(res['ansible_facts']['_ansible_facts_gathered'], True)

mod_args = plugin._get_module_args('cisco.ios.ios_facts', task_vars=self.fqcn_task_vars)
self.assertEqual(mod_args['gather_subset'], 'min')

facts_modules = C.config.get_config_value('FACTS_MODULES', variables=self.fqcn_task_vars)
self.assertEqual(facts_modules, ['cisco.ios.ios_facts'])