2016-02-18 06:52:33 -05:00
|
|
|
# Copyright 2016 OpenMarket Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
|
2021-04-09 13:44:38 -04:00
|
|
|
from unittest.mock import Mock, call
|
2016-02-18 06:52:33 -05:00
|
|
|
|
2019-03-27 08:26:28 -04:00
|
|
|
from signedjson.key import generate_signing_key
|
|
|
|
|
|
|
|
from synapse.api.constants import EventTypes, Membership, PresenceState
|
2020-08-17 07:24:46 -04:00
|
|
|
from synapse.api.presence import UserPresenceState
|
2020-01-29 12:55:48 -05:00
|
|
|
from synapse.api.room_versions import KNOWN_ROOM_VERSIONS
|
2019-03-27 08:26:28 -04:00
|
|
|
from synapse.events.builder import EventBuilder
|
2021-04-20 09:11:24 -04:00
|
|
|
from synapse.federation.sender import FederationSender
|
2016-02-18 06:52:33 -05:00
|
|
|
from synapse.handlers.presence import (
|
2019-10-18 01:42:26 -04:00
|
|
|
EXTERNAL_PROCESS_EXPIRY,
|
2016-02-18 06:52:33 -05:00
|
|
|
FEDERATION_PING_INTERVAL,
|
2018-07-09 02:09:20 -04:00
|
|
|
FEDERATION_TIMEOUT,
|
|
|
|
IDLE_TIMER,
|
|
|
|
LAST_ACTIVE_GRANULARITY,
|
|
|
|
SYNC_ONLINE_TIMEOUT,
|
|
|
|
handle_timeout,
|
|
|
|
handle_update,
|
2016-02-18 06:52:33 -05:00
|
|
|
)
|
2019-03-27 08:26:28 -04:00
|
|
|
from synapse.rest.client.v1 import room
|
|
|
|
from synapse.types import UserID, get_domain_from_id
|
2016-02-18 06:52:33 -05:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from tests import unittest
|
|
|
|
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
class PresenceUpdateTestCase(unittest.TestCase):
|
|
|
|
def test_offline_to_online(self):
|
|
|
|
wheel_timer = Mock()
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
prev_state = UserPresenceState.default(user_id)
|
|
|
|
new_state = prev_state.copy_and_replace(
|
2018-08-10 09:54:09 -04:00
|
|
|
state=PresenceState.ONLINE, last_active_ts=now
|
2016-02-18 06:52:33 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
state, persist_and_notify, federation_ping = handle_update(
|
|
|
|
prev_state, new_state, is_mine=True, wheel_timer=wheel_timer, now=now
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertTrue(persist_and_notify)
|
|
|
|
self.assertTrue(state.currently_active)
|
|
|
|
self.assertEquals(new_state.state, state.state)
|
|
|
|
self.assertEquals(new_state.status_msg, state.status_msg)
|
|
|
|
self.assertEquals(state.last_federation_update_ts, now)
|
|
|
|
|
2016-02-19 05:58:27 -05:00
|
|
|
self.assertEquals(wheel_timer.insert.call_count, 3)
|
2018-08-10 09:54:09 -04:00
|
|
|
wheel_timer.insert.assert_has_calls(
|
|
|
|
[
|
|
|
|
call(now=now, obj=user_id, then=new_state.last_active_ts + IDLE_TIMER),
|
|
|
|
call(
|
|
|
|
now=now,
|
|
|
|
obj=user_id,
|
|
|
|
then=new_state.last_user_sync_ts + SYNC_ONLINE_TIMEOUT,
|
|
|
|
),
|
|
|
|
call(
|
|
|
|
now=now,
|
|
|
|
obj=user_id,
|
|
|
|
then=new_state.last_active_ts + LAST_ACTIVE_GRANULARITY,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
any_order=True,
|
|
|
|
)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
def test_online_to_online(self):
|
|
|
|
wheel_timer = Mock()
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
prev_state = UserPresenceState.default(user_id)
|
|
|
|
prev_state = prev_state.copy_and_replace(
|
2018-08-10 09:54:09 -04:00
|
|
|
state=PresenceState.ONLINE, last_active_ts=now, currently_active=True
|
2016-02-18 06:52:33 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
new_state = prev_state.copy_and_replace(
|
2018-08-10 09:54:09 -04:00
|
|
|
state=PresenceState.ONLINE, last_active_ts=now
|
2016-02-18 06:52:33 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
state, persist_and_notify, federation_ping = handle_update(
|
|
|
|
prev_state, new_state, is_mine=True, wheel_timer=wheel_timer, now=now
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertFalse(persist_and_notify)
|
|
|
|
self.assertTrue(federation_ping)
|
|
|
|
self.assertTrue(state.currently_active)
|
2016-08-30 10:00:14 -04:00
|
|
|
self.assertEquals(new_state.state, state.state)
|
|
|
|
self.assertEquals(new_state.status_msg, state.status_msg)
|
|
|
|
self.assertEquals(state.last_federation_update_ts, now)
|
|
|
|
|
|
|
|
self.assertEquals(wheel_timer.insert.call_count, 3)
|
2018-08-10 09:54:09 -04:00
|
|
|
wheel_timer.insert.assert_has_calls(
|
|
|
|
[
|
|
|
|
call(now=now, obj=user_id, then=new_state.last_active_ts + IDLE_TIMER),
|
|
|
|
call(
|
|
|
|
now=now,
|
|
|
|
obj=user_id,
|
|
|
|
then=new_state.last_user_sync_ts + SYNC_ONLINE_TIMEOUT,
|
|
|
|
),
|
|
|
|
call(
|
|
|
|
now=now,
|
|
|
|
obj=user_id,
|
|
|
|
then=new_state.last_active_ts + LAST_ACTIVE_GRANULARITY,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
any_order=True,
|
|
|
|
)
|
2016-08-30 10:00:14 -04:00
|
|
|
|
|
|
|
def test_online_to_online_last_active_noop(self):
|
|
|
|
wheel_timer = Mock()
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
prev_state = UserPresenceState.default(user_id)
|
|
|
|
prev_state = prev_state.copy_and_replace(
|
|
|
|
state=PresenceState.ONLINE,
|
|
|
|
last_active_ts=now - LAST_ACTIVE_GRANULARITY - 10,
|
|
|
|
currently_active=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
new_state = prev_state.copy_and_replace(
|
2018-08-10 09:54:09 -04:00
|
|
|
state=PresenceState.ONLINE, last_active_ts=now
|
2016-08-30 10:00:14 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
state, persist_and_notify, federation_ping = handle_update(
|
|
|
|
prev_state, new_state, is_mine=True, wheel_timer=wheel_timer, now=now
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertFalse(persist_and_notify)
|
|
|
|
self.assertTrue(federation_ping)
|
|
|
|
self.assertTrue(state.currently_active)
|
2016-02-18 06:52:33 -05:00
|
|
|
self.assertEquals(new_state.state, state.state)
|
|
|
|
self.assertEquals(new_state.status_msg, state.status_msg)
|
|
|
|
self.assertEquals(state.last_federation_update_ts, now)
|
|
|
|
|
2016-02-19 05:58:27 -05:00
|
|
|
self.assertEquals(wheel_timer.insert.call_count, 3)
|
2018-08-10 09:54:09 -04:00
|
|
|
wheel_timer.insert.assert_has_calls(
|
|
|
|
[
|
|
|
|
call(now=now, obj=user_id, then=new_state.last_active_ts + IDLE_TIMER),
|
|
|
|
call(
|
|
|
|
now=now,
|
|
|
|
obj=user_id,
|
|
|
|
then=new_state.last_user_sync_ts + SYNC_ONLINE_TIMEOUT,
|
|
|
|
),
|
|
|
|
call(
|
|
|
|
now=now,
|
|
|
|
obj=user_id,
|
|
|
|
then=new_state.last_active_ts + LAST_ACTIVE_GRANULARITY,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
any_order=True,
|
|
|
|
)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
def test_online_to_online_last_active(self):
|
|
|
|
wheel_timer = Mock()
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
prev_state = UserPresenceState.default(user_id)
|
|
|
|
prev_state = prev_state.copy_and_replace(
|
|
|
|
state=PresenceState.ONLINE,
|
|
|
|
last_active_ts=now - LAST_ACTIVE_GRANULARITY - 1,
|
|
|
|
currently_active=True,
|
|
|
|
)
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
new_state = prev_state.copy_and_replace(state=PresenceState.ONLINE)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
state, persist_and_notify, federation_ping = handle_update(
|
|
|
|
prev_state, new_state, is_mine=True, wheel_timer=wheel_timer, now=now
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertTrue(persist_and_notify)
|
|
|
|
self.assertFalse(state.currently_active)
|
|
|
|
self.assertEquals(new_state.state, state.state)
|
|
|
|
self.assertEquals(new_state.status_msg, state.status_msg)
|
|
|
|
self.assertEquals(state.last_federation_update_ts, now)
|
|
|
|
|
|
|
|
self.assertEquals(wheel_timer.insert.call_count, 2)
|
2018-08-10 09:54:09 -04:00
|
|
|
wheel_timer.insert.assert_has_calls(
|
|
|
|
[
|
|
|
|
call(now=now, obj=user_id, then=new_state.last_active_ts + IDLE_TIMER),
|
|
|
|
call(
|
|
|
|
now=now,
|
|
|
|
obj=user_id,
|
|
|
|
then=new_state.last_user_sync_ts + SYNC_ONLINE_TIMEOUT,
|
|
|
|
),
|
|
|
|
],
|
|
|
|
any_order=True,
|
|
|
|
)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
def test_remote_ping_timer(self):
|
|
|
|
wheel_timer = Mock()
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
prev_state = UserPresenceState.default(user_id)
|
|
|
|
prev_state = prev_state.copy_and_replace(
|
2018-08-10 09:54:09 -04:00
|
|
|
state=PresenceState.ONLINE, last_active_ts=now
|
2016-02-18 06:52:33 -05:00
|
|
|
)
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
new_state = prev_state.copy_and_replace(state=PresenceState.ONLINE)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
state, persist_and_notify, federation_ping = handle_update(
|
|
|
|
prev_state, new_state, is_mine=False, wheel_timer=wheel_timer, now=now
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertFalse(persist_and_notify)
|
|
|
|
self.assertFalse(federation_ping)
|
|
|
|
self.assertFalse(state.currently_active)
|
|
|
|
self.assertEquals(new_state.state, state.state)
|
|
|
|
self.assertEquals(new_state.status_msg, state.status_msg)
|
|
|
|
|
|
|
|
self.assertEquals(wheel_timer.insert.call_count, 1)
|
2018-08-10 09:54:09 -04:00
|
|
|
wheel_timer.insert.assert_has_calls(
|
|
|
|
[
|
|
|
|
call(
|
|
|
|
now=now,
|
|
|
|
obj=user_id,
|
|
|
|
then=new_state.last_federation_update_ts + FEDERATION_TIMEOUT,
|
|
|
|
)
|
|
|
|
],
|
|
|
|
any_order=True,
|
|
|
|
)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
def test_online_to_offline(self):
|
|
|
|
wheel_timer = Mock()
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
prev_state = UserPresenceState.default(user_id)
|
|
|
|
prev_state = prev_state.copy_and_replace(
|
2018-08-10 09:54:09 -04:00
|
|
|
state=PresenceState.ONLINE, last_active_ts=now, currently_active=True
|
2016-02-18 06:52:33 -05:00
|
|
|
)
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
new_state = prev_state.copy_and_replace(state=PresenceState.OFFLINE)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
state, persist_and_notify, federation_ping = handle_update(
|
|
|
|
prev_state, new_state, is_mine=True, wheel_timer=wheel_timer, now=now
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertTrue(persist_and_notify)
|
|
|
|
self.assertEquals(new_state.state, state.state)
|
|
|
|
self.assertEquals(state.last_federation_update_ts, now)
|
|
|
|
|
|
|
|
self.assertEquals(wheel_timer.insert.call_count, 0)
|
|
|
|
|
|
|
|
def test_online_to_idle(self):
|
|
|
|
wheel_timer = Mock()
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
prev_state = UserPresenceState.default(user_id)
|
|
|
|
prev_state = prev_state.copy_and_replace(
|
2018-08-10 09:54:09 -04:00
|
|
|
state=PresenceState.ONLINE, last_active_ts=now, currently_active=True
|
2016-02-18 06:52:33 -05:00
|
|
|
)
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
new_state = prev_state.copy_and_replace(state=PresenceState.UNAVAILABLE)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
state, persist_and_notify, federation_ping = handle_update(
|
|
|
|
prev_state, new_state, is_mine=True, wheel_timer=wheel_timer, now=now
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertTrue(persist_and_notify)
|
|
|
|
self.assertEquals(new_state.state, state.state)
|
|
|
|
self.assertEquals(state.last_federation_update_ts, now)
|
|
|
|
self.assertEquals(new_state.state, state.state)
|
|
|
|
self.assertEquals(new_state.status_msg, state.status_msg)
|
|
|
|
|
|
|
|
self.assertEquals(wheel_timer.insert.call_count, 1)
|
2018-08-10 09:54:09 -04:00
|
|
|
wheel_timer.insert.assert_has_calls(
|
|
|
|
[
|
|
|
|
call(
|
|
|
|
now=now,
|
|
|
|
obj=user_id,
|
|
|
|
then=new_state.last_user_sync_ts + SYNC_ONLINE_TIMEOUT,
|
|
|
|
)
|
|
|
|
],
|
|
|
|
any_order=True,
|
|
|
|
)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
class PresenceTimeoutTestCase(unittest.TestCase):
|
|
|
|
def test_idle_timer(self):
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
state = UserPresenceState.default(user_id)
|
|
|
|
state = state.copy_and_replace(
|
|
|
|
state=PresenceState.ONLINE,
|
|
|
|
last_active_ts=now - IDLE_TIMER - 1,
|
|
|
|
last_user_sync_ts=now,
|
|
|
|
)
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
new_state = handle_timeout(state, is_mine=True, syncing_user_ids=set(), now=now)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
self.assertIsNotNone(new_state)
|
|
|
|
self.assertEquals(new_state.state, PresenceState.UNAVAILABLE)
|
|
|
|
|
2021-03-18 11:34:47 -04:00
|
|
|
def test_busy_no_idle(self):
|
|
|
|
"""
|
|
|
|
Tests that a user setting their presence to busy but idling doesn't turn their
|
|
|
|
presence state into unavailable.
|
|
|
|
"""
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
state = UserPresenceState.default(user_id)
|
|
|
|
state = state.copy_and_replace(
|
|
|
|
state=PresenceState.BUSY,
|
|
|
|
last_active_ts=now - IDLE_TIMER - 1,
|
|
|
|
last_user_sync_ts=now,
|
|
|
|
)
|
|
|
|
|
|
|
|
new_state = handle_timeout(state, is_mine=True, syncing_user_ids=set(), now=now)
|
|
|
|
|
|
|
|
self.assertIsNotNone(new_state)
|
|
|
|
self.assertEquals(new_state.state, PresenceState.BUSY)
|
|
|
|
|
2016-02-18 06:52:33 -05:00
|
|
|
def test_sync_timeout(self):
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
state = UserPresenceState.default(user_id)
|
|
|
|
state = state.copy_and_replace(
|
|
|
|
state=PresenceState.ONLINE,
|
2017-03-15 11:38:57 -04:00
|
|
|
last_active_ts=0,
|
2016-02-18 06:52:33 -05:00
|
|
|
last_user_sync_ts=now - SYNC_ONLINE_TIMEOUT - 1,
|
|
|
|
)
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
new_state = handle_timeout(state, is_mine=True, syncing_user_ids=set(), now=now)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
self.assertIsNotNone(new_state)
|
|
|
|
self.assertEquals(new_state.state, PresenceState.OFFLINE)
|
|
|
|
|
|
|
|
def test_sync_online(self):
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
state = UserPresenceState.default(user_id)
|
|
|
|
state = state.copy_and_replace(
|
|
|
|
state=PresenceState.ONLINE,
|
|
|
|
last_active_ts=now - SYNC_ONLINE_TIMEOUT - 1,
|
|
|
|
last_user_sync_ts=now - SYNC_ONLINE_TIMEOUT - 1,
|
|
|
|
)
|
|
|
|
|
|
|
|
new_state = handle_timeout(
|
2020-02-21 07:15:07 -05:00
|
|
|
state, is_mine=True, syncing_user_ids={user_id}, now=now
|
2016-02-18 06:52:33 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
self.assertIsNotNone(new_state)
|
|
|
|
self.assertEquals(new_state.state, PresenceState.ONLINE)
|
|
|
|
|
|
|
|
def test_federation_ping(self):
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
state = UserPresenceState.default(user_id)
|
|
|
|
state = state.copy_and_replace(
|
|
|
|
state=PresenceState.ONLINE,
|
|
|
|
last_active_ts=now,
|
|
|
|
last_user_sync_ts=now,
|
|
|
|
last_federation_update_ts=now - FEDERATION_PING_INTERVAL - 1,
|
|
|
|
)
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
new_state = handle_timeout(state, is_mine=True, syncing_user_ids=set(), now=now)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
self.assertIsNotNone(new_state)
|
|
|
|
self.assertEquals(new_state, new_state)
|
|
|
|
|
|
|
|
def test_no_timeout(self):
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
state = UserPresenceState.default(user_id)
|
|
|
|
state = state.copy_and_replace(
|
|
|
|
state=PresenceState.ONLINE,
|
|
|
|
last_active_ts=now,
|
|
|
|
last_user_sync_ts=now,
|
|
|
|
last_federation_update_ts=now,
|
|
|
|
)
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
new_state = handle_timeout(state, is_mine=True, syncing_user_ids=set(), now=now)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
self.assertIsNone(new_state)
|
|
|
|
|
|
|
|
def test_federation_timeout(self):
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
state = UserPresenceState.default(user_id)
|
|
|
|
state = state.copy_and_replace(
|
|
|
|
state=PresenceState.ONLINE,
|
|
|
|
last_active_ts=now,
|
|
|
|
last_user_sync_ts=now,
|
|
|
|
last_federation_update_ts=now - FEDERATION_TIMEOUT - 1,
|
|
|
|
)
|
|
|
|
|
|
|
|
new_state = handle_timeout(
|
2016-06-02 10:20:15 -04:00
|
|
|
state, is_mine=False, syncing_user_ids=set(), now=now
|
2016-02-18 06:52:33 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
self.assertIsNotNone(new_state)
|
|
|
|
self.assertEquals(new_state.state, PresenceState.OFFLINE)
|
|
|
|
|
|
|
|
def test_last_active(self):
|
|
|
|
user_id = "@foo:bar"
|
|
|
|
now = 5000000
|
|
|
|
|
|
|
|
state = UserPresenceState.default(user_id)
|
|
|
|
state = state.copy_and_replace(
|
|
|
|
state=PresenceState.ONLINE,
|
|
|
|
last_active_ts=now - LAST_ACTIVE_GRANULARITY - 1,
|
|
|
|
last_user_sync_ts=now,
|
|
|
|
last_federation_update_ts=now,
|
|
|
|
)
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
new_state = handle_timeout(state, is_mine=True, syncing_user_ids=set(), now=now)
|
2016-02-18 06:52:33 -05:00
|
|
|
|
|
|
|
self.assertIsNotNone(new_state)
|
|
|
|
self.assertEquals(state, new_state)
|
2019-03-27 08:26:28 -04:00
|
|
|
|
|
|
|
|
2019-10-18 01:42:26 -04:00
|
|
|
class PresenceHandlerTestCase(unittest.HomeserverTestCase):
|
|
|
|
def prepare(self, reactor, clock, hs):
|
|
|
|
self.presence_handler = hs.get_presence_handler()
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
|
|
|
|
def test_external_process_timeout(self):
|
|
|
|
"""Test that if an external process doesn't update the records for a while
|
|
|
|
we time out their syncing users presence.
|
|
|
|
"""
|
|
|
|
process_id = 1
|
|
|
|
user_id = "@test:server"
|
|
|
|
|
|
|
|
# Notify handler that a user is now syncing.
|
|
|
|
self.get_success(
|
|
|
|
self.presence_handler.update_external_syncs_row(
|
|
|
|
process_id, user_id, True, self.clock.time_msec()
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
# Check that if we wait a while without telling the handler the user has
|
|
|
|
# stopped syncing that their presence state doesn't get timed out.
|
|
|
|
self.reactor.advance(EXTERNAL_PROCESS_EXPIRY / 2)
|
|
|
|
|
|
|
|
state = self.get_success(
|
|
|
|
self.presence_handler.get_state(UserID.from_string(user_id))
|
|
|
|
)
|
|
|
|
self.assertEqual(state.state, PresenceState.ONLINE)
|
|
|
|
|
|
|
|
# Check that if the external process timeout fires, then the syncing
|
|
|
|
# user gets timed out
|
|
|
|
self.reactor.advance(EXTERNAL_PROCESS_EXPIRY)
|
|
|
|
|
|
|
|
state = self.get_success(
|
|
|
|
self.presence_handler.get_state(UserID.from_string(user_id))
|
|
|
|
)
|
|
|
|
self.assertEqual(state.state, PresenceState.OFFLINE)
|
|
|
|
|
|
|
|
|
2021-04-20 09:11:24 -04:00
|
|
|
class PresenceFederationQueueTestCase(unittest.HomeserverTestCase):
|
|
|
|
def prepare(self, reactor, clock, hs):
|
|
|
|
self.presence_handler = hs.get_presence_handler()
|
|
|
|
self.clock = hs.get_clock()
|
|
|
|
self.instance_name = hs.get_instance_name()
|
|
|
|
|
|
|
|
self.queue = self.presence_handler.get_federation_queue()
|
|
|
|
|
|
|
|
def test_send_and_get(self):
|
|
|
|
state1 = UserPresenceState.default("@user1:test")
|
|
|
|
state2 = UserPresenceState.default("@user2:test")
|
|
|
|
state3 = UserPresenceState.default("@user3:test")
|
|
|
|
|
|
|
|
prev_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
self.queue.send_presence_to_destinations((state1, state2), ("dest1", "dest2"))
|
|
|
|
self.queue.send_presence_to_destinations((state3,), ("dest3",))
|
|
|
|
|
|
|
|
now_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
rows, upto_token, limited = self.get_success(
|
|
|
|
self.queue.get_replication_rows("master", prev_token, now_token, 10)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertEqual(upto_token, now_token)
|
|
|
|
self.assertFalse(limited)
|
|
|
|
|
|
|
|
expected_rows = [
|
|
|
|
(1, ("dest1", "@user1:test")),
|
|
|
|
(1, ("dest2", "@user1:test")),
|
|
|
|
(1, ("dest1", "@user2:test")),
|
|
|
|
(1, ("dest2", "@user2:test")),
|
|
|
|
(2, ("dest3", "@user3:test")),
|
|
|
|
]
|
|
|
|
|
|
|
|
self.assertCountEqual(rows, expected_rows)
|
|
|
|
|
2021-04-28 09:42:50 -04:00
|
|
|
now_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
rows, upto_token, limited = self.get_success(
|
|
|
|
self.queue.get_replication_rows("master", upto_token, now_token, 10)
|
|
|
|
)
|
|
|
|
self.assertEqual(upto_token, now_token)
|
|
|
|
self.assertFalse(limited)
|
|
|
|
self.assertCountEqual(rows, [])
|
|
|
|
|
2021-04-20 09:11:24 -04:00
|
|
|
def test_send_and_get_split(self):
|
|
|
|
state1 = UserPresenceState.default("@user1:test")
|
|
|
|
state2 = UserPresenceState.default("@user2:test")
|
|
|
|
state3 = UserPresenceState.default("@user3:test")
|
|
|
|
|
|
|
|
prev_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
self.queue.send_presence_to_destinations((state1, state2), ("dest1", "dest2"))
|
|
|
|
|
|
|
|
now_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
self.queue.send_presence_to_destinations((state3,), ("dest3",))
|
|
|
|
|
|
|
|
rows, upto_token, limited = self.get_success(
|
|
|
|
self.queue.get_replication_rows("master", prev_token, now_token, 10)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertEqual(upto_token, now_token)
|
|
|
|
self.assertFalse(limited)
|
|
|
|
|
|
|
|
expected_rows = [
|
|
|
|
(1, ("dest1", "@user1:test")),
|
|
|
|
(1, ("dest2", "@user1:test")),
|
|
|
|
(1, ("dest1", "@user2:test")),
|
|
|
|
(1, ("dest2", "@user2:test")),
|
|
|
|
]
|
|
|
|
|
|
|
|
self.assertCountEqual(rows, expected_rows)
|
|
|
|
|
2021-04-28 09:42:50 -04:00
|
|
|
now_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
rows, upto_token, limited = self.get_success(
|
|
|
|
self.queue.get_replication_rows("master", upto_token, now_token, 10)
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertEqual(upto_token, now_token)
|
|
|
|
self.assertFalse(limited)
|
|
|
|
|
|
|
|
expected_rows = [
|
|
|
|
(2, ("dest3", "@user3:test")),
|
|
|
|
]
|
|
|
|
|
|
|
|
self.assertCountEqual(rows, expected_rows)
|
|
|
|
|
2021-04-20 09:11:24 -04:00
|
|
|
def test_clear_queue_all(self):
|
|
|
|
state1 = UserPresenceState.default("@user1:test")
|
|
|
|
state2 = UserPresenceState.default("@user2:test")
|
|
|
|
state3 = UserPresenceState.default("@user3:test")
|
|
|
|
|
|
|
|
prev_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
self.queue.send_presence_to_destinations((state1, state2), ("dest1", "dest2"))
|
|
|
|
self.queue.send_presence_to_destinations((state3,), ("dest3",))
|
|
|
|
|
|
|
|
self.reactor.advance(10 * 60 * 1000)
|
|
|
|
|
|
|
|
now_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
rows, upto_token, limited = self.get_success(
|
|
|
|
self.queue.get_replication_rows("master", prev_token, now_token, 10)
|
|
|
|
)
|
|
|
|
self.assertEqual(upto_token, now_token)
|
|
|
|
self.assertFalse(limited)
|
|
|
|
self.assertCountEqual(rows, [])
|
|
|
|
|
|
|
|
prev_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
self.queue.send_presence_to_destinations((state1, state2), ("dest1", "dest2"))
|
|
|
|
self.queue.send_presence_to_destinations((state3,), ("dest3",))
|
|
|
|
|
|
|
|
now_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
rows, upto_token, limited = self.get_success(
|
|
|
|
self.queue.get_replication_rows("master", prev_token, now_token, 10)
|
|
|
|
)
|
|
|
|
self.assertEqual(upto_token, now_token)
|
|
|
|
self.assertFalse(limited)
|
|
|
|
|
|
|
|
expected_rows = [
|
|
|
|
(3, ("dest1", "@user1:test")),
|
|
|
|
(3, ("dest2", "@user1:test")),
|
|
|
|
(3, ("dest1", "@user2:test")),
|
|
|
|
(3, ("dest2", "@user2:test")),
|
|
|
|
(4, ("dest3", "@user3:test")),
|
|
|
|
]
|
|
|
|
|
|
|
|
self.assertCountEqual(rows, expected_rows)
|
|
|
|
|
|
|
|
def test_partially_clear_queue(self):
|
|
|
|
state1 = UserPresenceState.default("@user1:test")
|
|
|
|
state2 = UserPresenceState.default("@user2:test")
|
|
|
|
state3 = UserPresenceState.default("@user3:test")
|
|
|
|
|
|
|
|
prev_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
self.queue.send_presence_to_destinations((state1, state2), ("dest1", "dest2"))
|
|
|
|
|
|
|
|
self.reactor.advance(2 * 60 * 1000)
|
|
|
|
|
|
|
|
self.queue.send_presence_to_destinations((state3,), ("dest3",))
|
|
|
|
|
|
|
|
self.reactor.advance(4 * 60 * 1000)
|
|
|
|
|
|
|
|
now_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
rows, upto_token, limited = self.get_success(
|
|
|
|
self.queue.get_replication_rows("master", prev_token, now_token, 10)
|
|
|
|
)
|
|
|
|
self.assertEqual(upto_token, now_token)
|
|
|
|
self.assertFalse(limited)
|
|
|
|
|
|
|
|
expected_rows = [
|
|
|
|
(2, ("dest3", "@user3:test")),
|
|
|
|
]
|
|
|
|
self.assertCountEqual(rows, [])
|
|
|
|
|
|
|
|
prev_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
self.queue.send_presence_to_destinations((state1, state2), ("dest1", "dest2"))
|
|
|
|
self.queue.send_presence_to_destinations((state3,), ("dest3",))
|
|
|
|
|
|
|
|
now_token = self.queue.get_current_token(self.instance_name)
|
|
|
|
|
|
|
|
rows, upto_token, limited = self.get_success(
|
|
|
|
self.queue.get_replication_rows("master", prev_token, now_token, 10)
|
|
|
|
)
|
|
|
|
self.assertEqual(upto_token, now_token)
|
|
|
|
self.assertFalse(limited)
|
|
|
|
|
|
|
|
expected_rows = [
|
|
|
|
(3, ("dest1", "@user1:test")),
|
|
|
|
(3, ("dest2", "@user1:test")),
|
|
|
|
(3, ("dest1", "@user2:test")),
|
|
|
|
(3, ("dest2", "@user2:test")),
|
|
|
|
(4, ("dest3", "@user3:test")),
|
|
|
|
]
|
|
|
|
|
|
|
|
self.assertCountEqual(rows, expected_rows)
|
|
|
|
|
|
|
|
|
2019-03-27 08:26:28 -04:00
|
|
|
class PresenceJoinTestCase(unittest.HomeserverTestCase):
|
|
|
|
"""Tests remote servers get told about presence of users in the room when
|
|
|
|
they join and when new local users join.
|
|
|
|
"""
|
|
|
|
|
|
|
|
user_id = "@test:server"
|
|
|
|
|
|
|
|
servlets = [room.register_servlets]
|
|
|
|
|
|
|
|
def make_homeserver(self, reactor, clock):
|
|
|
|
hs = self.setup_test_homeserver(
|
2021-04-20 09:11:24 -04:00
|
|
|
"server",
|
|
|
|
federation_http_client=None,
|
|
|
|
federation_sender=Mock(spec=FederationSender),
|
2019-03-27 08:26:28 -04:00
|
|
|
)
|
|
|
|
return hs
|
|
|
|
|
2021-04-20 09:11:24 -04:00
|
|
|
def default_config(self):
|
|
|
|
config = super().default_config()
|
|
|
|
config["send_federation"] = True
|
|
|
|
return config
|
|
|
|
|
2019-03-27 08:26:28 -04:00
|
|
|
def prepare(self, reactor, clock, hs):
|
|
|
|
self.federation_sender = hs.get_federation_sender()
|
|
|
|
self.event_builder_factory = hs.get_event_builder_factory()
|
2020-10-09 07:24:34 -04:00
|
|
|
self.federation_handler = hs.get_federation_handler()
|
2019-03-27 08:26:28 -04:00
|
|
|
self.presence_handler = hs.get_presence_handler()
|
|
|
|
|
|
|
|
# self.event_builder_for_2 = EventBuilderFactory(hs)
|
|
|
|
# self.event_builder_for_2.hostname = "test2"
|
|
|
|
|
|
|
|
self.store = hs.get_datastore()
|
|
|
|
self.state = hs.get_state_handler()
|
|
|
|
self.auth = hs.get_auth()
|
|
|
|
|
|
|
|
# We don't actually check signatures in tests, so lets just create a
|
|
|
|
# random key to use.
|
|
|
|
self.random_signing_key = generate_signing_key("ver")
|
|
|
|
|
|
|
|
def test_remote_joins(self):
|
|
|
|
# We advance time to something that isn't 0, as we use 0 as a special
|
|
|
|
# value.
|
|
|
|
self.reactor.advance(1000000000000)
|
|
|
|
|
|
|
|
# Create a room with two local users
|
|
|
|
room_id = self.helper.create_room_as(self.user_id)
|
|
|
|
self.helper.join(room_id, "@test2:server")
|
|
|
|
|
|
|
|
# Mark test2 as online, test will be offline with a last_active of 0
|
2020-02-26 10:33:26 -05:00
|
|
|
self.get_success(
|
|
|
|
self.presence_handler.set_state(
|
|
|
|
UserID.from_string("@test2:server"), {"presence": PresenceState.ONLINE}
|
|
|
|
)
|
2019-03-27 08:26:28 -04:00
|
|
|
)
|
|
|
|
self.reactor.pump([0]) # Wait for presence updates to be handled
|
|
|
|
|
2019-03-28 09:48:41 -04:00
|
|
|
#
|
|
|
|
# Test that a new server gets told about existing presence
|
|
|
|
#
|
2019-03-27 08:26:28 -04:00
|
|
|
|
|
|
|
self.federation_sender.reset_mock()
|
|
|
|
|
|
|
|
# Add a new remote server to the room
|
|
|
|
self._add_new_user(room_id, "@alice:server2")
|
|
|
|
|
|
|
|
# When new server is joined we send it the local users presence states.
|
|
|
|
# We expect to only see user @test2:server, as @test:server is offline
|
|
|
|
# and has a zero last_active_ts
|
|
|
|
expected_state = self.get_success(
|
|
|
|
self.presence_handler.current_state_for_user("@test2:server")
|
|
|
|
)
|
|
|
|
self.assertEqual(expected_state.state, PresenceState.ONLINE)
|
|
|
|
self.federation_sender.send_presence_to_destinations.assert_called_once_with(
|
Be smarter about which hosts to send presence to when processing room joins (#9402)
This PR attempts to eliminate unnecessary presence sending work when your local server joins a room, or when a remote server joins a room your server is participating in by processing state deltas in chunks rather than individually.
---
When your server joins a room for the first time, it requests the historical state as well. This chunk of new state is passed to the presence handler which, after filtering that state down to only membership joins, will send presence updates to homeservers for each join processed.
It turns out that we were being a bit naive and processing each event individually, and sending out presence updates for every one of those joins. Even if many different joins were users on the same server (hello IRC bridges), we'd send presence to that same homeserver for every remote user join we saw.
This PR attempts to deduplicate all of that by processing the entire batch of state deltas at once, instead of only doing each join individually. We process the joins and note down which servers need which presence:
* If it was a local user join, send that user's latest presence to all servers in the room
* If it was a remote user join, send the presence for all local users in the room to that homeserver
We deduplicate by inserting all of those pending updates into a dictionary of the form:
```
{
server_name1: {presence_update1, ...},
server_name2: {presence_update1, presence_update2, ...}
}
```
Only after building this dict do we then start sending out presence updates.
2021-02-19 06:37:29 -05:00
|
|
|
destinations=["server2"], states={expected_state}
|
2019-03-27 08:26:28 -04:00
|
|
|
)
|
|
|
|
|
2019-03-28 09:48:41 -04:00
|
|
|
#
|
|
|
|
# Test that only the new server gets sent presence and not existing servers
|
|
|
|
#
|
2019-03-27 08:26:28 -04:00
|
|
|
|
|
|
|
self.federation_sender.reset_mock()
|
|
|
|
self._add_new_user(room_id, "@bob:server3")
|
|
|
|
|
|
|
|
self.federation_sender.send_presence_to_destinations.assert_called_once_with(
|
Be smarter about which hosts to send presence to when processing room joins (#9402)
This PR attempts to eliminate unnecessary presence sending work when your local server joins a room, or when a remote server joins a room your server is participating in by processing state deltas in chunks rather than individually.
---
When your server joins a room for the first time, it requests the historical state as well. This chunk of new state is passed to the presence handler which, after filtering that state down to only membership joins, will send presence updates to homeservers for each join processed.
It turns out that we were being a bit naive and processing each event individually, and sending out presence updates for every one of those joins. Even if many different joins were users on the same server (hello IRC bridges), we'd send presence to that same homeserver for every remote user join we saw.
This PR attempts to deduplicate all of that by processing the entire batch of state deltas at once, instead of only doing each join individually. We process the joins and note down which servers need which presence:
* If it was a local user join, send that user's latest presence to all servers in the room
* If it was a remote user join, send the presence for all local users in the room to that homeserver
We deduplicate by inserting all of those pending updates into a dictionary of the form:
```
{
server_name1: {presence_update1, ...},
server_name2: {presence_update1, presence_update2, ...}
}
```
Only after building this dict do we then start sending out presence updates.
2021-02-19 06:37:29 -05:00
|
|
|
destinations=["server3"], states={expected_state}
|
2019-03-27 08:26:28 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
def test_remote_gets_presence_when_local_user_joins(self):
|
|
|
|
# We advance time to something that isn't 0, as we use 0 as a special
|
|
|
|
# value.
|
|
|
|
self.reactor.advance(1000000000000)
|
|
|
|
|
|
|
|
# Create a room with one local users
|
|
|
|
room_id = self.helper.create_room_as(self.user_id)
|
|
|
|
|
|
|
|
# Mark test as online
|
2020-02-26 10:33:26 -05:00
|
|
|
self.get_success(
|
|
|
|
self.presence_handler.set_state(
|
|
|
|
UserID.from_string("@test:server"), {"presence": PresenceState.ONLINE}
|
|
|
|
)
|
2019-03-27 08:26:28 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Mark test2 as online, test will be offline with a last_active of 0.
|
|
|
|
# Note we don't join them to the room yet
|
2020-02-26 10:33:26 -05:00
|
|
|
self.get_success(
|
|
|
|
self.presence_handler.set_state(
|
|
|
|
UserID.from_string("@test2:server"), {"presence": PresenceState.ONLINE}
|
|
|
|
)
|
2019-03-27 08:26:28 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Add servers to the room
|
|
|
|
self._add_new_user(room_id, "@alice:server2")
|
|
|
|
self._add_new_user(room_id, "@bob:server3")
|
|
|
|
|
|
|
|
self.reactor.pump([0]) # Wait for presence updates to be handled
|
|
|
|
|
2019-03-28 09:48:41 -04:00
|
|
|
#
|
|
|
|
# Test that when a local join happens remote servers get told about it
|
|
|
|
#
|
2019-03-27 08:26:28 -04:00
|
|
|
|
|
|
|
self.federation_sender.reset_mock()
|
|
|
|
|
|
|
|
# Join local user to room
|
|
|
|
self.helper.join(room_id, "@test2:server")
|
|
|
|
|
|
|
|
self.reactor.pump([0]) # Wait for presence updates to be handled
|
|
|
|
|
|
|
|
# We expect to only send test2 presence to server2 and server3
|
|
|
|
expected_state = self.get_success(
|
|
|
|
self.presence_handler.current_state_for_user("@test2:server")
|
|
|
|
)
|
|
|
|
self.assertEqual(expected_state.state, PresenceState.ONLINE)
|
Be smarter about which hosts to send presence to when processing room joins (#9402)
This PR attempts to eliminate unnecessary presence sending work when your local server joins a room, or when a remote server joins a room your server is participating in by processing state deltas in chunks rather than individually.
---
When your server joins a room for the first time, it requests the historical state as well. This chunk of new state is passed to the presence handler which, after filtering that state down to only membership joins, will send presence updates to homeservers for each join processed.
It turns out that we were being a bit naive and processing each event individually, and sending out presence updates for every one of those joins. Even if many different joins were users on the same server (hello IRC bridges), we'd send presence to that same homeserver for every remote user join we saw.
This PR attempts to deduplicate all of that by processing the entire batch of state deltas at once, instead of only doing each join individually. We process the joins and note down which servers need which presence:
* If it was a local user join, send that user's latest presence to all servers in the room
* If it was a remote user join, send the presence for all local users in the room to that homeserver
We deduplicate by inserting all of those pending updates into a dictionary of the form:
```
{
server_name1: {presence_update1, ...},
server_name2: {presence_update1, presence_update2, ...}
}
```
Only after building this dict do we then start sending out presence updates.
2021-02-19 06:37:29 -05:00
|
|
|
self.assertEqual(
|
|
|
|
self.federation_sender.send_presence_to_destinations.call_count, 2
|
|
|
|
)
|
|
|
|
self.federation_sender.send_presence_to_destinations.assert_any_call(
|
|
|
|
destinations=["server3"], states={expected_state}
|
|
|
|
)
|
|
|
|
self.federation_sender.send_presence_to_destinations.assert_any_call(
|
|
|
|
destinations=["server2"], states={expected_state}
|
2019-03-27 08:26:28 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
def _add_new_user(self, room_id, user_id):
|
|
|
|
"""Add new user to the room by creating an event and poking the federation API."""
|
|
|
|
|
|
|
|
hostname = get_domain_from_id(user_id)
|
|
|
|
|
2020-01-31 05:06:21 -05:00
|
|
|
room_version = self.get_success(self.store.get_room_version_id(room_id))
|
2019-03-27 08:26:28 -04:00
|
|
|
|
|
|
|
builder = EventBuilder(
|
|
|
|
state=self.state,
|
|
|
|
auth=self.auth,
|
|
|
|
store=self.store,
|
|
|
|
clock=self.clock,
|
|
|
|
hostname=hostname,
|
|
|
|
signing_key=self.random_signing_key,
|
2020-01-29 12:55:48 -05:00
|
|
|
room_version=KNOWN_ROOM_VERSIONS[room_version],
|
2019-03-27 08:26:28 -04:00
|
|
|
room_id=room_id,
|
|
|
|
type=EventTypes.Member,
|
|
|
|
sender=user_id,
|
|
|
|
state_key=user_id,
|
2019-05-10 01:12:11 -04:00
|
|
|
content={"membership": Membership.JOIN},
|
2019-03-27 08:26:28 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
prev_event_ids = self.get_success(
|
|
|
|
self.store.get_latest_event_ids_in_room(room_id)
|
|
|
|
)
|
|
|
|
|
2020-10-13 18:14:35 -04:00
|
|
|
event = self.get_success(builder.build(prev_event_ids, None))
|
2019-03-27 08:26:28 -04:00
|
|
|
|
|
|
|
self.get_success(self.federation_handler.on_receive_pdu(hostname, event))
|
|
|
|
|
|
|
|
# Check that it was successfully persisted.
|
|
|
|
self.get_success(self.store.get_event(event.event_id))
|
|
|
|
self.get_success(self.store.get_event(event.event_id))
|