2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2018-07-18 10:33:13 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2014-08-12 22:32:18 -04:00
|
|
|
#
|
|
|
|
# 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, 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):
|
|
|
|
def setUp(self):
|
|
|
|
self.dist = Distributor()
|
|
|
|
|
|
|
|
def test_signal_dispatch(self):
|
|
|
|
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)
|
|
|
|
|
|
|
|
def test_signal_catch(self):
|
|
|
|
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
|
|
|
|
|
|
|
self.assertEquals(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
|
|
|
|
|
|
|
def test_signal_prereg(self):
|
|
|
|
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)
|
|
|
|
|
|
|
|
def test_signal_undeclared(self):
|
2014-09-02 10:26:09 -04:00
|
|
|
def code():
|
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)
|