mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
7c9dd8d8ad
pipx - add suffix parameter (#8675)
* initial commit
* add changelog frag
* Add idempotency when using suffix
(cherry picked from commit 5b2711bbd3
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
374 lines
9.9 KiB
YAML
374 lines
9.9 KiB
YAML
---
|
|
# Copyright (c) Ansible Project
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: install pipx
|
|
pip:
|
|
name: pipx
|
|
extra_args: --user
|
|
|
|
##############################################################################
|
|
- name: ensure application tox is uninstalled
|
|
community.general.pipx:
|
|
state: absent
|
|
name: tox
|
|
register: uninstall_tox
|
|
|
|
- name: install application tox
|
|
community.general.pipx:
|
|
name: tox
|
|
register: install_tox
|
|
|
|
- name: set fact latest_tox_version
|
|
set_fact:
|
|
latest_tox_version: "{{ install_tox.application.tox.version }}"
|
|
|
|
- name: install application tox again
|
|
community.general.pipx:
|
|
name: tox
|
|
register: install_tox_again
|
|
|
|
- name: install application tox again force
|
|
community.general.pipx:
|
|
name: tox
|
|
force: true
|
|
register: install_tox_again_force
|
|
|
|
- name: uninstall application tox
|
|
community.general.pipx:
|
|
state: absent
|
|
name: tox
|
|
register: uninstall_tox
|
|
|
|
- name: check assertions tox
|
|
assert:
|
|
that:
|
|
- install_tox is changed
|
|
- "'tox' in install_tox.application"
|
|
- install_tox_again is not changed
|
|
- install_tox_again_force is changed
|
|
- uninstall_tox is changed
|
|
- "'tox' not in uninstall_tox.application"
|
|
|
|
##############################################################################
|
|
- name: install application tox with system-site-packages
|
|
community.general.pipx:
|
|
name: tox
|
|
system_site_packages: true
|
|
register: install_tox
|
|
|
|
- name: get raw pipx_info
|
|
community.general.pipx_info:
|
|
include_raw: true
|
|
register: pipx_info_raw
|
|
|
|
- name: uninstall application tox
|
|
community.general.pipx:
|
|
state: absent
|
|
name: tox
|
|
register: uninstall_tox
|
|
|
|
- name: check assertions tox
|
|
assert:
|
|
that:
|
|
- install_tox is changed
|
|
- "'tox' in install_tox.application"
|
|
- pipx_info_raw is not changed
|
|
- "'--system-site-packages' in pipx_info_raw.raw_output.venvs.tox.metadata.venv_args"
|
|
- uninstall_tox is changed
|
|
- "'tox' not in uninstall_tox.application"
|
|
|
|
##############################################################################
|
|
- name: install application tox 3.24.0
|
|
community.general.pipx:
|
|
name: tox
|
|
source: tox==3.24.0
|
|
register: install_tox_324
|
|
|
|
- name: reinstall tox 3.24.0
|
|
community.general.pipx:
|
|
name: tox
|
|
state: reinstall
|
|
register: reinstall_tox_324
|
|
|
|
- name: reinstall without name
|
|
community.general.pipx:
|
|
state: reinstall
|
|
register: reinstall_noname
|
|
ignore_errors: true
|
|
|
|
- name: upgrade tox from 3.24.0
|
|
community.general.pipx:
|
|
name: tox
|
|
state: upgrade
|
|
register: upgrade_tox_324
|
|
|
|
- name: upgrade without name
|
|
community.general.pipx:
|
|
state: upgrade
|
|
register: upgrade_noname
|
|
ignore_errors: true
|
|
|
|
- name: downgrade tox 3.24.0
|
|
community.general.pipx:
|
|
name: tox
|
|
source: tox==3.24.0
|
|
force: true
|
|
register: downgrade_tox_324
|
|
|
|
- name: cleanup tox 3.24.0
|
|
community.general.pipx:
|
|
state: absent
|
|
name: tox
|
|
register: uninstall_tox_324
|
|
|
|
- name: check assertions tox 3.24.0
|
|
assert:
|
|
that:
|
|
- install_tox_324 is changed
|
|
- "'tox' in install_tox_324.application"
|
|
- install_tox_324.application.tox.version == '3.24.0'
|
|
- reinstall_tox_324 is changed
|
|
- reinstall_tox_324.application.tox.version == '3.24.0'
|
|
- upgrade_tox_324 is changed
|
|
- upgrade_tox_324.application.tox.version != '3.24.0'
|
|
- downgrade_tox_324 is changed
|
|
- downgrade_tox_324.application.tox.version == '3.24.0'
|
|
- uninstall_tox_324 is changed
|
|
- "'tox' not in uninstall_tox_324.application"
|
|
- upgrade_noname is failed
|
|
- reinstall_noname is failed
|
|
|
|
##############################################################################
|
|
- name: install application latest tox
|
|
community.general.pipx:
|
|
name: tox
|
|
state: latest
|
|
register: install_tox_latest
|
|
|
|
- name: cleanup tox latest
|
|
community.general.pipx:
|
|
state: absent
|
|
name: tox
|
|
register: uninstall_tox_latest
|
|
|
|
- name: install application tox 3.24.0 for latest
|
|
community.general.pipx:
|
|
name: tox
|
|
source: tox==3.24.0
|
|
register: install_tox_324_for_latest
|
|
|
|
- name: install application latest tox
|
|
community.general.pipx:
|
|
name: tox
|
|
state: latest
|
|
register: install_tox_latest_with_preinstall
|
|
|
|
- name: install application latest tox again
|
|
community.general.pipx:
|
|
name: tox
|
|
state: latest
|
|
register: install_tox_latest_with_preinstall_again
|
|
|
|
- name: install application latest tox (force)
|
|
community.general.pipx:
|
|
name: tox
|
|
state: latest
|
|
force: true
|
|
register: install_tox_latest_with_preinstall_again_force
|
|
|
|
- name: cleanup tox latest again
|
|
community.general.pipx:
|
|
state: absent
|
|
name: tox
|
|
register: uninstall_tox_latest_again
|
|
|
|
- name: install application tox with deps
|
|
community.general.pipx:
|
|
state: latest
|
|
name: tox
|
|
install_deps: true
|
|
register: install_tox_with_deps
|
|
|
|
- name: cleanup tox latest yet again
|
|
community.general.pipx:
|
|
state: absent
|
|
name: tox
|
|
register: uninstall_tox_again
|
|
|
|
- name: check assertions tox latest
|
|
assert:
|
|
that:
|
|
- install_tox_latest is changed
|
|
- uninstall_tox_latest is changed
|
|
- install_tox_324_for_latest is changed
|
|
- install_tox_324_for_latest.application.tox.version == '3.24.0'
|
|
- install_tox_latest_with_preinstall is changed
|
|
- install_tox_latest_with_preinstall.application.tox.version == latest_tox_version
|
|
- install_tox_latest_with_preinstall_again is not changed
|
|
- install_tox_latest_with_preinstall_again.application.tox.version == latest_tox_version
|
|
- install_tox_latest_with_preinstall_again_force is changed
|
|
- install_tox_latest_with_preinstall_again_force.application.tox.version == latest_tox_version
|
|
- uninstall_tox_latest_again is changed
|
|
- install_tox_with_deps is changed
|
|
- install_tox_with_deps.application.tox.version == latest_tox_version
|
|
- uninstall_tox_again is changed
|
|
- "'tox' not in uninstall_tox_again.application"
|
|
|
|
##############################################################################
|
|
- name: ensure application pylint is uninstalled
|
|
community.general.pipx:
|
|
name: pylint
|
|
state: absent
|
|
|
|
- name: install application pylint
|
|
community.general.pipx:
|
|
name: pylint
|
|
register: install_pylint
|
|
|
|
- name: inject packages
|
|
community.general.pipx:
|
|
state: inject
|
|
name: pylint
|
|
inject_packages:
|
|
- licenses
|
|
register: inject_pkgs_pylint
|
|
|
|
- name: inject packages with apps
|
|
community.general.pipx:
|
|
state: inject
|
|
name: pylint
|
|
inject_packages:
|
|
- black
|
|
install_apps: true
|
|
register: inject_pkgs_apps_pylint
|
|
|
|
- name: cleanup pylint
|
|
community.general.pipx:
|
|
state: absent
|
|
name: pylint
|
|
register: uninstall_pylint
|
|
|
|
- name: check assertions inject_packages
|
|
assert:
|
|
that:
|
|
- install_pylint is changed
|
|
- inject_pkgs_pylint is changed
|
|
- '"pylint" in inject_pkgs_pylint.application'
|
|
- '"licenses" in inject_pkgs_pylint.application["pylint"]["injected"]'
|
|
- inject_pkgs_apps_pylint is changed
|
|
- '"pylint" in inject_pkgs_apps_pylint.application'
|
|
- '"black" in inject_pkgs_apps_pylint.application["pylint"]["injected"]'
|
|
- uninstall_pylint is changed
|
|
|
|
##############################################################################
|
|
- name: install jupyter - not working smoothly in freebsd
|
|
# when: ansible_system != 'FreeBSD'
|
|
block:
|
|
- name: ensure application mkdocs is uninstalled
|
|
community.general.pipx:
|
|
name: mkdocs
|
|
state: absent
|
|
|
|
- name: install application mkdocs
|
|
community.general.pipx:
|
|
name: mkdocs
|
|
install_deps: true
|
|
register: install_mkdocs
|
|
|
|
- name: cleanup mkdocs
|
|
community.general.pipx:
|
|
state: absent
|
|
name: mkdocs
|
|
|
|
- name: check assertions
|
|
assert:
|
|
that:
|
|
- install_mkdocs is changed
|
|
- '"markdown_py" in install_mkdocs.stdout'
|
|
|
|
##############################################################################
|
|
- name: ensure /opt/pipx
|
|
ansible.builtin.file:
|
|
path: /opt/pipx
|
|
state: directory
|
|
mode: 0755
|
|
|
|
- name: install tox site-wide
|
|
community.general.pipx:
|
|
name: tox
|
|
state: latest
|
|
register: install_tox_sitewide
|
|
environment:
|
|
PIPX_HOME: /opt/pipx
|
|
PIPX_BIN_DIR: /usr/local/bin
|
|
|
|
- name: stat /usr/local/bin/tox
|
|
ansible.builtin.stat:
|
|
path: /usr/local/bin/tox
|
|
register: usrlocaltox
|
|
|
|
- name: check assertions
|
|
ansible.builtin.assert:
|
|
that:
|
|
- install_tox_sitewide is changed
|
|
- usrlocaltox.stat.exists
|
|
|
|
##############################################################################
|
|
# Test for issue 7497
|
|
- name: ensure application pyinstaller is uninstalled
|
|
community.general.pipx:
|
|
name: pyinstaller
|
|
state: absent
|
|
|
|
- name: Install Python Package pyinstaller
|
|
community.general.pipx:
|
|
name: pyinstaller
|
|
state: present
|
|
system_site_packages: true
|
|
pip_args: "--no-cache-dir"
|
|
register: install_pyinstaller
|
|
|
|
- name: cleanup pyinstaller
|
|
community.general.pipx:
|
|
name: pyinstaller
|
|
state: absent
|
|
|
|
- name: check assertions
|
|
assert:
|
|
that:
|
|
- install_pyinstaller is changed
|
|
|
|
##############################################################################
|
|
# Test for issue 8656
|
|
- name: ensure application conan2 is uninstalled
|
|
community.general.pipx:
|
|
name: conan2
|
|
state: absent
|
|
|
|
- name: Install Python Package conan with suffix 2 (conan2)
|
|
community.general.pipx:
|
|
name: conan
|
|
state: install
|
|
suffix: "2"
|
|
register: install_conan2
|
|
|
|
- name: Install Python Package conan with suffix 2 (conan2) again
|
|
community.general.pipx:
|
|
name: conan
|
|
state: install
|
|
suffix: "2"
|
|
register: install_conan2_again
|
|
|
|
- name: cleanup conan2
|
|
community.general.pipx:
|
|
name: conan2
|
|
state: absent
|
|
|
|
- name: check assertions
|
|
assert:
|
|
that:
|
|
- install_conan2 is changed
|
|
- "' - conan2' in install_conan2.stdout"
|
|
- install_conan2_again is not changed
|