ansible/test/integration/targets/ios_interface/tests/cli/net_interface.yaml
Nathaniel Case bf1580a333
ios_l2_interface (#35054)
* Fix sending 'None' to device on ios

* Add ios_l2_interface module & tests

* Skip l2 tests on non-l2 images

* Allow test to continue on non-L2 hosts
2018-01-19 17:14:32 -05:00

47 lines
1.3 KiB
YAML

---
- debug: msg="START ios cli/net_interface.yaml on connection={{ ansible_connection }}"
# Add minimal testcase to check args are passed correctly to
# implementation module and module run is successful.
- name: Configure interface (setup)
net_interface:
name: "{{ test_interface }}"
description: test-interface-1
speed: 1000
mtu: 1800
state: present
authorize: yes
register: result
- name: Configure interface using platform agnostic module
net_interface:
name: "{{ test_interface }}"
description: test-interface-initial
state: present
authorize: yes
register: result
- assert:
that:
- 'result.changed == true'
- '"interface {{ test_interface }}" in result.commands'
- '"description test-interface-initial" in result.commands'
- name: Confgure interface parameters using platform agnostic module
net_interface:
name: "{{ test_interface }}"
description: test-interface
mtu: 2000
state: present
authorize: yes
register: result
- assert:
that:
- 'result.changed == true'
- '"interface {{ test_interface }}" in result.commands'
- '"description test-interface" in result.commands'
- '"mtu 2000" in result.commands'
- debug: msg="START ios cli/net_interface.yaml on connection={{ ansible_connection }}"