mirror of
https://github.com/home-assistant/core.git
synced 2025-07-15 09:17:10 +00:00
Add tests for purging old states and events
This commit is contained in:
parent
fd48fc5f83
commit
d5ca97b1f6
@ -13,8 +13,8 @@ import logging
|
|||||||
import queue
|
import queue
|
||||||
import sqlite3
|
import sqlite3
|
||||||
import threading
|
import threading
|
||||||
import voluptuous as vol
|
|
||||||
from datetime import date, datetime, timedelta
|
from datetime import date, datetime, timedelta
|
||||||
|
import voluptuous as vol
|
||||||
|
|
||||||
import homeassistant.util.dt as dt_util
|
import homeassistant.util.dt as dt_util
|
||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
"""The tests for the Recorder component."""
|
"""The tests for the Recorder component."""
|
||||||
# pylint: disable=too-many-public-methods,protected-access
|
# pylint: disable=too-many-public-methods,protected-access
|
||||||
import unittest
|
import unittest
|
||||||
|
import time
|
||||||
|
import json
|
||||||
from unittest.mock import patch
|
from unittest.mock import patch
|
||||||
|
|
||||||
from homeassistant.const import MATCH_ALL
|
from homeassistant.const import MATCH_ALL
|
||||||
@ -10,7 +12,7 @@ from tests.common import get_test_home_assistant
|
|||||||
|
|
||||||
|
|
||||||
class TestRecorder(unittest.TestCase):
|
class TestRecorder(unittest.TestCase):
|
||||||
"""Test the chromecast module."""
|
"""Test the recorder module."""
|
||||||
|
|
||||||
def setUp(self): # pylint: disable=invalid-name
|
def setUp(self): # pylint: disable=invalid-name
|
||||||
"""Setup things to be run when tests are started."""
|
"""Setup things to be run when tests are started."""
|
||||||
@ -25,6 +27,66 @@ class TestRecorder(unittest.TestCase):
|
|||||||
self.hass.stop()
|
self.hass.stop()
|
||||||
recorder._INSTANCE.block_till_done()
|
recorder._INSTANCE.block_till_done()
|
||||||
|
|
||||||
|
def _add_test_states(self):
|
||||||
|
"""Adds multiple states to the db for testing."""
|
||||||
|
now = int(time.time())
|
||||||
|
five_days_ago = now - (60*60*24*5)
|
||||||
|
attributes = {'test_attr': 5, 'test_attr_10': 'nice'}
|
||||||
|
|
||||||
|
test_states = """
|
||||||
|
INSERT INTO states (
|
||||||
|
entity_id, domain, state, attributes, last_changed, last_updated,
|
||||||
|
created, utc_offset, event_id)
|
||||||
|
VALUES
|
||||||
|
('test.recorder2', 'sensor', 'purgeme', '{attr}', {five_days_ago},
|
||||||
|
{five_days_ago}, {five_days_ago}, -18000, 1001),
|
||||||
|
('test.recorder2', 'sensor', 'purgeme', '{attr}', {five_days_ago},
|
||||||
|
{five_days_ago}, {five_days_ago}, -18000, 1002),
|
||||||
|
('test.recorder2', 'sensor', 'purgeme', '{attr}', {five_days_ago},
|
||||||
|
{five_days_ago}, {five_days_ago}, -18000, 1002),
|
||||||
|
('test.recorder2', 'sensor', 'dontpurgeme', '{attr}', {now},
|
||||||
|
{now}, {now}, -18000, 1003),
|
||||||
|
('test.recorder2', 'sensor', 'dontpurgeme', '{attr}', {now},
|
||||||
|
{now}, {now}, -18000, 1004);
|
||||||
|
""".format(
|
||||||
|
attr=json.dumps(attributes),
|
||||||
|
five_days_ago=five_days_ago,
|
||||||
|
now=now,
|
||||||
|
)
|
||||||
|
|
||||||
|
# insert test states
|
||||||
|
self.hass.pool.block_till_done()
|
||||||
|
recorder._INSTANCE.block_till_done()
|
||||||
|
recorder.query(test_states)
|
||||||
|
|
||||||
|
def _add_test_events(self):
|
||||||
|
"""Adds a few events for testing."""
|
||||||
|
now = int(time.time())
|
||||||
|
five_days_ago = now - (60*60*24*5)
|
||||||
|
event_data = {'test_attr': 5, 'test_attr_10': 'nice'}
|
||||||
|
|
||||||
|
test_events = """
|
||||||
|
INSERT INTO events (
|
||||||
|
event_type, event_data, origin, created, time_fired, utc_offset
|
||||||
|
) VALUES
|
||||||
|
('EVENT_TEST_PURGE', '{event_data}', 'LOCAL', {five_days_ago},
|
||||||
|
{five_days_ago}, -18000),
|
||||||
|
('EVENT_TEST_PURGE', '{event_data}', 'LOCAL', {five_days_ago},
|
||||||
|
{five_days_ago}, -18000),
|
||||||
|
('EVENT_TEST', '{event_data}', 'LOCAL', {now}, {five_days_ago}, -18000),
|
||||||
|
('EVENT_TEST', '{event_data}', 'LOCAL', {now}, {five_days_ago}, -18000),
|
||||||
|
('EVENT_TEST', '{event_data}', 'LOCAL', {now}, {five_days_ago}, -18000);
|
||||||
|
""".format(
|
||||||
|
event_data=json.dumps(event_data),
|
||||||
|
now=now,
|
||||||
|
five_days_ago=five_days_ago
|
||||||
|
)
|
||||||
|
|
||||||
|
# insert test events
|
||||||
|
self.hass.pool.block_till_done()
|
||||||
|
recorder._INSTANCE.block_till_done()
|
||||||
|
recorder.query(test_events)
|
||||||
|
|
||||||
def test_saving_state(self):
|
def test_saving_state(self):
|
||||||
"""Test saving and restoring a state."""
|
"""Test saving and restoring a state."""
|
||||||
entity_id = 'test.recorder'
|
entity_id = 'test.recorder'
|
||||||
@ -64,3 +126,58 @@ class TestRecorder(unittest.TestCase):
|
|||||||
'SELECT * FROM events WHERE event_type = ?', (event_type, ))
|
'SELECT * FROM events WHERE event_type = ?', (event_type, ))
|
||||||
|
|
||||||
self.assertEqual(events, db_events)
|
self.assertEqual(events, db_events)
|
||||||
|
|
||||||
|
def test_purge_old_states(self):
|
||||||
|
"""Tests deleting old states."""
|
||||||
|
self._add_test_states()
|
||||||
|
# make sure we start with 5 states
|
||||||
|
states = recorder.query_states('SELECT * FROM states')
|
||||||
|
self.assertEqual(len(states), 5)
|
||||||
|
|
||||||
|
# run purge_old_data()
|
||||||
|
recorder._INSTANCE.purge_days = 4
|
||||||
|
recorder._INSTANCE._purge_old_data()
|
||||||
|
|
||||||
|
# we should only have 2 states left after purging
|
||||||
|
states = recorder.query_states('SELECT * FROM states')
|
||||||
|
self.assertEqual(len(states), 2)
|
||||||
|
|
||||||
|
def test_purge_old_events(self):
|
||||||
|
"""Tests deleting old events."""
|
||||||
|
self._add_test_events()
|
||||||
|
events = recorder.query_events('SELECT * FROM events WHERE '
|
||||||
|
'event_type LIKE "EVENT_TEST%"')
|
||||||
|
self.assertEqual(len(events), 5)
|
||||||
|
|
||||||
|
# run purge_old_data()
|
||||||
|
recorder._INSTANCE.purge_days = 4
|
||||||
|
recorder._INSTANCE._purge_old_data()
|
||||||
|
|
||||||
|
# now we should only have 3 events left
|
||||||
|
events = recorder.query_events('SELECT * FROM events WHERE '
|
||||||
|
'event_type LIKE "EVENT_TEST%"')
|
||||||
|
self.assertEqual(len(events), 3)
|
||||||
|
|
||||||
|
|
||||||
|
def test_purge_disabled(self):
|
||||||
|
"""Tests leaving purge_days disabled."""
|
||||||
|
self._add_test_states()
|
||||||
|
self._add_test_events()
|
||||||
|
# make sure we start with 5 states and events
|
||||||
|
states = recorder.query_states('SELECT * FROM states')
|
||||||
|
events = recorder.query_events('SELECT * FROM events WHERE '
|
||||||
|
'event_type LIKE "EVENT_TEST%"')
|
||||||
|
self.assertEqual(len(states), 5)
|
||||||
|
self.assertEqual(len(events), 5)
|
||||||
|
|
||||||
|
|
||||||
|
# run purge_old_data()
|
||||||
|
recorder._INSTANCE.purge_days = None
|
||||||
|
recorder._INSTANCE._purge_old_data()
|
||||||
|
|
||||||
|
# we should have all of our states still
|
||||||
|
states = recorder.query_states('SELECT * FROM states')
|
||||||
|
events = recorder.query_events('SELECT * FROM events WHERE '
|
||||||
|
'event_type LIKE "EVENT_TEST%"')
|
||||||
|
self.assertEqual(len(states), 5)
|
||||||
|
self.assertEqual(len(events), 5)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user