summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/pause/test-pause.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/pause/test-pause.yml')
-rw-r--r--test/integration/targets/pause/test-pause.yml51
1 files changed, 51 insertions, 0 deletions
diff --git a/test/integration/targets/pause/test-pause.yml b/test/integration/targets/pause/test-pause.yml
new file mode 100644
index 00000000..6fefbaa1
--- /dev/null
+++ b/test/integration/targets/pause/test-pause.yml
@@ -0,0 +1,51 @@
+- 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
+ - "'non-integer' 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"
+
+ - pause:
+ seconds: 0.1
+ register: results
+
+ - assert:
+ that:
+ - results.stdout is search('Paused for \d+\.\d+ seconds')
+
+ - pause:
+ seconds: 1
+ register: results
+
+ - assert:
+ that:
+ - results.stdout is search('Paused for \d+\.\d+ seconds')
+
+ - pause:
+ minutes: 1
+ register: results
+
+ - assert:
+ that:
+ - results.stdout is search('Paused for \d+\.\d+ minutes')