summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_banner/tests/cli/basic-post-login.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/vyos_banner/tests/cli/basic-post-login.yaml')
-rw-r--r--test/integration/targets/vyos_banner/tests/cli/basic-post-login.yaml47
1 files changed, 0 insertions, 47 deletions
diff --git a/test/integration/targets/vyos_banner/tests/cli/basic-post-login.yaml b/test/integration/targets/vyos_banner/tests/cli/basic-post-login.yaml
deleted file mode 100644
index bda84a8c8b..0000000000
--- a/test/integration/targets/vyos_banner/tests/cli/basic-post-login.yaml
+++ /dev/null
@@ -1,47 +0,0 @@
----
-- debug:
- msg: "cli/basic-post-login.yaml on connection={{ ansible_connection }}"
-
-- name: setup - remove post-login
- vyos_banner:
- banner: post-login
- state: absent
-
-- name: Set post-login
- vyos_banner:
- banner: post-login
- text: |
- this is my post-login banner
- that has a multiline
- string
- state: present
- register: result
-
-- debug:
- msg: "{{ result }}"
-
-- assert:
- that:
- - "result.changed == true"
- - "'this is my post-login banner' in result.commands[0]"
- - "'that has a multiline' in result.commands[0]"
-
-- name: Set post-login again (idempotent)
- vyos_banner:
- banner: post-login
- text: |
- this is my post-login banner
- that has a multiline
- string
- state: present
- register: result
-
-- assert:
- that:
- - "result.changed == false"
- - "result.commands | length == 0"
-
-
-# FIXME add in tests for everything defined in docs
-# FIXME Test state:absent + test:
-# FIXME Without powers ensure "privileged mode required"