mirror of
https://github.com/elastic/detection-rules
synced 2026-06-08 14:00:08 +00:00
a0ec7c59a7
* first pass
* Adding a dedicated code checking workflow
* Type fixes
* linting config and python version bump
* Type hints
* Drop incorrect config option
* More fixes
* Style fixes
* CI adjustments
* Pyproject fixes
* CI & pyproject fixes
* Proper version bump
* Tests formatting
* Resolve cirtular dependency
* Test fixes
* Make sure the tests are formatted correctly
* Check tweaks
* Bumping python version in CI images
* Pin marshmallow do 3.x because 4.x is not supported
* License fix
* Convert path to str
* Making myself a codeowner
* Missing kwargs param
* Adding a missing kwargs to `set_score`
* Update .github/CODEOWNERS
Co-authored-by: Mika Ayenson, PhD <Mikaayenson@users.noreply.github.com>
* Dropping unnecessary raise
* Dropping skipped test
* Drop unnecessary var
* Drop unused commented-out func
* Disable typehinting for the whole func
* Update linting command
* Invalid type hist on the input param
* Incorrect field type
* Incorrect value used fix
* Stricter values check
* Simpler function call
* Type condition fix
* TOML formatter fix
* Simpligy output conditions
* Formatting
* Use proper types instead of aliases
* MITRE attack fixes
* Using pathlib.Path for an argument
* Use proper method to update a set from a dict
* First round of `ruff` fixes
* More fixes
* More fixes
* Hack against cyclic dependency
* Ignore `PLC0415`
* Remove unused markers
* Cleanup
* Fixing the incorrect condition
* Update .github/CODEOWNERS
Co-authored-by: Mika Ayenson, PhD <Mikaayenson@users.noreply.github.com>
* Set explicit default values for optional fields
* Update the guidelines
* Adding None Defaults
---------
Co-authored-by: Mika Ayenson, PhD <Mikaayenson@users.noreply.github.com>
Co-authored-by: eric-forte-elastic <eric.forte@elastic.co>
(cherry picked from commit 1fb60d6475)
32 lines
1.3 KiB
Python
32 lines
1.3 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
|
|
|
|
import yaml
|
|
|
|
from detection_rules.schemas import RULES_CONFIG, get_stack_versions
|
|
from detection_rules.utils import ROOT_DIR
|
|
|
|
GITHUB_FILES = ROOT_DIR / ".github"
|
|
GITHUB_WORKFLOWS = GITHUB_FILES / "workflows"
|
|
|
|
|
|
class TestWorkflows(unittest.TestCase):
|
|
"""Test GitHub workflow functionality."""
|
|
|
|
@unittest.skipIf(RULES_CONFIG.bypass_version_lock, "Version lock bypassed")
|
|
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_patch=True)
|
|
err_msg = "lock-versions workflow default does not match current matrix in stack-schema-map"
|
|
self.assertListEqual(lock_versions, matrix_versions[:-1], err_msg)
|