2017-12-05 21:43:13 +01:00
|
|
|
# Copyright (c) 2017 Ansible Project
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
2017-10-09 19:01:21 +02:00
|
|
|
import json
|
|
|
|
|
2017-12-05 21:43:13 +01:00
|
|
|
import pytest
|
2017-10-09 19:01:21 +02:00
|
|
|
|
|
|
|
from ansible.modules.packaging.language import pip
|
|
|
|
|
|
|
|
|
2017-12-05 21:43:13 +01:00
|
|
|
pytestmark = pytest.mark.usefixtures('patch_ansible_module')
|
2017-10-09 19:01:21 +02:00
|
|
|
|
|
|
|
|
2017-12-05 21:43:13 +01:00
|
|
|
@pytest.mark.parametrize('patch_ansible_module', [{'name': 'six'}], indirect=['patch_ansible_module'])
|
|
|
|
def test_failure_when_pip_absent(mocker, capfd):
|
|
|
|
get_bin_path = mocker.patch('ansible.module_utils.basic.AnsibleModule.get_bin_path')
|
|
|
|
get_bin_path.return_value = None
|
2017-10-09 19:01:21 +02:00
|
|
|
|
2017-12-05 21:43:13 +01:00
|
|
|
with pytest.raises(SystemExit):
|
|
|
|
pip.main()
|
2017-10-09 19:01:21 +02:00
|
|
|
|
2017-12-05 21:43:13 +01:00
|
|
|
out, err = capfd.readouterr()
|
|
|
|
results = json.loads(out)
|
|
|
|
assert results['failed']
|
|
|
|
assert 'pip needs to be installed' in results['msg']
|