forked from aprt5pr/lansible-role-ocserv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (40 loc) · 1.87 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
---
services: docker
env:
- distro: centos7
init: /usr/lib/systemd/systemd
run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
- distro: ubuntu1604
init: /lib/systemd/systemd
run_opts: "--privileged --volume=/sys/fs/cgroup:/sys/fs/cgroup:ro"
before_install:
# Pull container.
- 'docker pull geerlingguy/docker-${distro}-ansible:latest'
install:
# Add ansible.cfg to pick up roles path.
- "echo '[defaults]' > ansible.cfg"
- "echo 'roles_path = ../' >> ansible.cfg"
- "cat ansible.cfg"
script:
- container_id=$(mktemp)
# Run container in detached state
- 'docker run --detach --volume="${PWD}":/etc/ansible/roles/lansible-role-ocserv:ro ${run_opts} geerlingguy/docker-${distro}-ansible:latest "${init}" > "${container_id}"'
# Ansible syntax check
- 'docker exec --tty "$(cat ${container_id})" env TERM=xterm ansible-playbook /etc/ansible/roles/lansible-role-ocserv/tests/test.yml --syntax-check'
# Test role (first pass)
- 'docker exec --tty "$(cat ${container_id})" env TERM=xterm ansible-playbook /etc/ansible/roles/lansible-role-ocserv/tests/test.yml'
# Test role (idempotence)
- idempotence=$(mktemp)
- docker exec "$(cat ${container_id})" ansible-playbook /etc/ansible/roles/lansible-role-ocserv/tests/test.yml | tee -a ${idempotence}
- >
tail ${idempotence}
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)
# Ensure Ocserv is running
- 'docker exec -i "$(cat ${container_id})" openssl s_client -connect $(cat ${container_id}| cut -c 1-12):443 < /dev/null'
# Test authentication
- 'echo alicepass | docker exec -i "$(cat ${container_id})" openconnect --authenticate --passwd-on-stdin -u alice https://$(cat ${container_id}| cut -c 1-12)'
notifications:
email: false
webhooks: https://galaxy.ansible.com/api/v1/notifications/