1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/integration/targets/launchd/tasks/tests/test_restart.yml
Felix Fontein 22a400d626
Add default license header to files which have no copyright or license header yet (#5074) (#5075)
* Add default license header to files which have no copyright or license header yet.

* yml extension should have been xml...

(cherry picked from commit 1ab2a5f1bc)
2022-08-05 20:16:36 +02:00

46 lines
1.6 KiB
YAML

---
# Copyright (c) Ansible Project
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
# -----------------------------------------------------------
- name: "[{{ item }}] Given a started service..."
launchd:
name: "{{ launchd_service_name }}"
state: started
become: yes
register: "test_1_launchd_start_result"
- name: "[{{ item }}] When restarting the service in check mode"
launchd:
name: "{{ launchd_service_name }}"
state: restarted
become: yes
register: "test_1_launchd_restart_result_check_mode"
check_mode: yes
- name: "[{{ item }}] Validate that service was restarted in check mode"
assert:
that:
- test_1_launchd_restart_result_check_mode is success
- test_1_launchd_restart_result_check_mode is changed
- name: "[{{ item }}] When restarting the service..."
launchd:
name: "{{ launchd_service_name }}"
state: restarted
become: yes
register: "test_1_launchd_restart_result"
- name: "[{{ item }}] Validate that service was restarted"
assert:
that:
- test_1_launchd_restart_result is success
- test_1_launchd_restart_result is changed
- test_1_launchd_restart_result.status.previous_pid == test_1_launchd_start_result.status.current_pid
- test_1_launchd_restart_result.status.previous_state == test_1_launchd_start_result.status.current_state
- test_1_launchd_restart_result.status.current_state == 'started'
- test_1_launchd_restart_result.status.current_pid != '-'
- test_1_launchd_restart_result.status.status_code == '0'