fix tests
All checks were successful
test / Linting (push) Successful in 27s
test / Molecule tests (default, ubuntu2004) (push) Successful in 1m15s
test / Molecule tests (default, debian11) (push) Successful in 1m42s
test / Molecule tests (default, debian12) (push) Successful in 1m42s
test / Molecule tests (default, ubuntu2204) (push) Successful in 1m11s
test / Molecule tests (with_custom_config, debian11) (push) Successful in 53s
test / Molecule tests (with_custom_config, debian12) (push) Successful in 53s
test / Molecule tests (with_custom_config, ubuntu2004) (push) Successful in 51s
test / Molecule tests (with_custom_config, ubuntu2204) (push) Successful in 1m12s

This commit is contained in:
Bertrand Lanson 2023-07-09 01:05:25 +02:00
parent 4e169db69e
commit f096ff37ee
2 changed files with 11 additions and 10 deletions

View File

@ -15,6 +15,7 @@ galaxy_info:
- name: Debian
versions:
- bullseye
- bookworm
galaxy_tags:
- 'ubuntu'
- 'debian'

View File

@ -20,29 +20,29 @@
- name: "Test: directory /tmp"
block:
- name: "Stat directory /tmp"
- name: "Stat directory /etc/netplan"
ansible.builtin.stat:
path: "/tmp"
register: stat_tmp
path: "/etc/netplan"
register: stat_etc_netplan
- name: "Stat file /tmp/ansible-config.yaml"
ansible.builtin.stat:
path: "/tmp/netplan/ansible-config.yaml"
path: "/tmp/ansible-config.yaml"
register: stat_tmp_ansible_config_yml
- name: "Slurp file /tmp/ansible-config.yaml"
ansible.builtin.slurp:
src: "/tmp/netplan/ansible-config.yaml"
src: "/tmp/ansible-config.yaml"
register: slurp_tmp_ansible_config_yml
- name: "Verify directory /tmp/netplan"
ansible.builtin.assert:
that:
- stat_tmp.stat.exists
- stat_tmp.stat.isdir
- stat_tmp.stat.pw_name == 'root'
- stat_tmp.stat.gr_name == 'root'
- stat_tmp.stat.mode == '0755'
- stat_etc_netplan.stat.exists
- stat_etc_netplan.stat.isdir
- stat_etc_netplan.stat.pw_name == 'root'
- stat_etc_netplan.stat.gr_name == 'root'
- stat_etc_netplan.stat.mode == '0755'
- stat_tmp_ansible_config_yml.stat.exists
- stat_tmp_ansible_config_yml.stat.isreg
- stat_tmp_ansible_config_yml.stat.pw_name == 'root'