summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_config/tests/nxapi/toplevel_after.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_config/tests/nxapi/toplevel_after.yaml')
-rw-r--r--test/integration/targets/nxos_config/tests/nxapi/toplevel_after.yaml44
1 files changed, 44 insertions, 0 deletions
diff --git a/test/integration/targets/nxos_config/tests/nxapi/toplevel_after.yaml b/test/integration/targets/nxos_config/tests/nxapi/toplevel_after.yaml
new file mode 100644
index 0000000000..05b251edc1
--- /dev/null
+++ b/test/integration/targets/nxos_config/tests/nxapi/toplevel_after.yaml
@@ -0,0 +1,44 @@
+---
+- debug: msg="START nxapi/toplevel_after.yaml"
+
+- name: setup
+ nxos_config:
+ lines:
+ - "snmp-server contact ansible"
+ - "hostname {{ inventory_hostname }}"
+ provider: "{{ nxapi }}"
+ match: none
+
+- name: configure top level command with before
+ nxos_config:
+ lines: hostname foo
+ after: snmp-server contact bar
+ provider: "{{ nxapi }}"
+ register: result
+
+- assert:
+ that:
+ - "result.changed == true"
+ - "'hostname foo' in result.updates"
+ - "'snmp-server contact bar' in result.updates"
+
+- name: configure top level command with before idempotent check
+ nxos_config:
+ lines: hostname foo
+ after: snmp-server contact foo
+ provider: "{{ nxapi }}"
+ register: result
+
+- assert:
+ that:
+ - "result.changed == false"
+
+- name: teardown
+ nxos_config:
+ lines:
+ - "no snmp-server contact ansible"
+ - "hostname {{ inventory_hostname }}"
+ provider: "{{ nxapi }}"
+ match: none
+
+- debug: msg="END nxapi/toplevel_after.yaml"