summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/pause/test-pause.yml
blob: 1c8045b3e5227bbf71f5a939a43a91c7fd2f7a99 (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
62
63
64
65
66
67
68
69
70
71
72
- name: Test pause
  hosts: localhost
  gather_facts: no
  become: no

  tasks:
    - name: non-integer for duraction (EXPECTED FAILURE)
      pause:
        seconds: hello
      register: result
      ignore_errors: yes

    - assert:
        that:
          - result is failed
          - "'unable to convert to int' in result.msg"

    - name: non-boolean for echo (EXPECTED FAILURE)
      pause:
        echo: hello
      register: result
      ignore_errors: yes

    - assert:
        that:
          - result is failed
          - "'not a valid boolean' in result.msg"

    - name: Less than 1
      pause:
        seconds: 0.1
      register: results

    - assert:
        that:
          - results.stdout is search('Paused for \d+\.\d+ seconds')

    - name: 1 second
      pause:
        seconds: 1
      register: results

    - assert:
        that:
          - results.stdout is search('Paused for \d+\.\d+ seconds')

    - name: 1 minute
      pause:
        minutes: 1
      register: results

    - assert:
        that:
          - results.stdout is search('Paused for \d+\.\d+ minutes')

    - name: minutes and seconds
      pause:
        minutes: 1
        seconds: 1
      register: exclusive
      ignore_errors: yes

    - name: invalid arg
      pause:
        foo: bar
      register: invalid
      ignore_errors: yes

    - assert:
        that:
          - '"parameters are mutually exclusive: minutes|seconds" in exclusive.msg'
          - '"Unsupported parameters for (pause) module: foo." in invalid.msg'