2022-06-02 14:59:18 -04: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.
|
|
|
|
|
|
|
|
|
|
"""Tests for GitHub workflow functionality."""
|
|
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
import yaml
|
|
|
|
|
|
2025-07-01 15:20:55 +02:00
|
|
|
from detection_rules.schemas import RULES_CONFIG, get_stack_versions
|
|
|
|
|
from detection_rules.utils import ROOT_DIR
|
2022-06-02 14:59:18 -04:00
|
|
|
|
2025-07-01 15:20:55 +02:00
|
|
|
GITHUB_FILES = ROOT_DIR / ".github"
|
|
|
|
|
GITHUB_WORKFLOWS = GITHUB_FILES / "workflows"
|
2022-06-02 14:59:18 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class TestWorkflows(unittest.TestCase):
|
|
|
|
|
"""Test GitHub workflow functionality."""
|
|
|
|
|
|
2025-07-01 15:20:55 +02:00
|
|
|
@unittest.skipIf(RULES_CONFIG.bypass_version_lock, "Version lock bypassed")
|
2022-06-02 14:59:18 -04:00
|
|
|
def test_matrix_to_lock_version_defaults(self):
|
|
|
|
|
"""Test that the default versions in the lock-versions workflow mirror those from the schema-map."""
|
2025-07-01 15:20:55 +02:00
|
|
|
lock_workflow_file = GITHUB_WORKFLOWS / "lock-versions.yml"
|
2022-06-02 14:59:18 -04:00
|
|
|
lock_workflow = yaml.safe_load(lock_workflow_file.read_text())
|
2025-07-01 15:20:55 +02:00
|
|
|
lock_versions = lock_workflow[True]["workflow_dispatch"]["inputs"]["branches"]["default"].split(",")
|
2022-06-02 14:59:18 -04:00
|
|
|
|
2022-06-02 16:34:54 -08:00
|
|
|
matrix_versions = get_stack_versions(drop_patch=True)
|
2025-07-01 15:20:55 +02:00
|
|
|
err_msg = "lock-versions workflow default does not match current matrix in stack-schema-map"
|
2022-06-02 15:18:12 -08:00
|
|
|
self.assertListEqual(lock_versions, matrix_versions[:-1], err_msg)
|