Migrate Linux CI roles to test targets. (#17997)

This commit is contained in:
Matt Clay 2016-10-13 09:09:25 -07:00 committed by GitHub
commit 75e4645ee7
263 changed files with 53 additions and 53 deletions

View file

@ -0,0 +1,155 @@
- name: install the test daemon script
copy: src=ansible_test_service dest=/usr/sbin/ansible_test_service mode=755
register: install_result
- name: assert that the daemon script was installed
assert:
that:
- "install_result.dest == '/usr/sbin/ansible_test_service'"
- "install_result.checksum == '4e0164ceb9a5aeab76b38483ffd27fe791baa9f4'"
- "install_result.state == 'file'"
- "install_result.mode == '0755'"
# determine init system is in use
- name: detect sysv init system
set_fact: service_type=sysv
when: ansible_distribution in ['RedHat', 'CentOS', 'ScientificLinux'] and (ansible_distribution_version|version_compare('6', '>=') and ansible_distribution_version|version_compare('7', '<'))
- name: detect systemd init system
set_fact: service_type=systemd
when: (ansible_distribution in ['RedHat', 'CentOS', 'ScientificLinux'] and (ansible_distribution_version|version_compare('7', '>=') and ansible_distribution_version|version_compare('8', '<'))) or ansible_distribution == 'Fedora' or (ansible_distribution == 'Ubuntu' and ansible_distribution_version|version_compare('15.04', '>=')) or (ansible_distribution == 'Debian' and ansible_distribution_version|version_compare('8', '>=')) or ansible_os_family == 'Suse'
- name: detect upstart init system
set_fact: service_type=upstart
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version|version_compare('15.04', '<')
# setup test service script
- include: 'sysv_setup.yml'
when: service_type == "sysv"
- include: 'systemd_setup.yml'
when: service_type == "systemd"
- include: 'upstart_setup.yml'
when: service_type == "upstart"
- name: disable the ansible test service
service: name=ansible_test enabled=no
- name: (check mode run) enable the ansible test service
service: name=ansible_test enabled=yes
register: enable_in_check_mode_result
check_mode: yes
- name: assert that changes reported for check mode run
assert:
that:
- "enable_in_check_mode_result.changed == true"
- name: enable the ansible test service
service: name=ansible_test enabled=yes
register: enable_result
- name: assert that the service was enabled and changes reported
assert:
that:
- "enable_result.enabled == true"
- "enable_result.changed == true"
- name: start the ansible test service
service: name=ansible_test state=started
register: start_result
- name: assert that the service was started
assert:
that:
- "start_result.state == 'started'"
- name: find the service with a pattern
service: name=ansible_test pattern="ansible_test_ser*" state=started
register: start2_result
# don't enable this check yet on systems with systemd because of https://github.com/ansible/ansible/issues/16694
when: service_type != "systemd"
- name: assert that the service was started via the pattern
assert:
that:
- "start2_result.name == 'ansible_test'"
- "start2_result.state == 'started'"
when: service_type != "systemd"
- name: restart the ansible test service
service: name=ansible_test state=restarted
register: restart_result
- name: assert that the service was restarted
assert:
that:
- "restart_result.state == 'started'"
- name: restart the ansible test service with a sleep
service: name=ansible_test state=restarted sleep=2
register: restart_sleep_result
# don't enable this check yet on systems with systemd because of https://github.com/ansible/ansible/issues/16694
when: service_type != "systemd"
- name: assert that the service was restarted with a sleep
assert:
that:
- "restart_sleep_result.state == 'started'"
when: service_type != "systemd"
- name: reload the ansible test service
service: name=ansible_test state=reloaded
register: reload_result
# don't do this on systems with systemd because it triggers error:
# Unable to reload service ansible_test: ansible_test.service is not active, cannot reload.
when: service_type != "systemd"
- name: assert that the service was reloaded
assert:
that:
- "reload_result.state == 'started'"
when: service_type != "systemd"
- name: stop the ansible test service
service: name=ansible_test state=stopped
register: stop_result
- name: assert that the service was stopped
assert:
that:
- "stop_result.state == 'stopped'"
- name: disable the ansible test service
service: name=ansible_test enabled=no
register: disable_result
- name: assert that the service was disabled
assert:
that:
- "disable_result.enabled == false"
- name: try to enable a broken service
service: name=ansible_broken_test enabled=yes
register: broken_enable_result
ignore_errors: True
- name: assert that the broken test failed
assert:
that:
- "broken_enable_result|failed"
- name: remove the test daemon script
file: path=/usr/sbin/ansible_test_service state=absent
register: remove_result
- name: assert that the test daemon script was removed
assert:
that:
- "remove_result.path == '/usr/sbin/ansible_test_service'"
- "remove_result.state == 'absent'"
# cleaning up changes made by this playbook
- include: 'sysv_cleanup.yml'
when: service_type == "sysv"
- include: 'systemd_cleanup.yml'
when: service_type == "systemd"
- include: 'upstart_cleanup.yml'
when: service_type == "upstart"

View file

@ -0,0 +1,26 @@
- name: remove the systemd unit file
file: path=/usr/lib/systemd/system/ansible_test.service state=absent
register: remove_systemd_result
- name: remove the systemd unit file
file: path=/usr/lib/systemd/system/ansible_test_broken.service state=absent
register: remove_systemd_broken_result
- debug: var=remove_systemd_broken_result
- name: assert that the systemd unit file was removed
assert:
that:
- "remove_systemd_result.path == '/usr/lib/systemd/system/ansible_test.service'"
- "remove_systemd_result.state == 'absent'"
- "remove_systemd_broken_result.path == '/usr/lib/systemd/system/ansible_test_broken.service'"
- "remove_systemd_broken_result.state == 'absent'"
- name: make sure systemd is reloaded
shell: systemctl daemon-reload
register: restart_systemd_result
- name: assert that systemd was reloaded
assert:
that:
- "restart_systemd_result.rc == 0"

View file

@ -0,0 +1,17 @@
- name: install the systemd unit file
copy: src=ansible.systemd dest=/etc/systemd/system/ansible_test.service
register: install_systemd_result
- name: install a broken systemd unit file
file: src=ansible_test.service path=/etc/systemd/system/ansible_test_broken.service state=link
register: install_broken_systemd_result
- name: assert that the systemd unit file was installed
assert:
that:
- "install_systemd_result.dest == '/etc/systemd/system/ansible_test.service'"
- "install_systemd_result.state == 'file'"
- "install_systemd_result.mode == '0644'"
- "install_systemd_result.checksum == '6b5f2b9318524a387c77c550cef4dd411a471acf'"
- "install_broken_systemd_result.dest == '/etc/systemd/system/ansible_test_broken.service'"
- "install_broken_systemd_result.state == 'link'"

View file

@ -0,0 +1,10 @@
- name: remove the sysV init file
file: path=/etc/init.d/ansible_test state=absent
register: remove_sysv_result
- name: assert that the sysV init file was removed
assert:
that:
- "remove_sysv_result.path == '/etc/init.d/ansible_test'"
- "remove_sysv_result.state == 'absent'"

View file

@ -0,0 +1,12 @@
- name: install the sysV init file
copy: src=ansible.sysv dest=/etc/init.d/ansible_test mode=0755
register: install_sysv_result
- name: assert that the sysV init file was installed
assert:
that:
- "install_sysv_result.dest == '/etc/init.d/ansible_test'"
- "install_sysv_result.state == 'file'"
- "install_sysv_result.mode == '0755'"
- "install_sysv_result.checksum == '174fa255735064b420600e4c8637ea0eff28d0c1'"

View file

@ -0,0 +1,15 @@
- name: remove the upstart init file
file: path=/etc/init/ansible_test.conf state=absent
register: remove_upstart_result
- name: remove the upstart init file
file: path=/etc/init/ansible_test_broken.conf state=absent
register: remove_upstart_broken_result
- name: assert that the upstart init file was removed
assert:
that:
- "remove_upstart_result.path == '/etc/init/ansible_test.conf'"
- "remove_upstart_result.state == 'absent'"
- "remove_upstart_broken_result.path == '/etc/init/ansible_test_broken.conf'"
- "remove_upstart_broken_result.state == 'absent'"

View file

@ -0,0 +1,19 @@
- name: install the upstart init file
copy: src=ansible.upstart dest=/etc/init/ansible_test.conf mode=0644
register: install_upstart_result
- name: install an upstart init file that will fail (manual in .conf)
copy: src=ansible-broken.upstart dest=/etc/init/ansible_broken_test.conf mode=0644
register: install_upstart_broken_result
- name: assert that the upstart init file was installed
assert:
that:
- "install_upstart_result.dest == '/etc/init/ansible_test.conf'"
- "install_upstart_result.state == 'file'"
- "install_upstart_result.mode == '0644'"
- "install_upstart_result.checksum == '5c314837b6c4dd6c68d1809653a2974e9078e02a'"
- "install_upstart_broken_result.dest == '/etc/init/ansible_broken_test.conf'"
- "install_upstart_broken_result.state == 'file'"
- "install_upstart_broken_result.mode == '0644'"
- "install_upstart_broken_result.checksum == 'e66497894f2b2bf71e1380a196cc26089cc24a10'"