summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos6_config/tests/cli/sublevel_strict.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/dellos6_config/tests/cli/sublevel_strict.yaml')
-rw-r--r--test/integration/targets/dellos6_config/tests/cli/sublevel_strict.yaml63
1 files changed, 0 insertions, 63 deletions
diff --git a/test/integration/targets/dellos6_config/tests/cli/sublevel_strict.yaml b/test/integration/targets/dellos6_config/tests/cli/sublevel_strict.yaml
deleted file mode 100644
index b858a6085a..0000000000
--- a/test/integration/targets/dellos6_config/tests/cli/sublevel_strict.yaml
+++ /dev/null
@@ -1,63 +0,0 @@
----
-- debug: msg="START cli/sublevel_strict.yaml"
-
-- name: setup
- dellos6_config:
- lines:
- - permit ip 192.0.2.1 0.0.0.0 any log
- - permit ip 192.0.2.2 0.0.0.0 any log
- - permit ip 192.0.2.3 0.0.0.0 any log
- - permit ip 192.0.2.4 0.0.0.0 any log
- - permit ip 192.0.2.5 0.0.0.0 any log
- parents: ['ip access-list test']
- before: ['no ip access-list test']
- after: ['exit']
- provider: "{{ cli }}"
- match: none
-
-- name: configure sub level command using strict match
- dellos6_config:
- lines:
- - 1000 permit ip 192.0.2.1 0.0.0.0 any log
- - 1010 permit ip 192.0.2.2 0.0.0.0 any log
- - 1020 permit ip 192.0.2.3 0.0.0.0 any log
- - 1030 permit ip 192.0.2.4 0.0.0.0 any log
- parents: ['ip access-list test']
- match: strict
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == false"
-
-- name: check sub level command using strict match
- dellos6_config:
- lines:
- - 1000 permit ip 192.0.2.1 0.0.0.0 any log
- - 1010 permit ip 192.0.2.3 0.0.0.0 any log
- - 1020 permit ip 192.0.2.2 0.0.0.0 any log
- parents: ['ip access-list test']
- after: ['exit']
- match: strict
- provider: "{{ cli }}"
- register: result
-
-- assert:
- that:
- - "result.changed == true"
- - "'ip access-list test' in result.updates"
- - "'1000 permit ip 192.0.2.1 0.0.0.0 any log' not in result.updates"
- - "'1020 permit ip 192.0.2.2 0.0.0.0 any log' in result.updates"
- - "'1010 permit ip 192.0.2.3 0.0.0.0 any log' in result.updates"
- - "'1030 permit ip 192.0.2.4 0.0.0.0 any log' not in result.updates"
- - "'1040 permit ip 192.0.2.5 0.0.0.0 any log' not in result.updates"
-
-- name: teardown
- dellos6_config:
- lines:
- - no ip access-list test
- provider: "{{ cli }}"
- match: none
-
-- debug: msg="END cli/sublevel_strict.yaml"