Files
sigma-rules/tests/test_gh_workflows.py
T
Terrance DeJesus 220996b1b8 Prep for Creation of 8.4 Branch (#2001)
* prepping for 8.4 branch

* adjusted schemas init file

* adjusted target matrix to only backport to 7.16, updated api schemas

* adjusted the lock-versions workflow to account for 7.16 and up support only

* Add test for version lock to schema map correlation

* decouple from static 7.13 references

* keep patch version for lock

* Update detection_rules/etc/packages.yml

Co-authored-by: Justin Ibarra <brokensound77@users.noreply.github.com>

Co-authored-by: Jonhnathan <jonhnathancesar@gmail.com>
Co-authored-by: brokensound77 <brokensound77@users.noreply.github.com>

Removed changes from:
- detection_rules/etc/packages.yml

(selectively cherry picked from commit 35b1a69ff5)
2022-06-02 18:59:56 +00:00

35 lines
1.4 KiB
Python

# 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
from pathlib import Path
import yaml
from detection_rules.schemas import get_stack_versions
from detection_rules.utils import get_path
from detection_rules.packaging import current_stack_version
GITHUB_FILES = Path(get_path()) / '.github'
GITHUB_WORKFLOWS = GITHUB_FILES / 'workflows'
class TestWorkflows(unittest.TestCase):
"""Test GitHub workflow functionality."""
def test_matrix_to_lock_version_defaults(self):
"""Test that the default versions in the lock-versions workflow mirror those from the schema-map."""
lock_workflow_file = GITHUB_WORKFLOWS / 'lock-versions.yml'
lock_workflow = yaml.safe_load(lock_workflow_file.read_text())
lock_versions = lock_workflow[True]['workflow_dispatch']['inputs']['branches']['default'].split(',')
matrix_versions = get_stack_versions()
# drop the current package since that should not be backported to (since it is main)
matrix_versions.remove(current_stack_version())
err_msg = 'lock-versions workflow default does not match current matrix in stack-schema-map'
self.assertListEqual(lock_versions, matrix_versions, err_msg)