summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/yum/tasks/check_mode_consistency.yml
blob: e2a99d95bd7c62499159ba28bfa8dd28bc294b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
- name: install htop in check mode to verify changes dict returned
  yum:
    name: htop
    state: present
  check_mode: yes
  register: yum_changes_check_mode_result

- name: install verify changes dict returned in check mode
  assert:
    that:
      - "yum_changes_check_mode_result is success"
      - "yum_changes_check_mode_result is changed"
      - "'changes' in yum_changes_check_mode_result"
      - "'installed' in yum_changes_check_mode_result['changes']"
      - "'htop' in yum_changes_check_mode_result['changes']['installed']"

- name: install htop to verify changes dict returned
  yum:
    name: htop
    state: present
  register: yum_changes_result

- name: install verify changes dict returned
  assert:
    that:
      - "yum_changes_result is success"
      - "yum_changes_result is changed"
      - "'changes' in yum_changes_result"
      - "'installed' in yum_changes_result['changes']"
      - "'htop' in yum_changes_result['changes']['installed']"

- name: remove htop in check mode to verify changes dict returned
  yum:
    name: htop
    state: absent
  check_mode: yes
  register: yum_changes_check_mode_result

- name: remove verify changes dict returned in check mode
  assert:
    that:
      - "yum_changes_check_mode_result is success"
      - "yum_changes_check_mode_result is changed"
      - "'changes' in yum_changes_check_mode_result"
      - "'removed' in yum_changes_check_mode_result['changes']"
      - "'htop' in yum_changes_check_mode_result['changes']['removed']"

- name: remove htop to verify changes dict returned
  yum:
    name: htop
    state: absent
  register: yum_changes_result

- name: remove verify changes dict returned
  assert:
    that:
      - "yum_changes_result is success"
      - "yum_changes_result is changed"
      - "'changes' in yum_changes_result"
      - "'removed' in yum_changes_result['changes']"
      - "'htop' in yum_changes_result['changes']['removed']"