Merge "Add integration tests for fetch-zuul-cloner"

This commit is contained in:
Zuul 2017-10-15 16:42:53 +00:00 committed by Gerrit Code Review
commit 4f7185959a
2 changed files with 27 additions and 0 deletions

View File

@ -2,3 +2,4 @@
- include: configure-unbound.yaml
- include: mirror-info.yaml
- include: configure-mirrors.yaml
- include: fetch-zuul-cloner.yaml

View File

@ -0,0 +1,26 @@
- name: Test the fetch-zuul-cloner role
hosts: all
vars:
destination: "/usr/zuul-env/bin/zuul-cloner"
repo_src_dir: "/home/zuul/src/git.openstack.org"
roles:
- role: fetch-zuul-cloner
post_tasks:
- name: Check that the directory exists
file:
path: "{{ destination | dirname }}"
state: directory
register: directory
- name: Check that the zuul-cloner shim exists
stat:
path: "{{ destination }}"
register: cloner
- name: Validate that the shim was installed successfully
assert:
that:
- not directory | changed
- directory | succeeded
- cloner.stat.exists
- cloner.stat.mode == "0755"