diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..4ca9235 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,6 @@ +--- !Policy +product_versions: + - rhel-10 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/tests/runtest.sh b/tests/runtest.sh new file mode 100755 index 0000000..b066f5b --- /dev/null +++ b/tests/runtest.sh @@ -0,0 +1,54 @@ +#!/bin/bash + +# get tpm2-tools tests +TPM2_TOOLS_VERSION=5.7 +git clone https://github.com/01org/tpm2-tools.git +pushd tpm2-tools +git checkout -b test $TPM2_TOOLS_VERSION +pushd test/integration +pushd tests +# some tests aren't executable currently. Needs to be fixed upstream. +chmod +x *.sh +popd +# copy the yaml comparison files (196e3d43) +cp fixtures/event-raw/event-*.yaml fixtures +popd +popd + +TPM2_ABRMD=tpm2-abrmd +TPM2_SIM=swtpm +TPM2_TOOLS_TEST_FIXTURES=`pwd`/tpm2-tools/test/integration/fixtures +PATH=`pwd`/ibmtpm/src/:.:$PATH +abs_srcdir=`pwd`/tpm2-tools +srcdir=$abs_srcdir +export TPM2_ABRMD TPM2_SIM TPM2_TOOLS_TEST_FIXTURES PATH abs_srcdir srcdir + +pushd tpm2-tools/test/integration +for t in `ls tests/*.sh` +do + f=`basename $t` + test=${f%%.*} + /usr/share/automake-1.16/test-driver --test-name $test --log-file $test.log --trs-file $test.trs $t +done +all=`grep ":test-result:" *.trs | wc -l`; +pass=`grep ":test-result: PASS" *.trs | wc -l`; +fail=`grep ":test-result: FAIL" *.trs | wc -l`; +skip=`grep ":test-result: SKIP" *.trs | wc -l`; +xfail=`grep ":test-result: XFAIL" *.trs | wc -l`; +xpass=`grep ":test-result: XPASS" *.trs | wc -l`; +error=`grep ":test-result: ERROR" *.trs | wc -l`; +if [[ $(($fail + $xpass + $error)) -eq 0 ]]; then + success=0 +else + success=1 +fi; +popd + +echo PASSED: $pass +echo FAILED: $fail +echo SKIPPED: $skip +echo XFAIL: $xfail +echo XPASS: $xpass +echo ERROR: $error + +exit $success diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..b122cef --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,29 @@ +- hosts: localhost + roles: + - role: standard-test-basic + tags: + - classic + required_packages: + - gcc + - make + - automake + - wget + - openssl + - openssl-devel + - sed + - tpm2-tss + - tpm2-tss-devel + - tpm2-tools + - tpm2-abrmd + - tpm2-abrmd-selinux + - python3 + - git + - vim-common + - perl-Digest-SHA + - dbus-daemon + - swtpm + tests: + - intel-tpm2: + dir: . + run: dbus-run-session ./runtest.sh + timeout: 60m