-
Notifications
You must be signed in to change notification settings - Fork 82
/
.travis.yml
105 lines (95 loc) · 3.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
sudo: required
env:
- ansible: 2.5
distribution: ubuntu
version: 16.04
init: /sbin/init
run_opts: ""
- ansible: 2.9
distribution: ubuntu
version: 16.04
init: /sbin/init
run_opts: ""
- ansible: 2.5
distribution: ubuntu
version: 18.04
init: /sbin/init
run_opts: ""
- ansible: 2.9
distribution: ubuntu
version: 18.04
init: /sbin/init
run_opts: ""
- ansible: 2.5
distribution: centos
version: 7
init: /sbin/init
run_opts: ""
- ansible: 2.9
distribution: centos
version: 7
init: /sbin/init
run_opts: ""
- ansible: 2.5
distribution: centos
version: 8
init: /sbin/init
run_opts: ""
- ansible: 2.9
distribution: centos
version: 8
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)
# Group specfic tests.
- >
sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm grep "foobar" /etc/group
&& (echo 'Group created' && exit 0)
|| (echo 'Group not created' && exit 1)
- >
sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm '[ $(stat --format %G /home/user2) = "foobar" ]'
&& (echo 'Good directory ownership' && exit 0)
|| (echo 'Wrong directory ownership' && exit 1)
- >
sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm '[ $(stat --format %G /home/user1) = "sftpusers" ]'
&& (echo 'Good directory ownership' && exit 0)
|| (echo 'Wrong directory ownership' && exit 1)
# Test user-specific directory creation
- >
sudo docker exec --tty "$(cat ${container_id})" env TERM=xterm test -d /home/user1/test3
&& (echo 'User Directory created' && exit 0)
|| (echo 'User 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/