add _load_params debug overrides for module args/file passed on cmdline
Updated python module wrapper explode method to drop 'args' file next to module. Both execute() and excommunicate() debug methods now pass the module args via file to enable debuggers that are picky about stdin. Updated unit tests to use a context manager for masking/restoring default streams and argv.
This commit is contained in:
parent
6322ed833e
commit
5b336832af
10 changed files with 358 additions and 448 deletions
|
@ -142,6 +142,7 @@ def debug(command, zipped_mod, json_params):
|
||||||
|
|
||||||
# Okay to use __file__ here because we're running from a kept file
|
# Okay to use __file__ here because we're running from a kept file
|
||||||
basedir = os.path.abspath(os.path.dirname(__file__))
|
basedir = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
args_path = os.path.join(basedir, 'args')
|
||||||
if command == 'explode':
|
if command == 'explode':
|
||||||
# transform the ZIPDATA into an exploded directory of code and then
|
# transform the ZIPDATA into an exploded directory of code and then
|
||||||
# print the path to the code. This is an easy way for people to look
|
# print the path to the code. This is an easy way for people to look
|
||||||
|
@ -163,6 +164,11 @@ def debug(command, zipped_mod, json_params):
|
||||||
f.write(z.read(filename))
|
f.write(z.read(filename))
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
# write the args file
|
||||||
|
f = open(args_path, 'w')
|
||||||
|
f.write(json_params)
|
||||||
|
f.close()
|
||||||
|
|
||||||
print('Module expanded into:')
|
print('Module expanded into:')
|
||||||
print('%%s' %% os.path.join(basedir, 'ansible'))
|
print('%%s' %% os.path.join(basedir, 'ansible'))
|
||||||
exitcode = 0
|
exitcode = 0
|
||||||
|
@ -171,7 +177,29 @@ def debug(command, zipped_mod, json_params):
|
||||||
# Execute the exploded code instead of executing the module from the
|
# Execute the exploded code instead of executing the module from the
|
||||||
# embedded ZIPDATA. This allows people to easily run their modified
|
# embedded ZIPDATA. This allows people to easily run their modified
|
||||||
# code on the remote machine to see how changes will affect it.
|
# code on the remote machine to see how changes will affect it.
|
||||||
exitcode = invoke_module(os.path.join(basedir, 'ansible_module_%(ansible_module)s.py'), basedir, json_params)
|
# This differs slightly from default Ansible execution of Python modules
|
||||||
|
# as it passes the arguments to the module via a file instead of stdin.
|
||||||
|
|
||||||
|
pythonpath = os.environ.get('PYTHONPATH')
|
||||||
|
if pythonpath:
|
||||||
|
os.environ['PYTHONPATH'] = ':'.join((basedir, pythonpath))
|
||||||
|
else:
|
||||||
|
os.environ['PYTHONPATH'] = basedir
|
||||||
|
|
||||||
|
p = subprocess.Popen(['%(interpreter)s', 'ansible_module_%(ansible_module)s.py', args_path], env=os.environ, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)
|
||||||
|
(stdout, stderr) = p.communicate()
|
||||||
|
|
||||||
|
if not isinstance(stderr, (bytes, unicode)):
|
||||||
|
stderr = stderr.read()
|
||||||
|
if not isinstance(stdout, (bytes, unicode)):
|
||||||
|
stdout = stdout.read()
|
||||||
|
if PY3:
|
||||||
|
sys.stderr.buffer.write(stderr)
|
||||||
|
sys.stdout.buffer.write(stdout)
|
||||||
|
else:
|
||||||
|
sys.stderr.write(stderr)
|
||||||
|
sys.stdout.write(stdout)
|
||||||
|
return p.returncode
|
||||||
|
|
||||||
elif command == 'excommunicate':
|
elif command == 'excommunicate':
|
||||||
# This attempts to run the module in-process (by importing a main
|
# This attempts to run the module in-process (by importing a main
|
||||||
|
@ -182,8 +210,9 @@ def debug(command, zipped_mod, json_params):
|
||||||
# when using this that are only artifacts of how we're invoking here,
|
# when using this that are only artifacts of how we're invoking here,
|
||||||
# not actual bugs (as they don't affect the real way that we invoke
|
# not actual bugs (as they don't affect the real way that we invoke
|
||||||
# ansible modules)
|
# ansible modules)
|
||||||
sys.stdin = IOStream(json_params)
|
|
||||||
sys.path.insert(0, basedir)
|
# stub the
|
||||||
|
sys.argv = ['%(ansible_module)s', args_path]
|
||||||
from ansible_module_%(ansible_module)s import main
|
from ansible_module_%(ansible_module)s import main
|
||||||
main()
|
main()
|
||||||
print('WARNING: Module returned to wrapper instead of exiting')
|
print('WARNING: Module returned to wrapper instead of exiting')
|
||||||
|
|
|
@ -1435,11 +1435,23 @@ class AnsibleModule(object):
|
||||||
|
|
||||||
def _load_params(self):
|
def _load_params(self):
|
||||||
''' read the input and set the params attribute. Sets the constants as well.'''
|
''' read the input and set the params attribute. Sets the constants as well.'''
|
||||||
|
# debug overrides to read args from file or cmdline
|
||||||
|
|
||||||
# Avoid tracebacks when locale is non-utf8
|
# Avoid tracebacks when locale is non-utf8
|
||||||
|
if len(sys.argv) > 1:
|
||||||
|
if os.path.isfile(sys.argv[1]):
|
||||||
|
fd = open(sys.argv[1], 'rb')
|
||||||
|
buffer = fd.read()
|
||||||
|
fd.close()
|
||||||
|
else:
|
||||||
|
buffer = sys.argv[1]
|
||||||
|
# default case, read from stdin
|
||||||
|
else:
|
||||||
if sys.version_info < (3,):
|
if sys.version_info < (3,):
|
||||||
buffer = sys.stdin.read()
|
buffer = sys.stdin.read()
|
||||||
else:
|
else:
|
||||||
buffer = sys.stdin.buffer.read()
|
buffer = sys.stdin.buffer.read()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
params = json.loads(buffer.decode('utf-8'))
|
params = json.loads(buffer.decode('utf-8'))
|
||||||
except ValueError:
|
except ValueError:
|
||||||
|
|
57
test/units/mock/procenv.py
Normal file
57
test/units/mock/procenv.py
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
# (c) 2016, Matt Davis <mdavis@ansible.com>
|
||||||
|
#
|
||||||
|
# This file is part of Ansible
|
||||||
|
#
|
||||||
|
# Ansible is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Ansible is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
# GNU General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
# Make coding more python3-ish
|
||||||
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
import sys
|
||||||
|
|
||||||
|
from contextlib import contextmanager
|
||||||
|
from io import BytesIO, StringIO
|
||||||
|
from ansible.compat.six import PY3
|
||||||
|
from ansible.utils.unicode import to_bytes
|
||||||
|
|
||||||
|
@contextmanager
|
||||||
|
def swap_stdin_and_argv(stdin_data='', argv_data=tuple()):
|
||||||
|
"""
|
||||||
|
context manager that temporarily masks the test runner's values for stdin and argv
|
||||||
|
"""
|
||||||
|
real_stdin = sys.stdin
|
||||||
|
|
||||||
|
if PY3:
|
||||||
|
sys.stdin = StringIO(stdin_data)
|
||||||
|
sys.stdin.buffer = BytesIO(to_bytes(stdin_data))
|
||||||
|
else:
|
||||||
|
sys.stdin = BytesIO(to_bytes(stdin_data))
|
||||||
|
|
||||||
|
real_argv = sys.argv
|
||||||
|
sys.argv = argv_data
|
||||||
|
yield
|
||||||
|
sys.stdin = real_stdin
|
||||||
|
sys.argv = real_argv
|
||||||
|
|
||||||
|
@contextmanager
|
||||||
|
def swap_stdout():
|
||||||
|
"""
|
||||||
|
context manager that temporarily replaces stdout for tests that need to verify output
|
||||||
|
"""
|
||||||
|
old_stdout = sys.stdout
|
||||||
|
fake_stream = BytesIO()
|
||||||
|
sys.stdout = fake_stream
|
||||||
|
yield fake_stream
|
||||||
|
sys.stdout = old_stdout
|
|
@ -22,35 +22,22 @@ __metaclass__ = type
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import json
|
import json
|
||||||
from io import BytesIO, StringIO
|
|
||||||
|
|
||||||
from ansible.compat.six import PY3
|
from units.mock.procenv import swap_stdin_and_argv
|
||||||
from ansible.utils.unicode import to_bytes
|
|
||||||
|
|
||||||
from ansible.compat.tests import unittest
|
from ansible.compat.tests import unittest
|
||||||
from ansible.compat.tests.mock import MagicMock
|
from ansible.compat.tests.mock import MagicMock
|
||||||
|
|
||||||
|
|
||||||
class TestModuleUtilsBasic(unittest.TestCase):
|
class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def setUp(self):
|
@unittest.skipIf(sys.version_info[0] >= 3, "Python 3 is not supported on targets (yet)")
|
||||||
self.real_stdin = sys.stdin
|
def test_module_utils_basic__log_invocation(self):
|
||||||
args = json.dumps(
|
with swap_stdin_and_argv(stdin_data=json.dumps(
|
||||||
dict(
|
dict(
|
||||||
ANSIBLE_MODULE_ARGS=dict(
|
ANSIBLE_MODULE_ARGS=dict(
|
||||||
foo=False, bar=[1,2,3], bam="bam", baz=u'baz'),
|
foo=False, bar=[1,2,3], bam="bam", baz=u'baz'),
|
||||||
ANSIBLE_MODULE_CONSTANTS=dict()
|
ANSIBLE_MODULE_CONSTANTS=dict()
|
||||||
)
|
))):
|
||||||
)
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
sys.stdin = self.real_stdin
|
|
||||||
|
|
||||||
@unittest.skipIf(sys.version_info[0] >= 3, "Python 3 is not supported on targets (yet)")
|
|
||||||
def test_module_utils_basic__log_invocation(self):
|
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
# test basic log invocation
|
# test basic log invocation
|
||||||
|
|
|
@ -23,39 +23,34 @@ __metaclass__ = type
|
||||||
import copy
|
import copy
|
||||||
import json
|
import json
|
||||||
import sys
|
import sys
|
||||||
from io import BytesIO, StringIO
|
|
||||||
|
|
||||||
from ansible.compat.six import PY3
|
|
||||||
from ansible.utils.unicode import to_bytes
|
|
||||||
from ansible.compat.tests import unittest
|
from ansible.compat.tests import unittest
|
||||||
|
from units.mock.procenv import swap_stdin_and_argv, swap_stdout
|
||||||
|
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
from ansible.module_utils.basic import heuristic_log_sanitize
|
from ansible.module_utils.basic import heuristic_log_sanitize
|
||||||
from ansible.module_utils.basic import return_values, remove_values
|
from ansible.module_utils.basic import return_values, remove_values
|
||||||
|
|
||||||
|
|
||||||
empty_invocation = {u'module_args': {}}
|
empty_invocation = {u'module_args': {}}
|
||||||
|
|
||||||
@unittest.skipIf(sys.version_info[0] >= 3, "Python 3 is not supported on targets (yet)")
|
@unittest.skipIf(sys.version_info[0] >= 3, "Python 3 is not supported on targets (yet)")
|
||||||
class TestAnsibleModuleExitJson(unittest.TestCase):
|
class TestAnsibleModuleExitJson(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.old_stdin = sys.stdin
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
if PY3:
|
self.stdin_swap_ctx = swap_stdin_and_argv(stdin_data=args)
|
||||||
sys.stdin = StringIO(args)
|
self.stdin_swap_ctx.__enter__()
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
self.old_stdout = sys.stdout
|
# since we can't use context managers and "with" without overriding run(), call them directly
|
||||||
self.fake_stream = BytesIO()
|
self.stdout_swap_ctx = swap_stdout()
|
||||||
sys.stdout = self.fake_stream
|
self.fake_stream = self.stdout_swap_ctx.__enter__()
|
||||||
|
|
||||||
self.module = basic.AnsibleModule(argument_spec=dict())
|
self.module = basic.AnsibleModule(argument_spec=dict())
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
sys.stdout = self.old_stdout
|
# since we can't use context managers and "with" without overriding run(), call them directly to clean up
|
||||||
sys.stdin = self.old_stdin
|
self.stdin_swap_ctx.__exit__(None, None, None)
|
||||||
|
self.stdout_swap_ctx.__exit__(None, None, None)
|
||||||
|
|
||||||
def test_exit_json_no_args_exits(self):
|
def test_exit_json_no_args_exits(self):
|
||||||
with self.assertRaises(SystemExit) as ctx:
|
with self.assertRaises(SystemExit) as ctx:
|
||||||
|
@ -123,32 +118,14 @@ class TestAnsibleModuleExitValuesRemoved(unittest.TestCase):
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self.old_stdin = sys.stdin
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
self.old_stdout = sys.stdout
|
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
sys.stdin = self.old_stdin
|
|
||||||
sys.stdout = self.old_stdout
|
|
||||||
|
|
||||||
def test_exit_json_removes_values(self):
|
def test_exit_json_removes_values(self):
|
||||||
self.maxDiff = None
|
self.maxDiff = None
|
||||||
for args, return_val, expected in self.dataset:
|
for args, return_val, expected in self.dataset:
|
||||||
sys.stdout = BytesIO()
|
|
||||||
params = dict(ANSIBLE_MODULE_ARGS=args, ANSIBLE_MODULE_CONSTANTS={})
|
params = dict(ANSIBLE_MODULE_ARGS=args, ANSIBLE_MODULE_CONSTANTS={})
|
||||||
params = json.dumps(params)
|
params = json.dumps(params)
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(params)
|
with swap_stdin_and_argv(stdin_data=params):
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(params))
|
with swap_stdout():
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(params))
|
|
||||||
module = basic.AnsibleModule(
|
module = basic.AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
username=dict(),
|
username=dict(),
|
||||||
|
@ -166,14 +143,10 @@ class TestAnsibleModuleExitValuesRemoved(unittest.TestCase):
|
||||||
expected = copy.deepcopy(expected)
|
expected = copy.deepcopy(expected)
|
||||||
del expected['changed']
|
del expected['changed']
|
||||||
expected['failed'] = True
|
expected['failed'] = True
|
||||||
sys.stdout = BytesIO()
|
|
||||||
params = dict(ANSIBLE_MODULE_ARGS=args, ANSIBLE_MODULE_CONSTANTS={})
|
params = dict(ANSIBLE_MODULE_ARGS=args, ANSIBLE_MODULE_CONSTANTS={})
|
||||||
params = json.dumps(params)
|
params = json.dumps(params)
|
||||||
if PY3:
|
with swap_stdin_and_argv(stdin_data=params):
|
||||||
sys.stdin = StringIO(params)
|
with swap_stdout():
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(params))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(params))
|
|
||||||
module = basic.AnsibleModule(
|
module = basic.AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
username=dict(),
|
username=dict(),
|
||||||
|
|
|
@ -23,16 +23,14 @@ __metaclass__ = type
|
||||||
import sys
|
import sys
|
||||||
import json
|
import json
|
||||||
import syslog
|
import syslog
|
||||||
from io import BytesIO, StringIO
|
|
||||||
|
|
||||||
from ansible.compat.six import PY3
|
|
||||||
from ansible.utils.unicode import to_bytes
|
|
||||||
|
|
||||||
from ansible.compat.tests import unittest
|
from ansible.compat.tests import unittest
|
||||||
from ansible.compat.tests.mock import patch, MagicMock
|
from ansible.compat.tests.mock import patch, MagicMock
|
||||||
|
from units.mock.procenv import swap_stdin_and_argv
|
||||||
|
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# Python 3.4+
|
# Python 3.4+
|
||||||
from importlib import reload
|
from importlib import reload
|
||||||
|
@ -44,15 +42,12 @@ except ImportError:
|
||||||
|
|
||||||
|
|
||||||
class TestAnsibleModuleSysLogSmokeTest(unittest.TestCase):
|
class TestAnsibleModuleSysLogSmokeTest(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
self.real_stdin = sys.stdin
|
|
||||||
if PY3:
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
sys.stdin = StringIO(args)
|
self.stdin_swap = swap_stdin_and_argv(stdin_data=args)
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
self.stdin_swap.__enter__()
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
self.am = basic.AnsibleModule(
|
self.am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
|
@ -64,7 +59,8 @@ class TestAnsibleModuleSysLogSmokeTest(unittest.TestCase):
|
||||||
basic.has_journal = False
|
basic.has_journal = False
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
sys.stdin = self.real_stdin
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
|
self.stdin_swap.__exit__(None, None, None)
|
||||||
basic.has_journal = self.has_journal
|
basic.has_journal = self.has_journal
|
||||||
|
|
||||||
def test_smoketest_syslog(self):
|
def test_smoketest_syslog(self):
|
||||||
|
@ -84,20 +80,18 @@ class TestAnsibleModuleJournaldSmokeTest(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
self.real_stdin = sys.stdin
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
|
self.stdin_swap = swap_stdin_and_argv(stdin_data=args)
|
||||||
|
self.stdin_swap.__enter__()
|
||||||
|
|
||||||
self.am = basic.AnsibleModule(
|
self.am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
sys.stdin = self.real_stdin
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
|
self.stdin_swap.__exit__(None, None, None)
|
||||||
|
|
||||||
@unittest.skipUnless(basic.has_journal, 'python systemd bindings not installed')
|
@unittest.skipUnless(basic.has_journal, 'python systemd bindings not installed')
|
||||||
def test_smoketest_journal(self):
|
def test_smoketest_journal(self):
|
||||||
|
@ -134,26 +128,26 @@ class TestAnsibleModuleLogSyslog(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
self.real_stdin = sys.stdin
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
if PY3:
|
self.stdin_swap = swap_stdin_and_argv(stdin_data=args)
|
||||||
sys.stdin = StringIO(args)
|
self.stdin_swap.__enter__()
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
|
|
||||||
self.am = basic.AnsibleModule(
|
self.am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
|
||||||
self.has_journal = basic.has_journal
|
self.has_journal = basic.has_journal
|
||||||
if self.has_journal:
|
if self.has_journal:
|
||||||
# Systems with journal can still test syslog
|
# Systems with journal can still test syslog
|
||||||
basic.has_journal = False
|
basic.has_journal = False
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
sys.stdin = self.real_stdin
|
# teardown/reset
|
||||||
basic.has_journal = self.has_journal
|
basic.has_journal = self.has_journal
|
||||||
|
|
||||||
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
|
self.stdin_swap.__exit__(None, None, None)
|
||||||
|
|
||||||
@patch('syslog.syslog', autospec=True)
|
@patch('syslog.syslog', autospec=True)
|
||||||
def test_no_log(self, mock_func):
|
def test_no_log(self, mock_func):
|
||||||
no_log = self.am.no_log
|
no_log = self.am.no_log
|
||||||
|
@ -191,21 +185,22 @@ class TestAnsibleModuleLogJournal(unittest.TestCase):
|
||||||
b'non-utf8 :\xff: test': b'non-utf8 :\xff: test'.decode('utf-8', 'replace')
|
b'non-utf8 :\xff: test': b'non-utf8 :\xff: test'.decode('utf-8', 'replace')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# overriding run lets us use context managers for setup/teardown-esque behavior
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
self.real_stdin = sys.stdin
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
if PY3:
|
self.stdin_swap = swap_stdin_and_argv(stdin_data=args)
|
||||||
sys.stdin = StringIO(args)
|
self.stdin_swap.__enter__()
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
self.am = basic.AnsibleModule(
|
self.am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
|
||||||
self.has_journal = basic.has_journal
|
self.has_journal = basic.has_journal
|
||||||
basic.has_journal = True
|
if self.has_journal:
|
||||||
|
# Systems with journal can still test syslog
|
||||||
|
basic.has_journal = False
|
||||||
|
|
||||||
self.module_patcher = None
|
self.module_patcher = None
|
||||||
|
|
||||||
# In case systemd-python is not installed
|
# In case systemd-python is not installed
|
||||||
|
@ -218,9 +213,12 @@ class TestAnsibleModuleLogJournal(unittest.TestCase):
|
||||||
self._fake_out_reload(basic)
|
self._fake_out_reload(basic)
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
sys.stdin = self.real_stdin
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
|
self.stdin_swap.__exit__(None, None, None)
|
||||||
|
|
||||||
|
# teardown/reset
|
||||||
basic.has_journal = self.has_journal
|
basic.has_journal = self.has_journal
|
||||||
|
|
||||||
if self.module_patcher:
|
if self.module_patcher:
|
||||||
self.module_patcher.stop()
|
self.module_patcher.stop()
|
||||||
reload(basic)
|
reload(basic)
|
||||||
|
|
|
@ -25,12 +25,11 @@ import sys
|
||||||
import time
|
import time
|
||||||
from io import BytesIO, StringIO
|
from io import BytesIO, StringIO
|
||||||
|
|
||||||
from ansible.compat.six import PY3
|
|
||||||
from ansible.utils.unicode import to_bytes
|
|
||||||
|
|
||||||
from ansible.compat.tests import unittest
|
from ansible.compat.tests import unittest
|
||||||
from ansible.compat.tests.mock import call, MagicMock, Mock, patch, sentinel
|
from ansible.compat.tests.mock import call, MagicMock, Mock, patch, sentinel
|
||||||
|
|
||||||
|
from units.mock.procenv import swap_stdin_and_argv
|
||||||
|
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
|
||||||
|
@ -46,9 +45,7 @@ class OpenBytesIO(BytesIO):
|
||||||
|
|
||||||
@unittest.skipIf(sys.version_info[0] >= 3, "Python 3 is not supported on targets (yet)")
|
@unittest.skipIf(sys.version_info[0] >= 3, "Python 3 is not supported on targets (yet)")
|
||||||
class TestAnsibleModuleRunCommand(unittest.TestCase):
|
class TestAnsibleModuleRunCommand(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
|
||||||
self.cmd_out = {
|
self.cmd_out = {
|
||||||
# os.read() is returning 'bytes', not strings
|
# os.read() is returning 'bytes', not strings
|
||||||
sentinel.stdout: BytesIO(),
|
sentinel.stdout: BytesIO(),
|
||||||
|
@ -66,11 +63,10 @@ class TestAnsibleModuleRunCommand(unittest.TestCase):
|
||||||
raise OSError(errno.EPERM, "Permission denied: '/inaccessible'")
|
raise OSError(errno.EPERM, "Permission denied: '/inaccessible'")
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
if PY3:
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
sys.stdin = StringIO(args)
|
self.stdin_swap = swap_stdin_and_argv(stdin_data=args)
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
self.stdin_swap.__enter__()
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
self.module = AnsibleModule(argument_spec=dict())
|
self.module = AnsibleModule(argument_spec=dict())
|
||||||
self.module.fail_json = MagicMock(side_effect=SystemExit)
|
self.module.fail_json = MagicMock(side_effect=SystemExit)
|
||||||
|
|
||||||
|
@ -96,6 +92,11 @@ class TestAnsibleModuleRunCommand(unittest.TestCase):
|
||||||
|
|
||||||
self.addCleanup(patch.stopall)
|
self.addCleanup(patch.stopall)
|
||||||
|
|
||||||
|
|
||||||
|
def tearDown(self):
|
||||||
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
|
self.stdin_swap.__exit__(None, None, None)
|
||||||
|
|
||||||
def test_list_as_args(self):
|
def test_list_as_args(self):
|
||||||
self.module.run_command(['/bin/ls', 'a', ' b', 'c '])
|
self.module.run_command(['/bin/ls', 'a', ' b', 'c '])
|
||||||
self.assertTrue(self.subprocess.Popen.called)
|
self.assertTrue(self.subprocess.Popen.called)
|
||||||
|
|
|
@ -22,30 +22,18 @@ __metaclass__ = type
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import json
|
import json
|
||||||
from io import BytesIO, StringIO
|
|
||||||
|
|
||||||
from ansible.compat.tests import unittest
|
from ansible.compat.tests import unittest
|
||||||
from ansible.compat.six import PY3
|
from units.mock.procenv import swap_stdin_and_argv
|
||||||
from ansible.utils.unicode import to_bytes
|
|
||||||
|
|
||||||
class TestAnsibleModuleExitJson(unittest.TestCase):
|
class TestAnsibleModuleExitJson(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
|
||||||
self.real_stdin = sys.stdin
|
|
||||||
|
|
||||||
def tearDown(self):
|
|
||||||
sys.stdin = self.real_stdin
|
|
||||||
|
|
||||||
def test_module_utils_basic_safe_eval(self):
|
def test_module_utils_basic_safe_eval(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
|
with swap_stdin_and_argv(stdin_data=args):
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec=dict(),
|
argument_spec=dict(),
|
||||||
)
|
)
|
||||||
|
|
|
@ -31,8 +31,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import __builtin__ as builtins
|
import __builtin__ as builtins
|
||||||
|
|
||||||
from ansible.compat.six import PY3
|
from units.mock.procenv import swap_stdin_and_argv
|
||||||
from ansible.utils.unicode import to_bytes
|
|
||||||
|
|
||||||
from ansible.compat.tests import unittest
|
from ansible.compat.tests import unittest
|
||||||
from ansible.compat.tests.mock import patch, MagicMock, mock_open, Mock, call
|
from ansible.compat.tests.mock import patch, MagicMock, mock_open, Mock, call
|
||||||
|
@ -42,10 +41,14 @@ realimport = builtins.__import__
|
||||||
class TestModuleUtilsBasic(unittest.TestCase):
|
class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
self.real_stdin = sys.stdin
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
|
self.stdin_swap = swap_stdin_and_argv(stdin_data=args)
|
||||||
|
self.stdin_swap.__enter__()
|
||||||
|
|
||||||
def tearDown(self):
|
def tearDown(self):
|
||||||
sys.stdin = self.real_stdin
|
# unittest doesn't have a clean place to use a context manager, so we have to enter/exit manually
|
||||||
|
self.stdin_swap.__exit__(None, None, None)
|
||||||
|
|
||||||
def clear_modules(self, mods):
|
def clear_modules(self, mods):
|
||||||
for mod in mods:
|
for mod in mods:
|
||||||
|
@ -271,13 +274,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_creation(self):
|
def test_module_utils_basic_ansible_module_creation(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec=dict(),
|
argument_spec=dict(),
|
||||||
)
|
)
|
||||||
|
@ -293,12 +289,8 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
|
|
||||||
# should test ok
|
# should test ok
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={"foo": "hello"}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={"foo": "hello"}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
|
with swap_stdin_and_argv(stdin_data=args):
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = arg_spec,
|
argument_spec = arg_spec,
|
||||||
mutually_exclusive = mut_ex,
|
mutually_exclusive = mut_ex,
|
||||||
|
@ -313,12 +305,8 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
|
|
||||||
# fail, because a required param was not specified
|
# fail, because a required param was not specified
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
|
with swap_stdin_and_argv(stdin_data=args):
|
||||||
self.assertRaises(
|
self.assertRaises(
|
||||||
SystemExit,
|
SystemExit,
|
||||||
basic.AnsibleModule,
|
basic.AnsibleModule,
|
||||||
|
@ -333,12 +321,8 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
|
|
||||||
# fail because of mutually exclusive parameters
|
# fail because of mutually exclusive parameters
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={"foo":"hello", "bar": "bad", "bam": "bad"}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={"foo":"hello", "bar": "bad", "bam": "bad"}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
|
with swap_stdin_and_argv(stdin_data=args):
|
||||||
self.assertRaises(
|
self.assertRaises(
|
||||||
SystemExit,
|
SystemExit,
|
||||||
basic.AnsibleModule,
|
basic.AnsibleModule,
|
||||||
|
@ -353,12 +337,8 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
|
|
||||||
# fail because a param required due to another param was not specified
|
# fail because a param required due to another param was not specified
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={"bam": "bad"}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={"bam": "bad"}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
|
with swap_stdin_and_argv(stdin_data=args):
|
||||||
self.assertRaises(
|
self.assertRaises(
|
||||||
SystemExit,
|
SystemExit,
|
||||||
basic.AnsibleModule,
|
basic.AnsibleModule,
|
||||||
|
@ -374,13 +354,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_load_file_common_arguments(self):
|
def test_module_utils_basic_ansible_module_load_file_common_arguments(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -429,13 +402,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_selinux_mls_enabled(self):
|
def test_module_utils_basic_ansible_module_selinux_mls_enabled(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -455,13 +421,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_selinux_initial_context(self):
|
def test_module_utils_basic_ansible_module_selinux_initial_context(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -475,13 +434,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_selinux_enabled(self):
|
def test_module_utils_basic_ansible_module_selinux_enabled(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -513,13 +465,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_selinux_default_context(self):
|
def test_module_utils_basic_ansible_module_selinux_default_context(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -555,13 +500,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_selinux_context(self):
|
def test_module_utils_basic_ansible_module_selinux_context(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -604,11 +542,8 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={"SELINUX_SPECIAL_FS": "nfs,nfsd,foos"}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={"SELINUX_SPECIAL_FS": "nfs,nfsd,foos"}))
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
with swap_stdin_and_argv(stdin_data=args):
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
|
@ -650,13 +585,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_to_filesystem_str(self):
|
def test_module_utils_basic_ansible_module_to_filesystem_str(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -667,13 +595,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_user_and_group(self):
|
def test_module_utils_basic_ansible_module_user_and_group(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -688,13 +609,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_find_mount_point(self):
|
def test_module_utils_basic_ansible_module_find_mount_point(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -718,13 +632,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_set_context_if_different(self):
|
def test_module_utils_basic_ansible_module_set_context_if_different(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -769,13 +676,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_set_owner_if_different(self):
|
def test_module_utils_basic_ansible_module_set_owner_if_different(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -814,13 +714,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_set_group_if_different(self):
|
def test_module_utils_basic_ansible_module_set_group_if_different(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -859,13 +752,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
def test_module_utils_basic_ansible_module_set_mode_if_different(self):
|
def test_module_utils_basic_ansible_module_set_mode_if_different(self):
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -953,13 +839,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
|
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
@ -1137,13 +1016,6 @@ class TestModuleUtilsBasic(unittest.TestCase):
|
||||||
|
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
|
||||||
if PY3:
|
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
|
|
||||||
am = basic.AnsibleModule(
|
am = basic.AnsibleModule(
|
||||||
argument_spec = dict(),
|
argument_spec = dict(),
|
||||||
)
|
)
|
||||||
|
|
|
@ -26,6 +26,8 @@ from io import BytesIO, StringIO
|
||||||
from ansible.compat.six import PY3
|
from ansible.compat.six import PY3
|
||||||
from ansible.utils.unicode import to_bytes
|
from ansible.utils.unicode import to_bytes
|
||||||
|
|
||||||
|
from units.mock.procenv import swap_stdin_and_argv
|
||||||
|
|
||||||
# for testing
|
# for testing
|
||||||
from ansible.compat.tests import unittest
|
from ansible.compat.tests import unittest
|
||||||
from ansible.compat.tests.mock import patch
|
from ansible.compat.tests.mock import patch
|
||||||
|
@ -323,15 +325,10 @@ def test_distribution_version():
|
||||||
# needs to be in here, because the import fails with python3 still
|
# needs to be in here, because the import fails with python3 still
|
||||||
import ansible.module_utils.facts as facts
|
import ansible.module_utils.facts as facts
|
||||||
|
|
||||||
real_stdin = sys.stdin
|
|
||||||
from ansible.module_utils import basic
|
from ansible.module_utils import basic
|
||||||
|
|
||||||
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
args = json.dumps(dict(ANSIBLE_MODULE_ARGS={}, ANSIBLE_MODULE_CONSTANTS={}))
|
||||||
if PY3:
|
with swap_stdin_and_argv(stdin_data=args):
|
||||||
sys.stdin = StringIO(args)
|
|
||||||
sys.stdin.buffer = BytesIO(to_bytes(args))
|
|
||||||
else:
|
|
||||||
sys.stdin = BytesIO(to_bytes(args))
|
|
||||||
module = basic.AnsibleModule(argument_spec=dict())
|
module = basic.AnsibleModule(argument_spec=dict())
|
||||||
|
|
||||||
for t in TESTSETS:
|
for t in TESTSETS:
|
||||||
|
@ -340,10 +337,6 @@ def test_distribution_version():
|
||||||
_test_one_distribution.description = "check distribution_version for %s" % t['name']
|
_test_one_distribution.description = "check distribution_version for %s" % t['name']
|
||||||
yield _test_one_distribution, facts, module, t
|
yield _test_one_distribution, facts, module, t
|
||||||
|
|
||||||
|
|
||||||
sys.stdin = real_stdin
|
|
||||||
|
|
||||||
|
|
||||||
def _test_one_distribution(facts, module, testcase):
|
def _test_one_distribution(facts, module, testcase):
|
||||||
"""run the test on one distribution testcase
|
"""run the test on one distribution testcase
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue