2014-04-22 14:39:07 +02:00
|
|
|
---
|
|
|
|
language: python
|
|
|
|
python: "2.7"
|
|
|
|
env:
|
|
|
|
- SITE=test.yml
|
|
|
|
before_install:
|
|
|
|
- sudo apt-get update -qq
|
2014-04-22 15:47:05 +02:00
|
|
|
- sudo apt-get install -y curl
|
2014-04-22 14:39:07 +02:00
|
|
|
install:
|
|
|
|
- pip install ansible==1.5.0
|
|
|
|
script:
|
2014-04-22 17:21:44 +02:00
|
|
|
# Check the role/playbook's syntax.
|
2014-04-22 16:43:36 +02:00
|
|
|
- "ansible-playbook -i tests/inventory tests/$SITE --syntax-check"
|
2014-04-22 17:21:44 +02:00
|
|
|
|
|
|
|
# Run the role/playbook with ansible-playbook.
|
2014-04-22 16:43:36 +02:00
|
|
|
- "ansible-playbook -i tests/inventory tests/$SITE --connection=local --sudo"
|
2014-04-22 17:21:44 +02:00
|
|
|
|
|
|
|
# Run the role/playbook again, checking to make sure it's idempotent.
|
|
|
|
- >
|
|
|
|
ansible-playbook -i tests/inventory tests/$SITE --connection=local --sudo
|
|
|
|
| grep -q 'changed=0.*failed=0'
|
|
|
|
&& (echo 'Idempotence test: pass' && exit 0)
|
2014-04-22 17:36:30 +02:00
|
|
|
|| (echo 'Idempotence test: fail' && exit 1)
|
2014-04-22 17:21:44 +02:00
|
|
|
|
|
|
|
# Request a page via Apache, to make sure Apache is running and responds.
|
2014-04-22 16:43:36 +02:00
|
|
|
- "curl http://localhost/"
|