ansible/test/integration/targets/eos_interface/tests/cli/net_interface.yaml
Nathaniel Case 20f93816d6
Fix eapi tests to use become (#40838)
* Return the expected prompt character based on become status

* Update eos_banner tests for eapi

* Update eos_config tests for eapi

* Update eos_facts tests for eapi

* Update eos_interface tests for eapi

* Update eos_l3_interface tests for eapi

* Update eos_lldp tests for eapi

* Update eos_logging tests for eapi

* Update eos_smoke tests for eapi

* Update eos_system tests for eapi
2018-05-29 14:18:03 -04:00

50 lines
1.3 KiB
YAML

---
- debug: msg="START eos 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: Set test interface
set_fact:
test_interface_1: ethernet1
- name: Configure interface (setup)
net_interface:
name: "{{ test_interface_1 }}"
description: test-interface-1
mtu: 1800
state: present
become: yes
register: result
- name: Configure interface description using platform agnostic module
net_interface:
name: "{{ test_interface_1 }}"
description: test-interface-initial
state: present
become: yes
register: result
- assert:
that:
- 'result.changed == true'
- '"interface {{ test_interface_1 }}" in result.commands'
- '"description test-interface-initial" in result.commands'
- name: Confgure interface parameters
net_interface:
name: "{{ test_interface_1 }}"
description: test-interface
mtu: 2000
state: present
become: yes
register: result
- assert:
that:
- 'result.changed == true'
- '"interface {{ test_interface_1 }}" in result.commands'
- '"description test-interface" in result.commands'
- '"mtu 2000" in result.commands'
- debug: msg="END eos cli/net_interface.yaml on connection={{ ansible_connection }}"