c2f7f36fc5
* Leverage action plugin to pass credentials to nxos_file_copy for network_cli, httpapi Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * update integration test Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * make sure local test uses provider Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * update tests Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * update doc Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * clarify action plugin comment Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Add connection=local back to nxos_file_copy because that module is weird Also blacklist it running on nxapi, because that is meaningless * remove provider Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * blacklist nxapi Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Address review comment Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
33 lines
898 B
YAML
33 lines
898 B
YAML
---
|
|
- name: collect common test cases
|
|
find:
|
|
paths: "{{ role_path }}/tests/common"
|
|
patterns: "{{ testcase }}.yaml"
|
|
connection: local
|
|
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 }}"
|
|
|
|
- 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"
|
|
with_items: "{{ test_items }}"
|
|
loop_control:
|
|
loop_var: test_case_to_run
|
|
|
|
- name: run test cases (connection=local)
|
|
include: "{{ test_case_to_run }} ansible_connection=local"
|
|
with_items: "{{ test_items }}"
|
|
loop_control:
|
|
loop_var: test_case_to_run
|