Files
sigma-rules/tests/test_toml_formatter.py
T
Justin Ibarra bf202b6b6c [New Rule] Initial converted EQL rules (#304)
* 18 converted eql rules (not all prod)
2020-09-30 21:40:55 -08:00

78 lines
2.9 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;
# you may not use this file except in compliance with the Elastic License.
import copy
import json
import os
import pytoml
import unittest
from detection_rules.utils import get_etc_path
from detection_rules import rule_loader
from detection_rules.rule_formatter import nested_normalize, toml_write
tmp_file = 'tmp_file.toml'
class TestRuleTomlFormatter(unittest.TestCase):
"""Test that the cutom toml formatting is not compromising the integrity of the data."""
with open(get_etc_path('test_toml.json'), 'r') as f:
test_data = json.load(f)
def compare_formatted(self, data, callback=None, kwargs=None):
"""Compare formatted vs expected."""
try:
toml_write(copy.deepcopy(data), tmp_file)
with open(tmp_file, 'r') as f:
formatted_contents = pytoml.load(f)
# callbacks such as nested normalize leave in line breaks, so this must be manually done
query = data.get('rule', {}).get('query')
if query:
data['rule']['query'] = query.strip()
original = json.dumps(copy.deepcopy(data), sort_keys=True)
if callback:
kwargs = kwargs or {}
formatted_contents = callback(formatted_contents, **kwargs)
# callbacks such as nested normalize leave in line breaks, so this must be manually done
query = formatted_contents.get('rule', {}).get('query')
if query:
formatted_contents['rule']['query'] = query.strip()
formatted = json.dumps(formatted_contents, sort_keys=True)
self.assertEqual(original, formatted, 'Formatting may be modifying contents')
finally:
os.remove(tmp_file)
def compare_test_data(self, test_dicts, callback=None):
"""Compare test data against expected."""
for data in test_dicts:
self.compare_formatted(data, callback=callback)
def test_normalization(self):
"""Test that normalization does not change the rule contents."""
self.compare_test_data([nested_normalize(self.test_data[0])], callback=nested_normalize)
def test_formatter_rule(self):
"""Test that formatter and encoder do not change the rule contents."""
self.compare_test_data([self.test_data[0]])
def test_formatter_deep(self):
"""Test that the data remains unchanged from formatting."""
self.compare_test_data(self.test_data[1:])
def test_format_of_all_rules(self):
"""Test all rules."""
rules = rule_loader.load_rules().values()
for rule in rules:
is_eql_rule = rule.type == 'eql'
self.compare_formatted(
rule.rule_format(formatted_query=False), callback=nested_normalize, kwargs={'eql_rule': is_eql_rule})