2022-06-02 15:18:12 -08:00
|
|
|
# Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
|
|
|
# or more contributor license agreements. Licensed under the Elastic License
|
|
|
|
|
# 2.0; you may not use this file except in compliance with the Elastic License
|
|
|
|
|
# 2.0.
|
|
|
|
|
|
|
|
|
|
"""Test version locking of rules."""
|
|
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
2023-02-07 14:26:29 -05:00
|
|
|
from semver import Version
|
|
|
|
|
|
2022-06-02 16:34:54 -08:00
|
|
|
from detection_rules.schemas import get_min_supported_stack_version
|
2025-07-01 15:20:55 +02:00
|
|
|
from detection_rules.version_lock import RULES_CONFIG, loaded_version_lock
|
2022-06-02 15:18:12 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestVersionLock(unittest.TestCase):
|
|
|
|
|
"""Test version locking."""
|
|
|
|
|
|
2025-07-01 15:20:55 +02:00
|
|
|
@unittest.skipIf(RULES_CONFIG.bypass_version_lock, "Version lock bypassed")
|
2022-06-02 15:18:12 -08:00
|
|
|
def test_previous_entries_gte_current_min_stack(self):
|
|
|
|
|
"""Test that all previous entries for all locks in the version lock are >= the current min_stack."""
|
|
|
|
|
errors = {}
|
2023-02-07 14:26:29 -05:00
|
|
|
min_version = get_min_supported_stack_version()
|
2024-08-06 18:07:12 -04:00
|
|
|
for rule_id, lock in loaded_version_lock.version_lock.to_dict().items():
|
2025-07-01 15:20:55 +02:00
|
|
|
if "previous" in lock:
|
|
|
|
|
prev_vers = [Version.parse(v, optional_minor_and_patch=True) for v in list(lock["previous"])]
|
2023-02-10 13:18:53 -05:00
|
|
|
outdated = [f"{v.major}.{v.minor}" for v in prev_vers if v < min_version]
|
2022-06-02 15:18:12 -08:00
|
|
|
if outdated:
|
|
|
|
|
errors[rule_id] = outdated
|
|
|
|
|
|
|
|
|
|
# This should only ever happen when bumping the backport matrix support up, which is based on the
|
|
|
|
|
# stack-schema-map
|
|
|
|
|
if errors:
|
2025-07-01 15:20:55 +02:00
|
|
|
err_str = "\n".join(f"{k}: {', '.join(v)}" for k, v in errors.items())
|
|
|
|
|
self.fail(
|
|
|
|
|
f"The following version.lock entries have previous locked versions which are lower than the "
|
|
|
|
|
f"currently supported min_stack ({min_version}). To address this, run the "
|
|
|
|
|
f"`dev trim-version-lock {min_version}` command.\n\n{err_str}"
|
|
|
|
|
)
|