|
@@ -1,36 +1,63 @@
|
|
|
---
|
|
|
-language: python
|
|
|
-python: "2.7"
|
|
|
+sudo: required
|
|
|
|
|
|
env:
|
|
|
- - SITE=test.yml
|
|
|
+ - distribution: centos
|
|
|
+ version: 6
|
|
|
+ init: /sbin/init
|
|
|
+ run_opts: ""
|
|
|
+ - distribution: centos
|
|
|
+ version: 7
|
|
|
+ init: /usr/lib/systemd/systemd
|
|
|
+ run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
|
|
|
+ - distribution: ubuntu
|
|
|
+ version: 14.04
|
|
|
+ init: /sbin/init
|
|
|
+ run_opts: ""
|
|
|
+ - distribution: ubuntu
|
|
|
+ version: 12.04
|
|
|
+ init: /sbin/init
|
|
|
+ run_opts: ""
|
|
|
+
|
|
|
+services:
|
|
|
+ - docker
|
|
|
|
|
|
before_install:
|
|
|
- - sudo apt-get update -qq
|
|
|
+ # - sudo apt-get update
|
|
|
+ # Pull container
|
|
|
+ - 'sudo docker pull ${distribution}:${version}'
|
|
|
+ # Customize container
|
|
|
+ - 'sudo docker build --rm=true --file=tests/Dockerfile.${distribution}-${version} --tag=${distribution}-${version}:ansible tests'
|
|
|
|
|
|
-install:
|
|
|
- # Install Ansible.
|
|
|
- - pip install ansible
|
|
|
+script:
|
|
|
+ - container_id=$(mktemp)
|
|
|
+ # Run container in detached state
|
|
|
+ - 'sudo docker run --detach --volume="${PWD}":/etc/ansible/roles/role_under_test:ro ${run_opts} ${distribution}-${version}:ansible "${init}" > "${container_id}"'
|
|
|
|
|
|
- # Add ansible.cfg to pick up roles path.
|
|
|
- - "{ echo '[defaults]'; echo 'roles_path = ../'; } >> ansible.cfg"
|
|
|
+ # Install required Galaxy roles.
|
|
|
+ - 'sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm ansible-galaxy install geerlingguy.git'
|
|
|
|
|
|
- # Install required dependencies.
|
|
|
- - ansible-galaxy install geerlingguy.git
|
|
|
+ # Ansible syntax check.
|
|
|
+ - 'sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml --syntax-check'
|
|
|
|
|
|
-script:
|
|
|
- # Check the role/playbook's syntax.
|
|
|
- - "ansible-playbook -i tests/inventory tests/$SITE --syntax-check"
|
|
|
+ # Test role.
|
|
|
+ - 'sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml'
|
|
|
|
|
|
- # Run the role/playbook with ansible-playbook.
|
|
|
- - "ansible-playbook -i tests/inventory tests/$SITE --connection=local --sudo"
|
|
|
+ # Ensure daemonize is available.
|
|
|
+ - 'sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm which daemonize'
|
|
|
|
|
|
- # Run the role/playbook again, checking to make sure it's idempotent.
|
|
|
+ # Test role idempotence.
|
|
|
- >
|
|
|
- ansible-playbook -i tests/inventory tests/$SITE --connection=local --sudo
|
|
|
+ sudo docker exec "$(cat ${container_id})" ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml
|
|
|
| grep -q 'changed=0.*failed=0'
|
|
|
&& (echo 'Idempotence test: pass' && exit 0)
|
|
|
|| (echo 'Idempotence test: fail' && exit 1)
|
|
|
|
|
|
# Check if we get an installation page.
|
|
|
- - curl http://localhost:3000/install
|
|
|
+ - 'sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm curl http://localhost:3000/install'
|
|
|
+
|
|
|
+ # Clean up
|
|
|
+ - 'sudo docker stop "$(cat ${container_id})"'
|
|
|
+
|
|
|
+notifications:
|
|
|
+ webhooks: https://galaxy.ansible.com/api/v1/notifications/
|