2022-08-08 14:24:58 +02:00
|
|
|
# Copyright (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com>
|
|
|
|
# Copyright (c) 2020 Ansible Project
|
2020-03-09 10:11:07 +01:00
|
|
|
#
|
2022-08-05 12:28:29 +02:00
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
# Make coding more python3-ish
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from ansible import context
|
2020-03-30 19:09:45 +02:00
|
|
|
|
|
|
|
from .helper import call_become_plugin
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
|
2020-07-29 20:27:16 +02:00
|
|
|
def test_ksu_basic(mocker, parser, reset_cli_args):
|
|
|
|
options = parser.parse_args([])
|
|
|
|
context._init_global_context(options)
|
|
|
|
|
|
|
|
default_cmd = "/bin/foo"
|
|
|
|
default_exe = "/bin/bash"
|
|
|
|
ksu_exe = 'ksu'
|
|
|
|
ksu_flags = ''
|
|
|
|
|
|
|
|
success = 'BECOME-SUCCESS-.+?'
|
|
|
|
|
|
|
|
task = {
|
|
|
|
'become_user': 'foo',
|
|
|
|
'become_method': 'community.general.ksu',
|
|
|
|
}
|
|
|
|
var_options = {}
|
|
|
|
cmd = call_become_plugin(task, var_options, cmd=default_cmd, executable=default_exe)
|
|
|
|
print(cmd)
|
|
|
|
assert (re.match("""%s %s %s -e %s -c 'echo %s; %s'""" % (ksu_exe, task['become_user'], ksu_flags,
|
|
|
|
default_exe, success, default_cmd), cmd) is not None)
|
|
|
|
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
def test_ksu(mocker, parser, reset_cli_args):
|
|
|
|
options = parser.parse_args([])
|
|
|
|
context._init_global_context(options)
|
|
|
|
|
|
|
|
default_cmd = "/bin/foo"
|
|
|
|
default_exe = "/bin/bash"
|
|
|
|
ksu_exe = 'ksu'
|
|
|
|
ksu_flags = ''
|
|
|
|
|
2020-03-30 19:09:45 +02:00
|
|
|
success = 'BECOME-SUCCESS-.+?'
|
|
|
|
|
|
|
|
task = {
|
|
|
|
'become_user': 'foo',
|
|
|
|
'become_method': 'community.general.ksu',
|
|
|
|
'become_flags': ksu_flags,
|
|
|
|
}
|
|
|
|
var_options = {}
|
|
|
|
cmd = call_become_plugin(task, var_options, cmd=default_cmd, executable=default_exe)
|
|
|
|
print(cmd)
|
|
|
|
assert (re.match("""%s %s %s -e %s -c 'echo %s; %s'""" % (ksu_exe, task['become_user'], ksu_flags,
|
|
|
|
default_exe, success, default_cmd), cmd) is not None)
|
|
|
|
|
|
|
|
|
|
|
|
def test_ksu_varoptions(mocker, parser, reset_cli_args):
|
|
|
|
options = parser.parse_args([])
|
|
|
|
context._init_global_context(options)
|
|
|
|
|
|
|
|
default_cmd = "/bin/foo"
|
|
|
|
default_exe = "/bin/bash"
|
|
|
|
ksu_exe = 'ksu'
|
|
|
|
ksu_flags = ''
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
success = 'BECOME-SUCCESS-.+?'
|
|
|
|
|
2020-03-30 19:09:45 +02:00
|
|
|
task = {
|
|
|
|
'become_user': 'foo',
|
|
|
|
'become_method': 'community.general.ksu',
|
|
|
|
'become_flags': 'xxx',
|
|
|
|
}
|
|
|
|
var_options = {
|
|
|
|
'ansible_become_user': 'bar',
|
|
|
|
'ansible_become_flags': ksu_flags,
|
|
|
|
}
|
|
|
|
cmd = call_become_plugin(task, var_options, cmd=default_cmd, executable=default_exe)
|
|
|
|
print(cmd)
|
|
|
|
assert (re.match("""%s %s %s -e %s -c 'echo %s; %s'""" % (ksu_exe, var_options['ansible_become_user'], ksu_flags,
|
2020-03-09 10:11:07 +01:00
|
|
|
default_exe, success, default_cmd), cmd) is not None)
|