4ced1c693c
* Mention Docker SDK for Python instead of docker-py / docker. * Docs fixes. * Add myself as docker_container author. * Use array syntax for running command. * Break long lines. * Avoid failure when docker_version is None. * Improve docker-py vs. docker note in requirements. * Canonicalize Docker SDK for Python upgrade instructions. * Split long line. * Make it clearer which hostnames are meant.
31 lines
989 B
Python
31 lines
989 B
Python
# Copyright (c) 2018 Ansible Project
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
import json
|
|
|
|
import pytest
|
|
|
|
from ansible.modules.cloud.docker import docker_volume
|
|
from ansible.module_utils.docker import common
|
|
|
|
pytestmark = pytest.mark.usefixtures('patch_ansible_module')
|
|
|
|
TESTCASE_DOCKER_VOLUME = [
|
|
{
|
|
'name': 'daemon_config',
|
|
'state': 'present'
|
|
}
|
|
]
|
|
|
|
|
|
@pytest.mark.parametrize('patch_ansible_module', TESTCASE_DOCKER_VOLUME, indirect=['patch_ansible_module'])
|
|
def test_create_volume_on_invalid_docker_version(mocker, capfd):
|
|
mocker.patch.object(common, 'HAS_DOCKER_PY', True)
|
|
mocker.patch.object(common, 'docker_version', '1.8.0')
|
|
|
|
with pytest.raises(SystemExit):
|
|
docker_volume.main()
|
|
|
|
out, dummy = capfd.readouterr()
|
|
results = json.loads(out)
|
|
assert results['failed']
|
|
assert 'Error: Docker SDK for Python version is 1.8.0. Minimum version required is 1.10.0.' in results['msg']
|