summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/hostname/tasks/test_check_mode.yml
blob: 9ba1d65c7208431a5df80514797aa646bcc20d5f (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
- name: Run hostname module in check_mode
  hostname:
    name: crocodile.ansible.test.doesthiswork.net.example.com
  check_mode: true
  register: hn1

- name: Get current hostname again
  command: hostname
  register: after_hn

- name: Ensure hostname changed properly
  assert:
    that:
      - hn1 is changed
      - original.stdout == after_hn.stdout

- when: _hostname_file is defined and _hostname_file
  block:
    - name: See if current hostname file exists
      stat:
        path: "{{ _hostname_file }}"
      register: hn_stat

    - name: Move the current hostname file if it exists
      command: mv {{ _hostname_file }} {{ _hostname_file }}.orig
      when: hn_stat.stat.exists

    - name: Run hostname module in check_mode
      hostname:
        name: crocodile.ansible.test.doesthiswork.net.example.com
      check_mode: true
      register: hn

    - stat:
        path: /etc/rc.conf.d/hostname
      register: hn_stat_checkmode

    - assert:
        that:
          # TODO: This is a legitimate bug and will be fixed in another PR.
          # - not hn_stat_checkmode.stat.exists
          - hn is changed

    - name: Get hostname again
      command: hostname
      register: current_after_cm

    - assert:
        that:
          - original.stdout == current_after_cm.stdout