Fix delegate_facts with interpreter not being set (#70293)

Fixes #70168

ci_complete

Co-authored-by: Brian Coca <bcoca@users.noreply.github.com>
Co-authored-by: Matt Clay <matt@mystile.com>
This commit is contained in:
Martin Krizek 2020-06-30 15:49:09 +02:00 committed by GitHub
parent 30e70f4b63
commit b05e00e99a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 28 additions and 13 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- "Fix ``delegate_facts: true`` when ``ansible_python_interpreter`` is not set. (https://github.com/ansible/ansible/issues/70168)"

View file

@ -153,15 +153,11 @@ class ActionBase(with_metaclass(ABCMeta, object)):
return True return True
return False return False
def _configure_module(self, module_name, module_args, task_vars=None): def _configure_module(self, module_name, module_args, task_vars):
''' '''
Handles the loading and templating of the module code through the Handles the loading and templating of the module code through the
modify_module() function. modify_module() function.
''' '''
if task_vars is None:
use_vars = dict()
if self._task.delegate_to: if self._task.delegate_to:
use_vars = task_vars.get('ansible_delegated_vars')[self._task.delegate_to] use_vars = task_vars.get('ansible_delegated_vars')[self._task.delegate_to]
else: else:
@ -242,20 +238,18 @@ class ActionBase(with_metaclass(ABCMeta, object)):
# we'll propagate back to the controller in the task result # we'll propagate back to the controller in the task result
discovered_key = 'discovered_interpreter_%s' % idre.interpreter_name discovered_key = 'discovered_interpreter_%s' % idre.interpreter_name
# update the local vars copy for the retry
use_vars['ansible_facts'][discovered_key] = self._discovered_interpreter
# TODO: this condition prevents 'wrong host' from being updated # TODO: this condition prevents 'wrong host' from being updated
# but in future we would want to be able to update 'delegated host facts' # but in future we would want to be able to update 'delegated host facts'
# irrespective of task settings # irrespective of task settings
if not self._task.delegate_to or self._task.delegate_facts: if not self._task.delegate_to or self._task.delegate_facts:
# store in local task_vars facts collection for the retry and any other usages in this worker # store in local task_vars facts collection for the retry and any other usages in this worker
if use_vars.get('ansible_facts') is None:
task_vars['ansible_facts'] = {}
task_vars['ansible_facts'][discovered_key] = self._discovered_interpreter task_vars['ansible_facts'][discovered_key] = self._discovered_interpreter
# preserve this so _execute_module can propagate back to controller as a fact # preserve this so _execute_module can propagate back to controller as a fact
self._discovered_interpreter_key = discovered_key self._discovered_interpreter_key = discovered_key
else: else:
task_vars['ansible_delegated_vars'][self._task.delegate_to]
if task_vars['ansible_delegated_vars'][self._task.delegate_to].get('ansible_facts') is None:
task_vars['ansible_delegated_vars'][self._task.delegate_to]['ansible_facts'] = {}
task_vars['ansible_delegated_vars'][self._task.delegate_to]['ansible_facts'][discovered_key] = self._discovered_interpreter task_vars['ansible_delegated_vars'][self._task.delegate_to]['ansible_facts'][discovered_key] = self._discovered_interpreter
return (module_style, module_shebang, module_data, module_path) return (module_style, module_shebang, module_data, module_path)

View file

@ -0,0 +1,2 @@
shippable/posix/group1
non_local # this test requires interpreter discovery, which means code coverage must be disabled

View file

@ -0,0 +1,10 @@
- hosts: localhost
gather_facts: no
tasks:
- name: Test python interpreter discovery with delegate_to without delegate_facts
ping:
delegate_to: testhost
- name: Test python interpreter discovery with delegate_to with delegate_facts
ping:
delegate_to: testhost
delegate_facts: yes

View file

@ -0,0 +1,2 @@
[local]
testhost ansible_connection=local ansible_python_interpreter=auto # interpreter discovery required

View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -eux
ansible-playbook delegate_facts.yml -i inventory "$@"

View file

@ -164,19 +164,19 @@ class TestActionBase(unittest.TestCase):
self.assertEqual(shebang, u"#!/usr/bin/python") self.assertEqual(shebang, u"#!/usr/bin/python")
# test module not found # test module not found
self.assertRaises(AnsibleError, action_base._configure_module, 'badmodule', mock_task.args) self.assertRaises(AnsibleError, action_base._configure_module, 'badmodule', mock_task.args, {})
# test powershell module formatting # test powershell module formatting
with patch.object(builtins, 'open', mock_open(read_data=to_bytes(powershell_module_replacers.strip(), encoding='utf-8'))): with patch.object(builtins, 'open', mock_open(read_data=to_bytes(powershell_module_replacers.strip(), encoding='utf-8'))):
mock_task.action = 'win_copy' mock_task.action = 'win_copy'
mock_task.args = dict(b=2) mock_task.args = dict(b=2)
mock_connection.module_implementation_preferences = ('.ps1',) mock_connection.module_implementation_preferences = ('.ps1',)
(style, shebang, data, path) = action_base._configure_module('stat', mock_task.args) (style, shebang, data, path) = action_base._configure_module('stat', mock_task.args, {})
self.assertEqual(style, "new") self.assertEqual(style, "new")
self.assertEqual(shebang, u'#!powershell') self.assertEqual(shebang, u'#!powershell')
# test module not found # test module not found
self.assertRaises(AnsibleError, action_base._configure_module, 'badmodule', mock_task.args) self.assertRaises(AnsibleError, action_base._configure_module, 'badmodule', mock_task.args, {})
def test_action_base__compute_environment_string(self): def test_action_base__compute_environment_string(self):
fake_loader = DictDataLoader({ fake_loader = DictDataLoader({