forked from johanmeiring/ansible-sftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
61 lines (52 loc) · 1.99 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
sudo: required
env:
- ansible: 1.9.6
distribution: ubuntu
version: 14.04
init: /sbin/init
run_opts: ""
- ansible: 2.0.2.0
distribution: ubuntu
version: 14.04
init: /sbin/init
run_opts: ""
- ansible: 2.1.0.0
distribution: ubuntu
version: 14.04
init: /sbin/init
run_opts: ""
services:
- docker
before_install:
# Pull container
- 'sudo docker pull ${distribution}:${version}'
# Customize container
- 'sudo docker build --rm=true --file=tests/Dockerfile.${distribution}-${version}.ansible-${ansible} --tag=${distribution}-${version}:ansible-${ansible} tests'
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-${ansible} "${init}" > "${container_id}"'
# 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'
# Test role.
- 'sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm ansible-playbook /etc/ansible/roles/role_under_test/tests/test.yml'
# Small tests for workings of role.
- >
sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm grep "user1" /etc/shadow
&& (echo 'User created' && exit 0)
|| (echo 'User not created' && exit 1)
- >
sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm test -d /home/user1/test1
&& (echo 'Directory created' && exit 0)
|| (echo 'Directory not created' && exit 1)
# Test role idempotence.
- >
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)
# Clean up
- 'sudo docker stop "$(cat ${container_id})"'
# notifications:
# webhooks: https://galaxy.ansible.com/api/v1/notifications/