ansible/test/integration/targets/iosxr_interface/tests/netconf/net_interface.yaml
Ganesh Nalawade c53dcd1982
Cleanup net integration test case for network modules (#34684)
*  Remove platform agnostic net_* test cases.
*  Add minimal platform agnostic test cases to individual
   platform-specific test cases
2018-01-10 21:28:49 +05:30

54 lines
1.4 KiB
YAML

---
- debug: msg="START iosxr netconf/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: Enable Netconf service
iosxr_netconf:
netconf_port: 830
netconf_vrf: 'default'
state: present
register: result
- name: Setup interface
net_interface:
name: GigabitEthernet0/0/0/1
state: absent
provider: "{{ netconf }}"
register: result
- name: Confgure interface using platform agnostic module
net_interface:
name: GigabitEthernet0/0/0/1
description: test-interface-initial
state: present
provider: "{{ netconf }}"
register: result
- assert:
that:
- 'result.changed == true'
- '"GigabitEthernet0/0/0/1" in result.xml[0]'
- name: Confgure interface parameters using platform agnostic module
net_interface:
name: GigabitEthernet0/0/0/1
description: test-interface
speed: 100
duplex: half
mtu: 512
state: present
provider: "{{ netconf }}"
register: result
- assert:
that:
- 'result.changed == true'
- '"GigabitEthernet0/0/0/1" in result.xml[0]'
- '"test-interface" in result.xml[0]'
- '"100" in result.xml[0]'
- '"512" in result.xml[0]'
- debug: msg="END iosxr netconf/net_interface.yaml on connection={{ ansible_connection }}"