Add molecule test for role

Only test default installation with jbig2enc and sqlite
This commit is contained in:
Fabian Koller 2020-12-28 11:28:19 +01:00
parent ef9631ae24
commit 1276419ec6
No known key found for this signature in database
GPG Key ID: 4EFE4C946404B82A
4 changed files with 52 additions and 0 deletions

View File

@ -33,6 +33,16 @@ jobs:
- ng build --prod
after_success: true
- name: "Ansible role"
sudo: required
services:
- docker
install:
- python3 -m pip install molecule[ansible,docker]
script:
- cd ansible/
- molecule test
after_success: true
before_install:
- sudo apt-get update -qq

View File

@ -0,0 +1,7 @@
---
- name: Converge
hosts: all
tasks:
- name: "Include ansible"
include_role:
name: "ansible"

View File

@ -0,0 +1,21 @@
---
dependency:
name: galaxy
driver:
name: docker
platforms:
- name: debian_buster
image: jrei/systemd-debian:10
privileged: true
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
tmpfs:
- /tmp
- /run
- /run/lock
override_command: False
# debian 9 stretch only has Python 3.5 which is EOL and breaks multiple dependencies
provisioner:
name: ansible
verifier:
name: ansible

View File

@ -0,0 +1,14 @@
---
# This is an example playbook to execute Ansible tests.
- name: Verify
hosts: all
gather_facts: false
tasks:
- name: check if webserver is up
uri:
url: http://localhost:8000
status_code: [200, 302]
return_content: yes
register: landingpage
failed_when: "'Sign in</button>' not in landingpage.content"