blob: 5d6a6bccc7ac9e42a464e9ad9b622b28e3482c1b [file] [log] [blame]
Andy Bavier8a7b8b62016-07-26 18:35:06 -04001---
2# test-examplservice/tasks/main.yml
3#
4# Run tests to check that the single-node deployment has worked
5
6- name: Onboard ExampleService and instantiate a VM
7 command: ansible xos-1 -u ubuntu -m shell \
8 -a "cd ~/service-profile/cord-pod; make exampleservice"
Zack Williams35624562016-08-28 17:12:26 -07009 tags:
10 - skip_ansible_lint # running a sub job
Andy Bavier8a7b8b62016-07-26 18:35:06 -040011
12- name: Pause 60 seconds (work around bug in synchronizer)
13 pause: seconds=60
14
15- name: Re-run 'make vtn' (work around bug in synchronizer)
16 command: ansible xos-1 -u ubuntu -m shell \
17 -a "cd ~/service-profile/cord-pod; make vtn"
Zack Williams35624562016-08-28 17:12:26 -070018 tags:
19 - skip_ansible_lint # running a sub job
Andy Bavier8a7b8b62016-07-26 18:35:06 -040020
21- name: Wait for ExampleService VM to come up
22 shell: bash -c "source ~/admin-openrc.sh; nova list --all-tenants|grep 'exampleservice.*ACTIVE' > /dev/null"
23 register: result
24 until: result | success
25 retries: 10
26 delay: 60
Zack Williams35624562016-08-28 17:12:26 -070027 tags:
28 - skip_ansible_lint # running a sub job
Andy Bavier8a7b8b62016-07-26 18:35:06 -040029
30- name: Get ID of VM
31 shell: bash -c "source ~/admin-openrc.sh; nova list --all-tenants|grep mysite_exampleservice|cut -d '|' -f 2"
32 register: nova_id
Zack Williams35624562016-08-28 17:12:26 -070033 tags:
34 - skip_ansible_lint # running a sub job
Andy Bavier8a7b8b62016-07-26 18:35:06 -040035
36- name: Get mgmt IP of VM
37 shell: bash -c "source ~/admin-openrc.sh; nova interface-list {{ nova_id.stdout }}|grep -o -m 1 172.27.[[:digit:]]*.[[:digit:]]*"
38 register: mgmt_ip
Zack Williams35624562016-08-28 17:12:26 -070039 tags:
40 - skip_ansible_lint # running a sub job
Andy Bavier8a7b8b62016-07-26 18:35:06 -040041
42- name: Get public IP of VM
Andy Bavierb83beac2016-10-20 15:54:08 -040043 shell: bash -c "source ~/admin-openrc.sh; nova interface-list {{ nova_id.stdout }}|grep -o -m 1 10.6.[[:digit:]]*.[[:digit:]]*"
Andy Bavier8a7b8b62016-07-26 18:35:06 -040044 register: public_ip
Zack Williams35624562016-08-28 17:12:26 -070045 tags:
46 - skip_ansible_lint # running a sub job
Andy Bavier8a7b8b62016-07-26 18:35:06 -040047
Andy Bavier30d27c92016-09-15 15:59:17 -040048- name: Get name of compute node
49 shell: bash -c "source ~/admin-openrc.sh; nova service-list|grep nova-compute|cut -d '|' -f 3"
50 register: node_name
51 tags:
52 - skip_ansible_lint # running a sub job
53
Andy Bavier8a7b8b62016-07-26 18:35:06 -040054- name: Wait for Apache to come up inside VM
Andy Bavier30d27c92016-09-15 15:59:17 -040055 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
Andy Bavier8a7b8b62016-07-26 18:35:06 -040056 register: result
57 until: result | success
58 retries: 20
59 delay: 60
Zack Williams35624562016-08-28 17:12:26 -070060 tags:
61 - skip_ansible_lint # running a sub job
Andy Bavier8a7b8b62016-07-26 18:35:06 -040062
Andy Bavierbef56282016-11-14 08:22:43 -080063- name: start container
Andy Bavierb83beac2016-10-20 15:54:08 -040064 become: yes
Andy Bavierbef56282016-11-14 08:22:43 -080065 lxd_container:
Andy Bavierb83beac2016-10-20 15:54:08 -040066 name: testclient
Andy Bavierbef56282016-11-14 08:22:43 -080067 state: started
68
69- name: Make sure testclient has default route to vSG
70 become: yes
71 shell: lxc exec testclient -- route | grep default | grep "eth0.222.111"
72 register: result
73 until: result | success
74 retries: 3
75 delay: 10
76 tags:
77 - skip_ansible_lint # running a sub job
78
79- name: Download the curl package through the vSG
80 become: yes
81 command: lxc exec testclient -- apt-get install -y curl
Zack Williams35624562016-08-28 17:12:26 -070082 tags:
83 - skip_ansible_lint # running a sub job
Andy Bavier8a7b8b62016-07-26 18:35:06 -040084
Andy Bavierb83beac2016-10-20 15:54:08 -040085# Don't use lxc_container in order to get output
Andy Bavier8a7b8b62016-07-26 18:35:06 -040086- name: Test connectivity to ExampleService from test client
Andy Bavierb83beac2016-10-20 15:54:08 -040087 become: yes
Andy Bavierbef56282016-11-14 08:22:43 -080088 command: lxc exec testclient -- curl -s http://{{ public_ip.stdout }}
Andy Bavier8a7b8b62016-07-26 18:35:06 -040089 register: curltest
Zack Williams35624562016-08-28 17:12:26 -070090 tags:
91 - skip_ansible_lint # running a sub job
Andy Bavier8a7b8b62016-07-26 18:35:06 -040092
93- name: Output from curl test
94 debug: var=curltest.stdout_lines