Make nuage_vspk test more reliable

- don't background the nuage-vsd-sim
- increase the asncy timeout
- use uri to actually query the simulator API to make sure it is ready for connections
This commit is contained in:
Sam Doran 2019-06-26 16:58:19 -04:00 committed by Matt Clay
parent cc7556fb7f
commit 911a2ec6d3
2 changed files with 21 additions and 8 deletions

View file

@ -1,9 +1,19 @@
---
- block:
- name: run test case
include: "{{ test_case_to_run }}"
with_fileglob: "{{ role_path }}/tests/{{ testcase }}.yaml"
with_fileglob: tests/{{ testcase }}.yaml
loop_control:
loop_var: test_case_to_run
always:
- name: Get nuage-vsd-sim pid
shell: ps -A | grep '[n]'uage-vsd-sim | cut -d ' ' -f 1
register: vsim_pid
changed_when: no
ignore_errors: yes
- name: Stop-nuage-vsd-sim
command: kill {{ vsim_pid.stdout }}
changed_when: no
ignore_errors: yes
when: "ansible_python_version is version('2.7', '>=')"

View file

@ -1,16 +1,19 @@
---
- block:
- name: Install Nuage VSD API Simulator
pip:
name: nuage-vsd-sim
- name: Start Nuage VSD API Simulator
shell: "(cd /; nuage-vsd-sim >/dev/null 2>&1 &)"
async: 10
shell: "(cd /; nuage-vsd-sim >/dev/null 2>&1)"
async: 1800
poll: 0
- name: Wait for API to be ready
wait_for:
port: 5000
uri:
url: http://localhost:5000
register: api
delay: 3
retries: 10
until: api.status == 200
when: "ansible_python_version is version('2.7', '>=')"