Improve tests structure

- rename test-reboot.yml to tests-reboot.yml so that it's run by CI directly
- drop unnecessary tests.yml
- add mandatory test.log, see
  https://docs.fedoraproject.org/en-US/ci/standard-test-interface/#_invocation
- improve results.yml format
- drop avc.err.log and log everything AVC related to avc.log
This commit is contained in:
Petr Lautrbach 2020-08-27 08:11:06 +02:00
parent 98b9113655
commit 16c37db4fd
2 changed files with 7 additions and 5 deletions

View File

@ -31,9 +31,12 @@
- name: Gather SELinux denials since boot
shell: |
ausearch -m avc -m selinux_err -m user_avc -ts boot > /tmp/avc.log 2> /tmp/avc.err.log
grep -q '<no matches>' /tmp/avc.err.log && result=pass || result=fail
echo -e "results:\n- {result: $result, test: reboot}" > /tmp/results.yml
result=pass
dmesg | grep -i -e type=1300 -e type=1400 > /tmp/avc.log && result=fail
ausearch -m avc -m selinux_err -m user_avc -ts boot &>> /tmp/avc.log
grep -q '<no matches>' /tmp/avc.log || result=fail
echo -e "\nresults:\n- test: reboot and collect AVC\n result: $result\n logs:\n - avc.log\n\n" > /tmp/results.yml
( [ $result = "pass" ] && echo PASS test-reboot || echo FAIL test-reboot ) > /tmp/test.log
always:
- name: Pull out the artifacts
@ -42,6 +45,6 @@
src: "{{ item }}"
flat: yes
with_items:
- /tmp/test.log
- /tmp/avc.log
- /tmp/avc.err.log
- /tmp/results.yml

View File

@ -1 +0,0 @@
- import_playbook: test-reboot.yml