import tests

This commit is contained in:
Peng Wu 2019-05-17 11:42:07 +08:00
parent 907fb5ecd6
commit 39a4eaf5ff
4 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,2 @@
role_pkgs_req:
- rsync

View File

@ -0,0 +1,4 @@
---
dependencies:
- role: str-common-init

View File

@ -0,0 +1,44 @@
---
- name: Check if fontconfig is installed
register: fontconfig_testing_runner
find:
paths: "{{ ansible_env.PATH.split(':') }}"
pattern: fc-validate
- name: Install fontconfig
when: fontconfig_testing_runner.matched == 0
block:
- name: Installing fontconfig
package:
name:
- fontconfig
- name: Start fontconfig tests
block:
- name: Execute tests
shell: |
set -e
log_file="{{ remote_artifacts }}/{{ installed_test_name }}.log"
exec 2>>$log_file 1>>$log_file
echo "Starting fontconfig tests"
TEST=fontconfig
status="FAIL"
fc-validate -l ii /usr/share/fonts/sil-nuosu/NuosuSIL.ttf
if [ $? -eq 0 ]; then
status="PASS"
fi
echo "${status} $TEST" >> {{ remote_artifacts }}/test.log
- name: Check the results
shell: grep "^FAIL" {{ remote_artifacts }}/test.log
register: test_fails
failed_when: False
- name: Set role result
set_fact:
role_result_failed: "{{ (test_fails.stdout|d|length > 0) or (test_fails.stderr|d|length > 0) }}"
role_result_msg: "{{ test_fails.stdout|d('tests failed.') }}"
- include_role:
name: str-common-final

11
tests/tests.yml Normal file
View File

@ -0,0 +1,11 @@
- hosts: localhost
roles:
- role: fonts-testing-role
installed_test_name: sil-nuosu-fonts
tags:
- classic
- gating
required_packages:
- fontconfig
- sil-nuosu-fonts