2021-03-24 17:20:26 +01:00
|
|
|
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
# (c) 2021 Ansible Project
|
|
|
|
#
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
|
|
# Make coding more python3-ish
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from ansible import context
|
2021-05-26 10:34:35 +02:00
|
|
|
|
|
|
|
from .helper import call_become_plugin
|
2021-03-24 17:20:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_sudosu(mocker, parser, reset_cli_args):
|
|
|
|
options = parser.parse_args([])
|
|
|
|
context._init_global_context(options)
|
|
|
|
|
|
|
|
default_cmd = "/bin/foo"
|
|
|
|
default_exe = "/bin/bash"
|
|
|
|
sudo_exe = 'sudo'
|
|
|
|
sudo_flags = '-H -s -n'
|
|
|
|
|
|
|
|
success = 'BECOME-SUCCESS-.+?'
|
|
|
|
|
2021-05-26 10:34:35 +02:00
|
|
|
task = {
|
|
|
|
'become_user': 'foo',
|
|
|
|
'become_method': 'community.general.sudosu',
|
|
|
|
'become_flags': sudo_flags,
|
|
|
|
}
|
|
|
|
var_options = {}
|
|
|
|
cmd = call_become_plugin(task, var_options, cmd=default_cmd, executable=default_exe)
|
|
|
|
print(cmd)
|
|
|
|
assert (re.match("""%s %s su -l %s %s -c 'echo %s; %s'""" % (sudo_exe, sudo_flags, task['become_user'],
|
2021-03-24 17:20:26 +01:00
|
|
|
default_exe, success, default_cmd), cmd) is not None)
|
|
|
|
|
2021-05-26 10:34:35 +02:00
|
|
|
task = {
|
|
|
|
'become_user': 'foo',
|
|
|
|
'become_method': 'community.general.sudosu',
|
|
|
|
'become_flags': sudo_flags,
|
|
|
|
'become_pass': 'testpass',
|
|
|
|
}
|
|
|
|
var_options = {}
|
|
|
|
cmd = call_become_plugin(task, var_options, cmd=default_cmd, executable=default_exe)
|
|
|
|
print(cmd)
|
2021-03-24 17:20:26 +01:00
|
|
|
assert (re.match("""%s %s -p "%s" su -l %s %s -c 'echo %s; %s'""" % (sudo_exe, sudo_flags.replace('-n', ''),
|
2021-05-26 10:34:35 +02:00
|
|
|
r"\[sudo via ansible, key=.+?\] password:", task['become_user'],
|
2021-03-24 17:20:26 +01:00
|
|
|
default_exe, success, default_cmd), cmd) is not None)
|