|
15 | 15 | from typing import Optional
|
16 | 16 | from unittest.mock import Mock, call
|
17 | 17 |
|
| 18 | +from parameterized import parameterized |
18 | 19 | from signedjson.key import generate_signing_key
|
19 | 20 |
|
20 | 21 | from synapse.api.constants import EventTypes, Membership, PresenceState
|
|
37 | 38 | from synapse.types import UserID, get_domain_from_id
|
38 | 39 |
|
39 | 40 | from tests import unittest
|
| 41 | +from tests.replication._base import BaseMultiWorkerStreamTestCase |
40 | 42 |
|
41 | 43 |
|
42 | 44 | class PresenceUpdateTestCase(unittest.HomeserverTestCase):
|
@@ -505,7 +507,7 @@ def test_last_active(self):
|
505 | 507 | self.assertEqual(state, new_state)
|
506 | 508 |
|
507 | 509 |
|
508 |
| -class PresenceHandlerTestCase(unittest.HomeserverTestCase): |
| 510 | +class PresenceHandlerTestCase(BaseMultiWorkerStreamTestCase): |
509 | 511 | def prepare(self, reactor, clock, hs):
|
510 | 512 | self.presence_handler = hs.get_presence_handler()
|
511 | 513 | self.clock = hs.get_clock()
|
@@ -716,20 +718,47 @@ def test_set_presence_from_syncing_keeps_status(self):
|
716 | 718 | # our status message should be the same as it was before
|
717 | 719 | self.assertEqual(state.status_msg, status_msg)
|
718 | 720 |
|
719 |
| - def test_set_presence_from_syncing_keeps_busy(self): |
720 |
| - """Test that presence set by syncing doesn't affect busy status""" |
721 |
| - # while this isn't the default |
722 |
| - self.presence_handler._busy_presence_enabled = True |
| 721 | + @parameterized.expand([(False,), (True,)]) |
| 722 | + @unittest.override_config( |
| 723 | + { |
| 724 | + "experimental_features": { |
| 725 | + "msc3026_enabled": True, |
| 726 | + }, |
| 727 | + } |
| 728 | + ) |
| 729 | + def test_set_presence_from_syncing_keeps_busy(self, test_with_workers: bool): |
| 730 | + """Test that presence set by syncing doesn't affect busy status |
723 | 731 |
|
| 732 | + Args: |
| 733 | + test_with_workers: If True, check the presence state of the user by calling |
| 734 | + /sync against a worker, rather than the main process. |
| 735 | + """ |
724 | 736 | user_id = "@test:server"
|
725 | 737 | status_msg = "I'm busy!"
|
726 | 738 |
|
| 739 | + # By default, we call /sync against the main process. |
| 740 | + worker_to_sync_against = self.hs |
| 741 | + if test_with_workers: |
| 742 | + # Create a worker and use it to handle /sync traffic instead. |
| 743 | + # This is used to test that presence changes get replicated from workers |
| 744 | + # to the main process correctly. |
| 745 | + worker_to_sync_against = self.make_worker_hs( |
| 746 | + "synapse.app.generic_worker", {"worker_name": "presence_writer"} |
| 747 | + ) |
| 748 | + |
| 749 | + # Set presence to BUSY |
727 | 750 | self._set_presencestate_with_status_msg(user_id, PresenceState.BUSY, status_msg)
|
728 | 751 |
|
| 752 | + # Perform a sync with a presence state other than busy. This should NOT change |
| 753 | + # our presence status; we only change from busy if we explicitly set it via |
| 754 | + # /presence/*. |
729 | 755 | self.get_success(
|
730 |
| - self.presence_handler.user_syncing(user_id, True, PresenceState.ONLINE) |
| 756 | + worker_to_sync_against.get_presence_handler().user_syncing( |
| 757 | + user_id, True, PresenceState.ONLINE |
| 758 | + ) |
731 | 759 | )
|
732 | 760 |
|
| 761 | + # Check against the main process that the user's presence did not change. |
733 | 762 | state = self.get_success(
|
734 | 763 | self.presence_handler.get_state(UserID.from_string(user_id))
|
735 | 764 | )
|
|
0 commit comments