From 741d749c31491c0ebd05831ad2952f27d0aaa1ff Mon Sep 17 00:00:00 2001 From: Kaleemullah Siddiqui Date: Mon, 14 Jun 2021 16:10:34 +0530 Subject: [PATCH] Add gating definition for RHEL 9 Related: rhbz#1947473 Signed-off-by: Kaleemullah Siddiqui --- gating.yaml | 7 +++++++ tests/sanity.sh | 8 ++++++++ tests/test_ipa_yubikey.py | 28 ++++++++++++++++++++++++++++ tests/tests.yml | 10 ++++++++++ 4 files changed, 53 insertions(+) create mode 100644 gating.yaml create mode 100644 tests/sanity.sh create mode 100644 tests/test_ipa_yubikey.py create mode 100644 tests/tests.yml diff --git a/gating.yaml b/gating.yaml new file mode 100644 index 0000000..6f49862 --- /dev/null +++ b/gating.yaml @@ -0,0 +1,7 @@ +# recipients: abokovoy, frenaud, kaleem, ftrivino, cheimes +--- !Policy +product_versions: + - rhel-9 +decision_context: osci_compose_gate +rules: + - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/tests/sanity.sh b/tests/sanity.sh new file mode 100644 index 0000000..38185fd --- /dev/null +++ b/tests/sanity.sh @@ -0,0 +1,8 @@ +#!/bin/sh +set -ex + +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" + +dnf install -y python3-yubico + +exec ${DIR}/test_ipa_yubikey.py diff --git a/tests/test_ipa_yubikey.py b/tests/test_ipa_yubikey.py new file mode 100644 index 0000000..df8dda5 --- /dev/null +++ b/tests/test_ipa_yubikey.py @@ -0,0 +1,28 @@ +#!/usr/libexec/platform-python +"""Simple test for APIs used by IPA's otptoken plugin +""" +import logging + +import yubico +import usb.core + +logging.basicConfig(level=logging.INFO) +log = logging.getLogger() + + +def main(): + try: + yk = yubico.find_yubikey() + except usb.core.USBError as e: + log.info(e) + except yubico.yubikey.YubiKeyError as e: + log.info(e) + else: + assert yk.version_num() + log.info(yk.status()) + log.info(yk.status().valid_configs()) + log.info("PASS") + + +if __name__ == "__main__": + main() diff --git a/tests/tests.yml b/tests/tests.yml new file mode 100644 index 0000000..b2e7870 --- /dev/null +++ b/tests/tests.yml @@ -0,0 +1,10 @@ +--- +- hosts: localhost + tags: + - classic + roles: + - role: standard-test-scripts + tests: + - sanity.sh + files: + - test_ipa_yubikey.py