2020-09-25 08:01:17 +02:00
|
|
|
####################################################################
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
####################################################################
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
- name: run python_requirements_info module
|
|
|
|
python_requirements_info:
|
|
|
|
register: basic_info
|
|
|
|
|
|
|
|
- name: ensure python_requirements_info returns desired info
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- "'python' in basic_info"
|
|
|
|
- "'python_version' in basic_info"
|
2021-11-30 07:08:45 +01:00
|
|
|
- basic_info.python_version_info == ansible_python.version
|
2020-03-09 10:11:07 +01:00
|
|
|
|
|
|
|
- name: run python_requirements_info module
|
|
|
|
python_requirements_info:
|
|
|
|
dependencies:
|
|
|
|
- notreal<1
|
|
|
|
- pip>1
|
|
|
|
register: dep_info
|
|
|
|
|
|
|
|
- name: ensure python_requirements_info returns desired info
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- "'installed' in dep_info.valid.pip"
|
|
|
|
- "'notreal' in dep_info.not_found"
|
2021-11-26 07:09:46 +01:00
|
|
|
|
|
|
|
- name: wrong specs
|
|
|
|
python_requirements_info:
|
|
|
|
dependencies:
|
|
|
|
- ansible<
|
|
|
|
register: wrong_spec1
|
|
|
|
ignore_errors: true
|
|
|
|
|
|
|
|
- name: ensure wrong specs return error
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- wrong_spec1 is failed
|