manage_pip_packages/molecule/default/verify.yml
Bertrand Lanson b782bb1509
All checks were successful
test / Linting (push) Successful in 8s
test / Molecule tests (default, debian12) (push) Successful in 1m16s
test / Molecule tests (default, debian11) (push) Successful in 1m21s
test / Molecule tests (default, ubuntu2004) (push) Successful in 1m22s
test / Molecule tests (default, ubuntu2204) (push) Successful in 59s
test / Molecule tests (with_custom_packages, debian11) (push) Successful in 54s
test / Molecule tests (with_custom_packages, debian12) (push) Successful in 59s
test / Molecule tests (with_custom_packages, ubuntu2004) (push) Successful in 1m22s
test / Molecule tests (with_custom_packages, ubuntu2204) (push) Successful in 1m25s
added ansible verify stage and gitea actions
2023-07-11 20:05:36 +02:00

47 lines
1.7 KiB
YAML

---
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: "Test: file /etc/hosts"
block:
- name: "Stat file /etc/hosts"
ansible.builtin.stat:
path: "/etc/hosts"
register: stat_etc_hosts
- name: "Verify file /etc/hosts"
ansible.builtin.assert:
that:
- stat_etc_hosts.stat.exists
- stat_etc_hosts.stat.isreg
- stat_etc_hosts.stat.pw_name == 'root'
- stat_etc_hosts.stat.gr_name == 'root'
- name: "Test: packages pip, vault-cli, yamllint, docker"
block:
- name: "Get pip3 up-to-date packages"
ansible.builtin.command: "pip3 list -u --format=json"
changed_when: false
register: pip_updated_packages
- name: "Get pip3 out-of-date packages"
ansible.builtin.command: "pip3 list -o --format=json"
changed_when: false
register: pip_outdated_packages
- name: "Verify packages pip, vault-cli, yamllint, docker"
vars:
pip_up_to_date_list: "{{ pip_updated_packages.stdout | from_json | json_query('[].name') }}"
pip_out_of_date_list: "{{ pip_outdated_packages.stdout | from_json | json_query('[].name') }}"
ansible.builtin.assert:
that:
- "'pip' in pip_up_to_date_list"
- "'pip' not in pip_out_of_date_list"
- "'vault-cli' not in pip_up_to_date_list"
- "'vault-cli' not in pip_out_of_date_list"
- "'yamllint' not in pip_up_to_date_list"
- "'yamllint' not in pip_out_of_date_list"
- "'docker' not in pip_up_to_date_list"
- "'docker' not in pip_out_of_date_list"