Strengthen tests about deleted old push actions. (#13471)

This commit is contained in:
Patrick Cloke 2022-08-09 07:56:16 -04:00 committed by GitHub
parent 70d3e70009
commit 5ce2887653
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

1
changelog.d/13471.misc Normal file
View File

@ -0,0 +1 @@
Clean-up tests for notifications.

View File

@ -135,7 +135,22 @@ class EventPushActionsStoreTestCase(HomeserverTestCase):
_assert_counts(1, 1, 0)
# Delete old event push actions, this should not affect the (summarised) count.
#
# All event push actions are kept for 24 hours, so need to move forward
# in time.
self.pump(60 * 60 * 24)
self.get_success(self.store._remove_old_push_actions_that_have_rotated())
# Double check that the event push actions have been cleared (i.e. that
# any results *must* come from the summary).
result = self.get_success(
self.store.db_pool.simple_select_list(
table="event_push_actions",
keyvalues={"1": 1},
retcols=("event_id",),
desc="",
)
)
self.assertEqual(result, [])
_assert_counts(1, 1, 0)
_mark_read(last_event_id)