nxos: merge nxapi/cli tests - config, bgp_neighbor, command, bgp_af (#28235)

* refactor nxos_bgp_af

* refactor nxos_bgp_neighbor

* refactor nxos_command

* refactor nxos_config

* removed accidental file
This commit is contained in:
David Newswanger
2017-08-21 11:15:25 -04:00
committed by Trishna Guha
parent d4e7b045b7
commit 5df02dc288
27 changed files with 169 additions and 678 deletions

View File

@@ -0,0 +1,40 @@
---
- debug: msg="START {{ connection.transport }}/src_basic.yaml"
- name: setup
nxos_config:
commands:
- no description
- no shutdown
parents:
- interface Ethernet2/5
match: none
provider: "{{ connection }}"
- name: configure device with config
nxos_config:
src: basic/config.j2
defaults: yes
provider: "{{ connection }}"
register: result
- assert:
that:
- "result.changed == true"
# https://github.com/ansible/ansible-modules-core/issues/4807
- "result.updates is defined"
- name: check device with config
nxos_config:
src: basic/config.j2
defaults: yes
provider: "{{ connection }}"
register: result
- assert:
that:
- "result.changed == false"
# https://github.com/ansible/ansible-modules-core/issues/4807
- "result.updates is not defined"
- debug: msg="END {{ connection.transport }}/src_basic.yaml"