From 49aa52a5a42f34659bce353a65160f6b08518bf9 Mon Sep 17 00:00:00 2001 From: Kaleemullah Siddiqui Date: Wed, 9 Jun 2021 18:20:51 +0530 Subject: [PATCH] Add gating definition for RHEL 9 Related: rhbz#1947473 Signed-off-by: Kaleemullah Siddiqui --- gating.yaml | 6 ++++++ tests/driver/runtest.sh | 24 +++++++++++++++++++++ tests/tests.yml | 47 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 77 insertions(+) create mode 100644 gating.yaml create mode 100644 tests/driver/runtest.sh create mode 100644 tests/tests.yml diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..648918d --- /dev/null +++ b/gating.yaml @@ -0,0 +1,6 @@ +--- !Policy +product_versions: + - rhel-9 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/tests/driver/runtest.sh b/tests/driver/runtest.sh new file mode 100644 index 0000000..eb75041 --- /dev/null +++ b/tests/driver/runtest.sh @@ -0,0 +1,24 @@ +#!/bin/sh -ex + +# We operate on a (patched) source checkout +cd ../source + +# Write out the makefiles etc.. +autoreconf -fi +./configure || (cat config.log; exit -1) + +# Fake a build +mkdir -p .libs +cp /usr/lib64/gssproxy/proxymech.so .libs +make test_proxymech +make interposetest +make -C tests +cp $(which gssproxy) . + +# Do something awful +rm -f /usr/bin/valgrind +touch /usr/bin/valgrind +chmod +x /usr/bin/valgrind + +# And run the tests +exec ./tests/runtests.py --valgrind-cmd='' diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..66e4969 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,47 @@ +--- +- hosts: localhost + tags: + - atomic + - classic + vars: + # standard-test-basic directory for tests are relative to {{ tenv_workdir }} + tenv_workdir: /var/test + pre_tasks: + - import_role: + name: standard-test-source + vars: + fetch_only: True + + - name: Copy files including source to test environment + synchronize: + src: "{{ playbook_dir }}/.." + dest: "{{ tenv_workdir }}" + mode: push + ssh_args: "-o UserKnownHostsFile=/dev/null" + + roles: + - role: standard-test-basic + required_packages: + - autoconf + - automake + - git + - gssproxy + - krb5-server-ldap + - krb5-workstation + - make + - nss_wrapper + - openldap-clients + - openldap-servers + - rpm-build + - socket_wrapper + tests: + - prepare-source: + dir: ./ + run: rpmbuild -bp {{tenv_workdir}}/*.spec --nodeps --define "_sourcedir {{tenv_workdir}}" --define "_builddir {{tenv_workdir}}/source" + - flatten-source: + dir: ./ + run: shopt -s dotglob; mv {{tenv_workdir}}/source/*/* {{tenv_workdir}}/source + - install-builddep: + dir: ./ + run: dnf -y --nogpgcheck build-dep {{tenv_workdir}}/*.spec + - driver: