0f692f1fe7
* * refactor iosxr_user for cliconf and netconf (cherry picked from commit 5d0994ef598f1601fca00a0c1eff4ebb05ebbf1b) * * Purge and units test changes
47 lines
1.2 KiB
YAML
47 lines
1.2 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: 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 }}"
|