ansible/test/integration/targets/nxos_igmp/tasks/cli.yaml

34 lines
942 B
YAML
Raw Normal View History

2017-08-14 17:58:09 +02:00
---
- name: collect common cli test cases
2017-08-14 17:58:09 +02:00
find:
paths: "{{ role_path }}/tests/common"
2017-08-14 17:58:09 +02:00
patterns: "{{ testcase }}.yaml"
connection: local
2017-08-14 17:58:09 +02:00
register: test_cases
- name: collect cli test cases
find:
paths: "{{ role_path }}/tests/cli"
patterns: "{{ testcase }}.yaml"
connection: local
register: cli_cases
- set_fact:
test_cases:
files: "{{ test_cases.files }} + {{ cli_cases.files }}"
2017-08-14 17:58:09 +02:00
- 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 }} ansible_connection=network_cli connection={}"
2017-08-14 17:58:09 +02:00
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 connection={{ cli }}"
with_first_found: "{{ test_items }}"
loop_control:
loop_var: test_case_to_run