summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos10_config/tests/cli/sublevel.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/dellos10_config/tests/cli/sublevel.yaml')
-rw-r--r--test/integration/targets/dellos10_config/tests/cli/sublevel.yaml42
1 files changed, 42 insertions, 0 deletions
diff --git a/test/integration/targets/dellos10_config/tests/cli/sublevel.yaml b/test/integration/targets/dellos10_config/tests/cli/sublevel.yaml
new file mode 100644
index 0000000000..b465108d61
--- /dev/null
+++ b/test/integration/targets/dellos10_config/tests/cli/sublevel.yaml
@@ -0,0 +1,42 @@
+---
+- debug: msg="START cli/sublevel.yaml"
+
+- name: setup test
+ dellos10_config:
+ lines:
+ - 'no ip access-list test'
+ provider: "{{ cli }}"
+ match: none
+
+- name: configure sub level command
+ dellos10_config:
+ lines: ['seq 5 permit ip any any count byte']
+ parents: ['ip access-list test']
+ provider: "{{ cli }}"
+ register: result
+
+- assert:
+ that:
+ - "result.changed == true"
+ - "'ip access-list test' in result.updates"
+ - "'seq 5 permit ip any any count byte' in result.updates"
+
+- name: configure sub level command idempotent check
+ dellos10_config:
+ lines: ['seq 5 permit ip any any count byte']
+ parents: ['ip access-list test']
+ provider: "{{ cli }}"
+ register: result
+
+- assert:
+ that:
+ - "result.changed == false"
+
+- name: teardown
+ dellos10_config:
+ lines:
+ - 'no ip access-list test'
+ provider: "{{ cli }}"
+ match: none
+
+- debug: msg="END cli/sublevel.yaml"