104 lines
4.0 KiB
Python
104 lines
4.0 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.
|
|
|
|
"""Test util time functions."""
|
|
import random
|
|
import time
|
|
import unittest
|
|
|
|
from detection_rules.utils import normalize_timing_and_sort, cached
|
|
from detection_rules.eswrap import RtaEvents
|
|
from detection_rules.ecs import get_kql_schema
|
|
|
|
|
|
class TestTimeUtils(unittest.TestCase):
|
|
"""Test util time functions."""
|
|
|
|
@staticmethod
|
|
def get_events(timestamp_field='@timestamp'):
|
|
"""Get test data."""
|
|
date_formats = {
|
|
'epoch_millis': lambda x: int(round(time.time(), 3) + x) * 1000,
|
|
'epoch_second': lambda x: round(time.time()) + x,
|
|
'unix_micros': lambda x: time.time() + x,
|
|
'unix_millis': lambda x: round(time.time(), 3) + x,
|
|
'strict_date_optional_time': lambda x: '2020-05-13T04:36:' + str(15 + x) + '.394Z'
|
|
}
|
|
|
|
def _get_data(func):
|
|
data = [
|
|
{timestamp_field: func(0), 'foo': 'bar', 'id': 1},
|
|
{timestamp_field: func(1), 'foo': 'bar', 'id': 2},
|
|
{timestamp_field: func(2), 'foo': 'bar', 'id': 3},
|
|
{timestamp_field: func(3), 'foo': 'bar', 'id': 4},
|
|
{timestamp_field: func(4), 'foo': 'bar', 'id': 5},
|
|
{timestamp_field: func(5), 'foo': 'bar', 'id': 6}
|
|
]
|
|
random.shuffle(data)
|
|
return data
|
|
|
|
return {fmt: _get_data(func) for fmt, func in date_formats.items()}
|
|
|
|
def assert_sort(self, normalized_events, date_format):
|
|
"""Assert normalize and sort."""
|
|
order = [e['id'] for e in normalized_events]
|
|
self.assertListEqual([1, 2, 3, 4, 5, 6], order, 'Sorting failed for date_format: {}'.format(date_format))
|
|
|
|
def test_time_normalize(self):
|
|
"""Test normalize_timing_from_date_format."""
|
|
events_data = self.get_events()
|
|
for date_format, events in events_data.items():
|
|
normalized = normalize_timing_and_sort(events)
|
|
self.assert_sort(normalized, date_format)
|
|
|
|
def test_event_class_normalization(self):
|
|
"""Test that events are normalized properly within Events."""
|
|
events_data = self.get_events()
|
|
for date_format, events in events_data.items():
|
|
normalized = RtaEvents({'winlogbeat': events})
|
|
self.assert_sort(normalized.events['winlogbeat'], date_format)
|
|
|
|
def test_schema_multifields(self):
|
|
"""Tests that schemas are loading multifields correctly."""
|
|
schema = get_kql_schema(version="1.4.0")
|
|
self.assertEqual(schema.get("process.name"), "keyword")
|
|
self.assertEqual(schema.get("process.name.text"), "text")
|
|
|
|
def test_caching(self):
|
|
"""Test that caching is working."""
|
|
counter = 0
|
|
|
|
@cached
|
|
def increment(*args, **kwargs):
|
|
nonlocal counter
|
|
|
|
counter += 1
|
|
return counter
|
|
|
|
self.assertEqual(increment(), 1)
|
|
self.assertEqual(increment(), 1)
|
|
self.assertEqual(increment(), 1)
|
|
|
|
self.assertEqual(increment(["hello", "world"]), 2)
|
|
self.assertEqual(increment(["hello", "world"]), 2)
|
|
self.assertEqual(increment(["hello", "world"]), 2)
|
|
|
|
self.assertEqual(increment(), 1)
|
|
self.assertEqual(increment(["hello", "world"]), 2)
|
|
|
|
self.assertEqual(increment({"hello": [("world", )]}), 3)
|
|
self.assertEqual(increment({"hello": [("world", )]}), 3)
|
|
|
|
self.assertEqual(increment(), 1)
|
|
self.assertEqual(increment(["hello", "world"]), 2)
|
|
self.assertEqual(increment({"hello": [("world", )]}), 3)
|
|
|
|
increment.clear()
|
|
self.assertEqual(increment({"hello": [("world", )]}), 4)
|
|
self.assertEqual(increment(["hello", "world"]), 5)
|
|
self.assertEqual(increment(), 6)
|
|
self.assertEqual(increment(None), 7)
|
|
self.assertEqual(increment(1), 8)
|