From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- monitoring/ceph-mixin/tests_alerts/test_unittests.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 monitoring/ceph-mixin/tests_alerts/test_unittests.py (limited to 'monitoring/ceph-mixin/tests_alerts/test_unittests.py') diff --git a/monitoring/ceph-mixin/tests_alerts/test_unittests.py b/monitoring/ceph-mixin/tests_alerts/test_unittests.py new file mode 100644 index 000000000..4cfb2b600 --- /dev/null +++ b/monitoring/ceph-mixin/tests_alerts/test_unittests.py @@ -0,0 +1,19 @@ +import pytest +import os +from .utils import promtool_available, call +from .settings import ALERTS_FILE, UNIT_TESTS_FILE + + +def test_alerts_present(): + assert os.path.exists(ALERTS_FILE), f"{ALERTS_FILE} not found" + + +def test_unittests_present(): + assert os.path.exists(UNIT_TESTS_FILE), f"{UNIT_TESTS_FILE} not found" + + +@pytest.mark.skipif(not promtool_available(), reason="promtool is not installed. Unable to run unit tests") +def test_run_unittests(): + completion = call(f"promtool test rules {UNIT_TESTS_FILE}") + assert completion.returncode == 0 + assert b"SUCCESS" in completion.stdout -- cgit v1.2.3