mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-10-22 00:56:10 -04:00
Add type hints to event_push_actions. (#11594)
This commit is contained in:
parent
2215954147
commit
b6102230a7
11 changed files with 226 additions and 155 deletions
|
@ -20,6 +20,7 @@ from synapse.api.room_versions import RoomVersions
|
|||
from synapse.events import FrozenEvent, _EventInternalMetadata, make_event_from_dict
|
||||
from synapse.handlers.room import RoomEventSource
|
||||
from synapse.replication.slave.storage.events import SlavedEventStore
|
||||
from synapse.storage.databases.main.event_push_actions import NotifCounts
|
||||
from synapse.storage.roommember import GetRoomsForUserWithStreamOrdering, RoomsForUser
|
||||
from synapse.types import PersistedEventPosition
|
||||
|
||||
|
@ -166,7 +167,7 @@ class SlavedEventStoreTestCase(BaseSlavedStoreTestCase):
|
|||
self.check(
|
||||
"get_unread_event_push_actions_by_room_for_user",
|
||||
[ROOM_ID, USER_ID_2, event1.event_id],
|
||||
{"highlight_count": 0, "unread_count": 0, "notify_count": 0},
|
||||
NotifCounts(highlight_count=0, unread_count=0, notify_count=0),
|
||||
)
|
||||
|
||||
self.persist(
|
||||
|
@ -179,7 +180,7 @@ class SlavedEventStoreTestCase(BaseSlavedStoreTestCase):
|
|||
self.check(
|
||||
"get_unread_event_push_actions_by_room_for_user",
|
||||
[ROOM_ID, USER_ID_2, event1.event_id],
|
||||
{"highlight_count": 0, "unread_count": 0, "notify_count": 1},
|
||||
NotifCounts(highlight_count=0, unread_count=0, notify_count=1),
|
||||
)
|
||||
|
||||
self.persist(
|
||||
|
@ -194,7 +195,7 @@ class SlavedEventStoreTestCase(BaseSlavedStoreTestCase):
|
|||
self.check(
|
||||
"get_unread_event_push_actions_by_room_for_user",
|
||||
[ROOM_ID, USER_ID_2, event1.event_id],
|
||||
{"highlight_count": 1, "unread_count": 0, "notify_count": 2},
|
||||
NotifCounts(highlight_count=1, unread_count=0, notify_count=2),
|
||||
)
|
||||
|
||||
def test_get_rooms_for_user_with_stream_ordering(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue