Fix nuage_vspk integration test:
- Wait for API to be ready. - Enumerate test cases on controller.
This commit is contained in:
parent
8a2b99d1ee
commit
29de0619e8
3 changed files with 6 additions and 12 deletions
|
@ -1,6 +1,5 @@
|
|||
---
|
||||
testcase: "*"
|
||||
test_items: []
|
||||
nuage_auth:
|
||||
api_username: csproot
|
||||
api_password: csproot
|
||||
|
|
|
@ -1,19 +1,9 @@
|
|||
---
|
||||
|
||||
- block:
|
||||
- name: collect all test cases
|
||||
find:
|
||||
paths: "{{ role_path }}/tests"
|
||||
patterns: "{{ testcase }}.yaml"
|
||||
delegate_to: localhost
|
||||
register: test_cases
|
||||
|
||||
- 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 }}"
|
||||
with_fileglob: "{{ role_path }}/tests/{{ testcase }}.yaml"
|
||||
loop_control:
|
||||
loop_var: test_case_to_run
|
||||
when: "ansible_python_version is version('2.7', '>=')"
|
||||
|
|
|
@ -8,4 +8,9 @@
|
|||
shell: "(cd /; nuage-vsd-sim >/dev/null 2>&1 &)"
|
||||
async: 10
|
||||
poll: 0
|
||||
|
||||
- name: Wait for API to be ready
|
||||
wait_for:
|
||||
port: 5000
|
||||
|
||||
when: "ansible_python_version is version('2.7', '>=')"
|
||||
|
|
Loading…
Reference in a new issue