2014-08-12 22:32:18 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2023-11-21 15:29:58 -05:00
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2014-08-12 22:32:18 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2021-04-09 13:44:38 -04:00
|
|
|
from unittest.mock import Mock, patch
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
from synapse.util.distributor import Distributor
|
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from . import unittest
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
class DistributorTestCase(unittest.TestCase):
|
2023-02-08 14:52:37 -05:00
|
|
|
def setUp(self) -> None:
|
2014-08-12 10:10:52 -04:00
|
|
|
self.dist = Distributor()
|
|
|
|
|
2023-02-08 14:52:37 -05:00
|
|
|
def test_signal_dispatch(self) -> None:
|
2014-08-12 10:10:52 -04:00
|
|
|
self.dist.declare("alert")
|
|
|
|
|
|
|
|
observer = Mock()
|
|
|
|
self.dist.observe("alert", observer)
|
|
|
|
|
2018-07-18 10:33:13 -04:00
|
|
|
self.dist.fire("alert", 1, 2, 3)
|
2014-08-12 10:10:52 -04:00
|
|
|
observer.assert_called_with(1, 2, 3)
|
|
|
|
|
2023-02-08 14:52:37 -05:00
|
|
|
def test_signal_catch(self) -> None:
|
2014-08-12 10:10:52 -04:00
|
|
|
self.dist.declare("alarm")
|
|
|
|
|
2018-04-15 15:46:23 -04:00
|
|
|
observers = [Mock() for i in (1, 2)]
|
2014-08-12 10:10:52 -04:00
|
|
|
for o in observers:
|
|
|
|
self.dist.observe("alarm", o)
|
|
|
|
|
|
|
|
observers[0].side_effect = Exception("Awoogah!")
|
|
|
|
|
2018-08-10 09:54:09 -04:00
|
|
|
with patch("synapse.util.distributor.logger", spec=["warning"]) as mock_logger:
|
2018-07-18 10:33:13 -04:00
|
|
|
self.dist.fire("alarm", "Go")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-08-11 11:54:06 -04:00
|
|
|
observers[0].assert_called_once_with("Go")
|
|
|
|
observers[1].assert_called_once_with("Go")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(mock_logger.warning.call_count, 1)
|
2018-08-10 09:54:09 -04:00
|
|
|
self.assertIsInstance(mock_logger.warning.call_args[0][0], str)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2023-02-08 14:52:37 -05:00
|
|
|
def test_signal_prereg(self) -> None:
|
2014-08-12 10:10:52 -04:00
|
|
|
observer = Mock()
|
|
|
|
self.dist.observe("flare", observer)
|
|
|
|
|
|
|
|
self.dist.declare("flare")
|
2018-07-18 10:33:13 -04:00
|
|
|
self.dist.fire("flare", 4, 5)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
observer.assert_called_with(4, 5)
|
|
|
|
|
2023-02-08 14:52:37 -05:00
|
|
|
def test_signal_undeclared(self) -> None:
|
|
|
|
def code() -> None:
|
2014-08-12 10:10:52 -04:00
|
|
|
self.dist.fire("notification")
|
2018-08-10 09:54:09 -04:00
|
|
|
|
2014-09-02 10:26:09 -04:00
|
|
|
self.assertRaises(KeyError, code)
|