diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..77b20fa --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,52 @@ +--- +name: test +on: [push] + +jobs: + lint: + name: Linting + runs-on: ubuntu-latest + container: + image: git.ednz.fr/container-factory/ansible-runner:act-latest + credentials: + username: ${{ secrets.ACTIONS_USER }} + password: ${{ secrets.ACTIONS_TOKEN }} + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: "Ansible lint" + run: ansible-lint --force-color + working-directory: ${{ gitea.workspace }} + + - name: "YAML lint" + run: yamllint . -f colored -c .yamllint + working-directory: ${{ gitea.workspace }} + + molecule-test: + name: Molecule tests + runs-on: ubuntu-latest + needs: lint + container: + image: git.ednz.fr/container-factory/ansible-runner:act-latest + credentials: + username: ${{ secrets.ACTIONS_USER }} + password: ${{ secrets.ACTIONS_TOKEN }} + strategy: + matrix: + test_os: [debian11, debian12, ubuntu2004, ubuntu2204] + scenario: [default, with_custom_config] + env: + ANSIBLE_HOST_KEY_CHECKING: 'false' + ANSIBLE_FORCE_COLOR: 'true' + ANSIBLE_PYTHON_INTERPRETER: /usr/bin/python3 + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: "Molecule test" + run: molecule test -s ${{ matrix.scenario }} + shell: bash + working-directory: ${{ gitea.workspace }} + env: + MOLECULE_TEST_OS: ${{ matrix.test_os }} diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 468a01d..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,82 +0,0 @@ ---- -stages: - - verify - - test-default - - test-with-custom-config - -image: - name: registry.ednz.fr/forge/ansible-runner - -variables: - ANSIBLE_HOST_KEY_CHECKING: 'false' - ANSIBLE_FORCE_COLOR: 'true' - ANSIBLE_PYTHON_INTERPRETER: /usr/bin/python3 - DOCKER_AUTH_CONFIG: $CI_DOCKER_AUTH_CONFIG - -.stage-test-default: - stage: test-default - -.stage-test-with-custom-config: - stage: test-with-custom-config - -.variables-ubuntu-2004: - variables: - MOLECULE_TEST_OS: "ubuntu2004" - -.variables-ubuntu-2204: - variables: - MOLECULE_TEST_OS: "ubuntu2204" - -.variables-debian-11: - variables: - MOLECULE_TEST_OS: "debian11" - -.script-molecule-test-default: - script: - - molecule test - -.script-molecule-test-with-custom-config: - script: - - molecule test -s with_custom_config - -ansible-verify: - stage: verify - script: - - yamllint . -c .yamllint - - ansible-lint - -ansible-test-ubuntu-2004-default: - extends: - - .stage-test-default - - .variables-ubuntu-2004 - - .script-molecule-test-default - -ansible-test-ubuntu-2204-default: - extends: - - .stage-test-default - - .variables-ubuntu-2204 - - .script-molecule-test-default - -ansible-test-debian-11-default: - extends: - - .stage-test-default - - .variables-debian-11 - - .script-molecule-test-default - -ansible-test-ubuntu-2004-with-custom-config: - extends: - - .stage-test-with-custom-config - - .variables-ubuntu-2004 - - .script-molecule-test-with-custom-config - -ansible-test-ubuntu-2204-with-custom-config: - extends: - - .stage-test-with-custom-config - - .variables-ubuntu-2204 - - .script-molecule-test-with-custom-config - -ansible-test-debian-11-with-custom-config: - extends: - - .stage-test-with-custom-config - - .variables-debian-11 - - .script-molecule-test-with-custom-config diff --git a/LICENSE b/LICENSE index 9ef042d..c9a37e5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2017 Jeff Geerling +Copyright (c) 2017 Bertrand Lanson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index 22064dd..03790b6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Manage netplan +manage_netplan ========= > This repository is only a mirror. Development and testing is done on a private gitlab server. diff --git a/molecule/default/molecule.yml b/molecule/default/molecule.yml index 7a62eb2..49efc7f 100644 --- a/molecule/default/molecule.yml +++ b/molecule/default/molecule.yml @@ -20,7 +20,7 @@ provisioner: defaults: remote_tmp: /tmp/.ansible verifier: - name: testinfra + name: ansible scenario: name: default test_sequence: diff --git a/molecule/default/verify.yml b/molecule/default/verify.yml new file mode 100644 index 0000000..f310af1 --- /dev/null +++ b/molecule/default/verify.yml @@ -0,0 +1,51 @@ +--- +- 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: directory /etc/netplan" + block: + - name: "Stat directory /etc/netplan" + ansible.builtin.stat: + path: "/etc/netplan" + register: stat_etc_netplan + + - name: "Stat file /etc/netplan/ansible-config.yaml" + ansible.builtin.stat: + path: "/etc/netplan/ansible-config.yaml" + register: stat_etc_netplan_ansible_config_yml + + - name: "Slurp file /etc/netplan/ansible-config.yaml" + ansible.builtin.slurp: + src: "/etc/netplan/ansible-config.yaml" + register: slurp_etc_netplan_ansible_config_yml + + - name: "Verify directory /etc/netplan" + ansible.builtin.assert: + that: + - 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_etc_netplan_ansible_config_yml.stat.exists + - stat_etc_netplan_ansible_config_yml.stat.isreg + - stat_etc_netplan_ansible_config_yml.stat.pw_name == 'root' + - stat_etc_netplan_ansible_config_yml.stat.gr_name == 'root' + - stat_etc_netplan_ansible_config_yml.stat.mode == '0644' + - slurp_etc_netplan_ansible_config_yml.content != '' diff --git a/molecule/with_custom_config/molecule.yml b/molecule/with_custom_config/molecule.yml index 6132acb..4df62e9 100644 --- a/molecule/with_custom_config/molecule.yml +++ b/molecule/with_custom_config/molecule.yml @@ -20,7 +20,7 @@ provisioner: defaults: remote_tmp: /tmp/.ansible verifier: - name: testinfra + name: ansible scenario: name: with_custom_config test_sequence: diff --git a/molecule/with_custom_config/verify.yml b/molecule/with_custom_config/verify.yml new file mode 100644 index 0000000..90251f6 --- /dev/null +++ b/molecule/with_custom_config/verify.yml @@ -0,0 +1,51 @@ +--- +- 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: directory /tmp" + block: + - name: "Stat directory /tmp" + ansible.builtin.stat: + path: "/tmp" + register: stat_tmp + + - name: "Stat file /tmp/ansible-config.yaml" + ansible.builtin.stat: + path: "/tmp/netplan/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" + 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_tmp_ansible_config_yml.stat.exists + - stat_tmp_ansible_config_yml.stat.isreg + - stat_tmp_ansible_config_yml.stat.pw_name == 'root' + - stat_tmp_ansible_config_yml.stat.gr_name == 'root' + - stat_tmp_ansible_config_yml.stat.mode == '0644' + - slurp_tmp_ansible_config_yml.content != ''