blob: 17051239fac4b362bbf40a517e681db2cfd3496f (
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
|
- name: Warn user
win_msg:
display_seconds: 10
msg: Keep calm and carry on.
register: msg_result
- name: Test msg_result
assert:
that:
- msg_result is not failed
- msg_result is changed
- msg_result.runtime_seconds < 10
- name: Warn user and wait for it
win_msg:
display_seconds: 5
msg: Keep calm and carry on.
#to: '{{ ansible_user }}'
wait: yes
register: msg_wait_result
- name: Test msg_wait_result
assert:
that:
- msg_wait_result is not failed
- msg_wait_result is changed
- msg_wait_result.runtime_seconds > 5
- name: fail to send a message > 255 characters
win_msg:
msg: "1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456"
register: fail_too_long
failed_when: "fail_too_long.msg != 'msg length must be less than 256 characters, current length: 256'"
|