ios_l2_interface (#35054)

* Fix sending 'None' to device on ios

* Add ios_l2_interface module & tests

* Skip l2 tests on non-l2 images

* Allow test to continue on non-L2 hosts
This commit is contained in:
Nathaniel Case
2018-01-19 17:14:32 -05:00
committed by GitHub
parent 4d58d16793
commit bf1580a333
13 changed files with 768 additions and 116 deletions

View File

@@ -0,0 +1,24 @@
---
- 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 cases (connection=network_cli)
include: "{{ test_case_to_run }}"
with_items: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run
- name: run test case (connection=local)
include: "{{ test_case_to_run }} ansible_connection=local"
with_first_found:
- files: "{{ test_items|default([]) }}"
skip: true
loop_control:
loop_var: test_case_to_run

View File

@@ -0,0 +1,4 @@
---
- block:
- { include: cli.yaml, tags: ['cli'] }
when: 'switch_type == "L2"'