mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
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
This commit is contained in:
parent
2df6735dcf
commit
c53dcd1982
181 changed files with 1630 additions and 6246 deletions
41
test/integration/targets/eos_vlan/tests/cli/net_vlan.yaml
Normal file
41
test/integration/targets/eos_vlan/tests/cli/net_vlan.yaml
Normal file
|
@ -0,0 +1,41 @@
|
|||
---
|
||||
- debug: msg="START eos cli/net_vlan.yaml on connection={{ ansible_connection }}"
|
||||
|
||||
# Add minimal testcase to check args are passed correctly to
|
||||
# implementation module and module run is successful.
|
||||
|
||||
- name: setup - remove vlans used in test
|
||||
eos_config:
|
||||
lines:
|
||||
- no vlan 4000
|
||||
authorize: yes
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
|
||||
- name: Create vlan using platform agnostic vlan module
|
||||
net_vlan:
|
||||
vlan_id: 4000
|
||||
name: vlan-4000
|
||||
state: present
|
||||
authorize: yes
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'vlan 4000' in result.commands"
|
||||
- "'name vlan-4000' in result.commands"
|
||||
# Ensure sessions contains epoc. Will fail after 18th May 2033
|
||||
- "'ansible_1' in result.session_name"
|
||||
|
||||
- name: setup - remove vlans used in test
|
||||
eos_config:
|
||||
lines:
|
||||
- no vlan 4000
|
||||
authorize: yes
|
||||
provider: "{{ cli }}"
|
||||
become: yes
|
||||
|
||||
- debug: msg="END eos cli/net_vlan.yaml on connection={{ ansible_connection }}"
|
Loading…
Add table
Add a link
Reference in a new issue