mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
c53dcd1982
* Remove platform agnostic net_* test cases. * Add minimal platform agnostic test cases to individual platform-specific test cases
54 lines
No EOL
1.5 KiB
YAML
54 lines
No EOL
1.5 KiB
YAML
---
|
|
- debug: msg="START iosxr 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: Setup interface
|
|
net_interface:
|
|
name: GigabitEthernet0/0/0/2
|
|
state: absent
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
|
|
- name: Confgure interface using platform agnostic module
|
|
net_interface:
|
|
name: GigabitEthernet0/0/0/2
|
|
description: test-interface-initial
|
|
state: present
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"interface GigabitEthernet0/0/0/2 description test-interface-initial" in result.commands'
|
|
|
|
- name: Confgure interface parameters using platform agnostic module
|
|
net_interface:
|
|
name: GigabitEthernet0/0/0/2
|
|
description: test-interface
|
|
speed: 100
|
|
duplex: half
|
|
mtu: 512
|
|
state: present
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"interface GigabitEthernet0/0/0/2 description test-interface" in result.commands'
|
|
- '"interface GigabitEthernet0/0/0/2 speed 100" in result.commands'
|
|
- '"interface GigabitEthernet0/0/0/2 duplex half" in result.commands'
|
|
- '"interface GigabitEthernet0/0/0/2 mtu 512" in result.commands'
|
|
|
|
- name: Teardown interface
|
|
net_interface:
|
|
name: GigabitEthernet0/0/0/2
|
|
state: absent
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- debug: msg="END iosxr cli/net_interface.yaml on connection={{ ansible_connection }}" |