ansible/test/integration/targets/nxos_config/tests/nxapi/toplevel_after.yaml
Trishna Guha 7d982f9225 nxos_command and nxos_config fix (#29940)
* fix nxos_command nxapi test output

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
(cherry picked from commit 9dee5c65ce88912b1bd28e75d85dd7331420f823)

* nxos_config CI fix

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
(cherry picked from commit 8810a7e58457b35fe269101075986d57030342f4)
2017-09-11 22:24:15 -07:00

44 lines
964 B
YAML

---
- debug: msg="START nxapi/toplevel_after.yaml"
- name: setup
nxos_config:
lines:
- "snmp-server contact ansible"
- "hostname switch"
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 switch"
provider: "{{ nxapi }}"
match: none
- debug: msg="END nxapi/toplevel_after.yaml"