You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/units/plugins
Marius Gedminas 240c388e6c Fix a test failure on Python 3.6 (#20030)
* Fix a test failure on Python 3.6

tox -e py36 failed with

    ======================================================================
    ERROR: test_action_base__execute_module (units.plugins.action.test_action.TestActionBase)
    ----------------------------------------------------------------------
    Traceback (most recent call last):
      File "/home/mg/src/ansible/test/units/plugins/action/test_action.py", line 507, in test_action_base__execute_module
        self.assertEqual(action_base._execute_module(), dict(_ansible_parsed=True, rc=0, stdout="ok", stdout_lines=['ok']))
      File "/home/mg/src/ansible/lib/ansible/plugins/action/__init__.py", line 596, in _execute_module
        remote_module_path = self._connection._shell.join_path(tmp, remote_module_filename)
      File "/home/mg/opt/python36/lib/python3.6/unittest/mock.py", line 939, in __call__
        return _mock_self._mock_call(*args, **kwargs)
      File "/home/mg/opt/python36/lib/python3.6/unittest/mock.py", line 1005, in _mock_call
        ret_val = effect(*args, **kwargs)
      File "/home/mg/src/ansible/.tox/py36/lib/python3.6/posixpath.py", line 92, in join
        genericpath._check_arg_types('join', a, *p)
      File "/home/mg/src/ansible/.tox/py36/lib/python3.6/genericpath.py", line 149, in _check_arg_types
        (funcname, s.__class__.__name__)) from None
    TypeError: join() argument must be str or bytes, not 'MagicMock'

because os.path.join() now checks argument types since Python 3.6 (due
to pathlib support, I expect).

* Use a more realistic module name in test

(cherry picked from commit d9b89ca577)
9 years ago
..
action Fix a test failure on Python 3.6 (#20030) 9 years ago
cache Fixed import typo for memcache module in tests. 10 years ago
callback Squashed commit of the following: 10 years ago
connections Fix docker connection unit tests. 9 years ago
filter Reorganizing plugin unit tests and adding start of strategy tests (v2) 11 years ago
inventory Reorganizing plugin unit tests and adding start of strategy tests (v2) 11 years ago
lookup Fix password lookup py3 plus alikins unittest additions refactoring (#17626) 9 years ago
shell Reorganizing plugin unit tests and adding start of strategy tests (v2) 11 years ago
strategies Template "original_task" fields in _process_pending_results 9 years ago
vars Reorganizing plugin unit tests and adding start of strategy tests (v2) 11 years ago
__init__.py Making the switch to v2 11 years ago
test_plugins.py Fix ziploader for the cornercase of ansible invoking ansible. 10 years ago