ansible-sshd/tests/tests_include_present.yml
Noriko Hosoi d67c562142 Clean up / Workaround non-inclusive words
- CHANGELOG.md
- tests/tests_include_present.yml
2023-01-17 09:36:43 +01:00

165 lines
6.6 KiB
YAML

---
- hosts: all
vars:
__sshd_test_backup_files:
- /etc/ssh/sshd_config
- /etc/ssh/sshd_config.d/00-ansible_system_role.conf
tasks:
- name: "Backup configuration files"
ansible.builtin.include_tasks: tasks/backup.yml
- name: Remove include directory from the main config file
ansible.builtin.lineinfile:
path: "/etc/ssh/sshd_config"
regexp: "^Include"
state: absent
when:
- (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version']|int > 8) or
(ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_major_version']|int >= 22)
- name: Create a new configuration in drop-in directory
ansible.builtin.include_role:
name: ansible-sshd
vars:
sshd_config_file: /etc/ssh/sshd_config.d/00-ansible_system_role.conf
sshd:
Banner: /etc/include-issue
Ciphers: aes192-ctr
when:
- (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version']|int > 8) or
(ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_major_version']|int >= 22)
- name: Verify the options are correctly set
block:
- name: Flush handlers
ansible.builtin.meta: flush_handlers
- name: Print drop-in configuration file
ansible.builtin.slurp:
src: /etc/ssh/sshd_config.d/00-ansible_system_role.conf
register: config
- name: Print the main configuration file
ansible.builtin.slurp:
src: /etc/ssh/sshd_config
register: config_main
- name: Check content of drop-in configuration file
ansible.builtin.assert:
that:
- "'Banner /etc/include-issue' in config.content | b64decode"
- "'Ciphers aes192-ctr' in config.content | b64decode"
- "'Include /etc/ssh/sshd_config.d/*.conf' not in config.content | b64decode"
- "'Subsystem sftp /usr/libexec/openssh/sftp-server' not in config.content | b64decode"
- "'Subsystem sftp /usr/lib/openssh/sftp-server' not in config.content | b64decode"
- name: Check common content of the main configuration file
ansible.builtin.assert:
that:
- "'Banner /etc/include-issue' not in config_main.content | b64decode"
- "'Ciphers aes192-ctr' not in config_main.content | b64decode"
- "'Include /etc/ssh/sshd_config.d/*.conf' in config_main.content | b64decode"
- name: Check RHEL content of the main configuration file
ansible.builtin.assert:
that:
- "config_main.content | b64decode | regex_search('Subsystem\\ssftp\\s/usr/libexec/openssh/sftp-server')"
when: ansible_facts['os_family'] == 'RedHat'
- name: Check Ubuntu content of the main configuration file
ansible.builtin.assert:
that:
- "config_main.content | b64decode | regex_search('Subsystem\\ssftp\\s/usr/lib/openssh/sftp-server')"
when: ansible_facts['os_family'] == 'Ubuntu'
when:
- (ansible_facts['os_family'] == 'RedHat' and ansible_facts['distribution_major_version']|int > 8) or
(ansible_facts['distribution'] == 'Ubuntu' and ansible_facts['distribution_major_version']|int >= 22)
tags: tests::verify
- name: "Restore configuration files"
ansible.builtin.include_tasks: tasks/restore.yml
- hosts: all
vars:
__sshd_test_backup_files:
- /etc/ssh/custom_sshd_config
- /etc/ssh/custom_sshd_config.d/custom-drop-in
tasks:
- name: Run only for a specific OS with an capable OpenSSH version
ansible.builtin.meta: end_play
when:
ansible_facts['distribution'] != 'Ubuntu'
or ansible_facts['distribution_major_version']|int != 20
- name: "Backup configuration files"
ansible.builtin.include_tasks: tasks/backup.yml
- name: Create sample main configuration file
# Normally, this should not be needed. For test, however, we need a file
# different to the one in the first play.
file:
path: /etc/ssh/custom_sshd_config
state: touch
- name: Create a new configuration in a custom drop-in directory
ansible.builtin.include_role:
name: ansible-sshd
vars:
sshd_config_file: /etc/ssh/custom_sshd_config.d/custom-drop-in
sshd_main_config_file: /etc/ssh/custom_sshd_config
sshd_drop_in_dir_mode: '0770'
sshd:
Banner: /etc/include-issue
Ciphers: aes192-ctr
- name: Verify the options are correctly set
block:
- name: Flush handlers
ansible.builtin.meta: flush_handlers
- name: Print custom drop-in configuration file
ansible.builtin.slurp:
src: /etc/ssh/custom_sshd_config.d/custom-drop-in
register: custom_drop_in
- name: Print the custom configuration file
ansible.builtin.slurp:
src: /etc/ssh/custom_sshd_config
register: custom_config
- name: Check content of custom drop-in configuration file
ansible.builtin.assert:
that:
- "'Banner /etc/include-issue' in custom_drop_in.content | b64decode"
- "'Ciphers aes192-ctr' in custom_drop_in.content | b64decode"
- "'Include /etc/ssh/custom_sshd_config.d/*.conf' not in custom_drop_in.content | b64decode"
- "'Subsystem sftp /usr/libexec/openssh/sftp-server' not in custom_drop_in.content | b64decode"
- "'Subsystem sftp /usr/lib/openssh/sftp-server' not in custom_drop_in.content | b64decode"
- name: Check common content of the custom configuration file
ansible.builtin.assert:
that:
- "'Banner /etc/include-issue' not in custom_config.content | b64decode"
- "'Ciphers aes192-ctr' not in custom_config.content | b64decode"
- "'Include /etc/ssh/custom_sshd_config.d/*.conf' in custom_config.content | b64decode"
- name: Read drop in directory mode
ansible.builtin.stat:
path: "/etc/ssh/custom_sshd_config.d"
register: drop_in_dir_stat
- name: Check drop in directory mode has been set correctly
assert:
that:
- drop_in_dir_stat.stat.isdir | bool
- drop_in_dir_stat.stat.mode == '0770'
msg: "effective mode: {{ drop_in_dir_stat.stat.mode }}, desired mode: 0770"
tags: tests::verify
- name: "Restore configuration files"
ansible.builtin.include_tasks: tasks/restore.yml