mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 03:53:59 -07:00
net_command platform agnostic module (#25249)
* net_command platform agnostic implementation Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Add net_command platform agnostic module Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Add integration test for net_command module Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * fix yaml issue
This commit is contained in:
parent
8cbed3c534
commit
e90f1d6449
14 changed files with 296 additions and 7 deletions
|
@ -1,7 +0,0 @@
|
|||
- hosts:
|
||||
- vyos
|
||||
- junos
|
||||
- ios
|
||||
gather_facts: false
|
||||
roles:
|
||||
- { role: net_command, tags: net_command }
|
|
@ -10,3 +10,4 @@
|
|||
roles:
|
||||
- { role: net_system, when: "limit_to in ['*', 'net_system']" }
|
||||
- { role: net_banner, when: "limit_to in ['*', 'net_banner']" }
|
||||
- { role: net_command, when: "limit_to in ['*', 'net_command']" }
|
||||
|
|
1
test/integration/targets/net_command/aliases
Normal file
1
test/integration/targets/net_command/aliases
Normal file
|
@ -0,0 +1 @@
|
|||
network/ci
|
2
test/integration/targets/net_command/defaults/main.yaml
Normal file
2
test/integration/targets/net_command/defaults/main.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
testcase: "*"
|
16
test/integration/targets/net_command/tasks/cli.yaml
Normal file
16
test/integration/targets/net_command/tasks/cli.yaml
Normal file
|
@ -0,0 +1,16 @@
|
|||
---
|
||||
- name: collect all cli test cases
|
||||
find:
|
||||
paths: "{{ role_path }}/tests/cli"
|
||||
patterns: "{{ testcase }}.yaml"
|
||||
register: test_cases
|
||||
delegate_to: localhost
|
||||
|
||||
- name: set test_items
|
||||
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||
|
||||
- name: run test case
|
||||
include: "{{ test_case_to_run }}"
|
||||
with_items: "{{ test_items }}"
|
||||
loop_control:
|
||||
loop_var: test_case_to_run
|
2
test/integration/targets/net_command/tasks/main.yaml
Normal file
2
test/integration/targets/net_command/tasks/main.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
- { include: cli.yaml, tags: ['cli'] }
|
19
test/integration/targets/net_command/tests/cli/contains.yaml
Normal file
19
test/integration/targets/net_command/tests/cli/contains.yaml
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
- debug: msg="START cli/contains.yaml"
|
||||
|
||||
- include: "{{ role_path }}/tests/ios/contains.yaml"
|
||||
when: hostvars[inventory_hostname]['ansible_network_os'] == 'ios'
|
||||
|
||||
- include: "{{ role_path }}/tests/iosxr/contains.yaml"
|
||||
when: hostvars[inventory_hostname]['ansible_network_os'] == 'iosxr'
|
||||
|
||||
- include: "{{ role_path }}/tests/nxos/contains.yaml"
|
||||
when: hostvars[inventory_hostname]['ansible_network_os'] == 'nxos'
|
||||
|
||||
- include: "{{ role_path }}/tests/eos/contains.yaml"
|
||||
when: hostvars[inventory_hostname]['ansible_network_os'] == 'eos'
|
||||
|
||||
- include: "{{ role_path }}/tests/vyos/contains.yaml"
|
||||
when: hostvars[inventory_hostname]['ansible_network_os'] == 'vyos'
|
||||
|
||||
- debug: msg="END cli/contains.yaml"
|
20
test/integration/targets/net_command/tests/eos/contains.yaml
Normal file
20
test/integration/targets/net_command/tests/eos/contains.yaml
Normal file
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
- debug: msg="START eos/contains.yaml"
|
||||
|
||||
- name: test contains operator
|
||||
net_command:
|
||||
commands:
|
||||
- show version
|
||||
- show interface Management1 | json
|
||||
wait_for:
|
||||
- "result[0] contains EOS"
|
||||
- "result[1].interfaces.Management1.name contains Manage"
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
- "result.stdout is defined"
|
||||
|
||||
- debug: msg="END eos/contains.yaml"
|
19
test/integration/targets/net_command/tests/ios/contains.yaml
Normal file
19
test/integration/targets/net_command/tests/ios/contains.yaml
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
- debug: msg="START ios/contains.yaml"
|
||||
|
||||
- name: test contains operator
|
||||
net_command:
|
||||
commands:
|
||||
- show version
|
||||
- show interface loopback 888
|
||||
wait_for:
|
||||
- "result[0] contains Cisco"
|
||||
- "result[1] contains Loopback888"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
- "result.stdout is defined"
|
||||
|
||||
- debug: msg="END ios/contains.yaml"
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
- debug: msg="START iosxr/contains.yaml"
|
||||
|
||||
- name: test contains operator
|
||||
net_command:
|
||||
commands:
|
||||
- show version
|
||||
- show interfaces Loopback 888
|
||||
wait_for:
|
||||
- "result[0] contains 'Cisco IOS XR Software'"
|
||||
- "result[1] contains 'Hardware is Loopback interface'"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
- "result.stdout is defined"
|
||||
|
||||
- debug: msg="END iosxr/contains.yaml"
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
- debug: msg="START nxos/contains.yaml"
|
||||
|
||||
- name: test contains operator
|
||||
net_command:
|
||||
commands:
|
||||
- show version
|
||||
- show interface mgmt0 | json
|
||||
wait_for:
|
||||
- "result[0] contains NX-OS"
|
||||
- "result[1].TABLE_interface.ROW_interface.interface contains mgmt"
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- debug: msg="END nxos/contains.yaml"
|
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
- debug: msg="START vyos/contains.yaml"
|
||||
|
||||
- name: test contains operator
|
||||
net_command:
|
||||
commands:
|
||||
- show version
|
||||
- show interface
|
||||
wait_for:
|
||||
- result[0] contains VyOS
|
||||
- result[1] contains eth0
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- result.changed == false
|
||||
- result.stdout is defined
|
||||
- result.stdout_lines is defined
|
||||
|
||||
- debug: msg="END vyos/contains.yaml"
|
Loading…
Add table
Add a link
Reference in a new issue