blob: 7462e7541422caba4c0fcdd64a84e9f2e58095b8 [file] [log] [blame]
---
# test-examplservice/tasks/main.yml
#
# Run tests to check that the single-node deployment has worked
- name: Onboard ExampleService and instantiate a VM
make:
chdir: "{{ service_profile_repo_dest }}/{{ xos_configuration }}"
target: exampleservice
- name: Re-run 'make vtn' (work around bug in synchronizer)
make:
chdir: "{{ service_profile_repo_dest }}/{{ xos_configuration }}"
target: vtn
- name: Wait for ExampleService VM to come up
shell: bash -c "source ~/admin-openrc.sh; nova list --all-tenants|grep 'exampleservice.*ACTIVE' > /dev/null"
register: result
until: result | success
retries: 10
delay: 60
tags:
- skip_ansible_lint # running a sub job
- name: Get ID of VM
shell: bash -c "source ~/admin-openrc.sh; nova list --all-tenants|grep mysite_exampleservice|cut -d '|' -f 2"
register: nova_id
tags:
- skip_ansible_lint # running a sub job
- name: Get mgmt IP of VM
shell: bash -c "source ~/admin-openrc.sh; nova interface-list {{ nova_id.stdout }}|grep -o -m 1 '172\.27\.[[:digit:]]*\.[[:digit:]]*'"
register: mgmt_ip
tags:
- skip_ansible_lint # running a sub job
- name: Get public IP of VM
shell: bash -c "source ~/admin-openrc.sh; nova interface-list {{ nova_id.stdout }}|grep -o -m 1 '10\.6\.[[:digit:]]*\.[[:digit:]]*'"
register: public_ip
tags:
- skip_ansible_lint # running a sub job
- name: Get name of compute node
shell: bash -c "source ~/admin-openrc.sh; nova service-list|grep nova-compute|cut -d '|' -f 3"
register: node_name
tags:
- skip_ansible_lint # running a sub job
- name: Wait for Apache to come up inside VM
shell: ssh -o ProxyCommand="ssh -W %h:%p -l ubuntu {{ node_name.stdout }}" ubuntu@{{ mgmt_ip.stdout }} "ls /var/run/apache2/apache2.pid" > /dev/null
register: result
until: result | success
retries: 20
delay: 60
tags:
- skip_ansible_lint # running a sub job
- name: start container
become: yes
lxd_container:
name: testclient
state: started
- name: Make sure testclient has default route to vSG
become: yes
shell: lxc exec testclient -- route | grep default | grep "eth0.222.111"
register: result
until: result | success
retries: 3
delay: 10
tags:
- skip_ansible_lint # running a sub job
- name: Download the curl package through the vSG
become: yes
command: lxc exec testclient -- apt-get install -y curl
tags:
- skip_ansible_lint # running a sub job
# Don't use lxc_container in order to get output
- name: Test connectivity to ExampleService from test client
become: yes
command: lxc exec testclient -- curl -s http://{{ public_ip.stdout }}
register: curltest
tags:
- skip_ansible_lint # running a sub job
- name: Output from curl test
debug: var=curltest.stdout_lines