mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-27 20:35:21 -04:00
Type hints for tests.appservice (#14990)
* Accept a Sequence of events in synapse.appservice This avoids some casts/ignores in the tests I'm about to fixup. It seems that `List[Mock]` is not a subtype of `List[EventBase]`, but `Sequence[Mock]` is a subtype of `Sequence[EventBase]`. So presumably `Mock` is considered a subtype of anything, much like `Any`. * make tests.appservice.test_scheduler pass mypy * Extra hints in tests.appservice.test_scheduler * Extra hints in tests.appservice.test_api * Extra hints in tests.appservice.test_appservice * Disallow untyped defs * Changelog
This commit is contained in:
parent
3e37ff1a7e
commit
e8269ed391
9 changed files with 132 additions and 59 deletions
|
@ -12,6 +12,7 @@
|
|||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
import re
|
||||
from typing import Generator
|
||||
from unittest.mock import Mock
|
||||
|
||||
from twisted.internet import defer
|
||||
|
@ -27,7 +28,7 @@ def _regex(regex: str, exclusive: bool = True) -> Namespace:
|
|||
|
||||
|
||||
class ApplicationServiceTestCase(unittest.TestCase):
|
||||
def setUp(self):
|
||||
def setUp(self) -> None:
|
||||
self.service = ApplicationService(
|
||||
id="unique_identifier",
|
||||
sender="@as:test",
|
||||
|
@ -46,7 +47,9 @@ class ApplicationServiceTestCase(unittest.TestCase):
|
|||
self.store.get_local_users_in_room = simple_async_mock([])
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def test_regex_user_id_prefix_match(self):
|
||||
def test_regex_user_id_prefix_match(
|
||||
self,
|
||||
) -> Generator["defer.Deferred[object]", object, None]:
|
||||
self.service.namespaces[ApplicationService.NS_USERS].append(_regex("@irc_.*"))
|
||||
self.event.sender = "@irc_foobar:matrix.org"
|
||||
self.assertTrue(
|
||||
|
@ -60,7 +63,9 @@ class ApplicationServiceTestCase(unittest.TestCase):
|
|||
)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def test_regex_user_id_prefix_no_match(self):
|
||||
def test_regex_user_id_prefix_no_match(
|
||||
self,
|
||||
) -> Generator["defer.Deferred[object]", object, None]:
|
||||
self.service.namespaces[ApplicationService.NS_USERS].append(_regex("@irc_.*"))
|
||||
self.event.sender = "@someone_else:matrix.org"
|
||||
self.assertFalse(
|
||||
|
@ -74,7 +79,9 @@ class ApplicationServiceTestCase(unittest.TestCase):
|
|||
)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def test_regex_room_member_is_checked(self):
|
||||
def test_regex_room_member_is_checked(
|
||||
self,
|
||||
) -> Generator["defer.Deferred[object]", object, None]:
|
||||
self.service.namespaces[ApplicationService.NS_USERS].append(_regex("@irc_.*"))
|
||||
self.event.sender = "@someone_else:matrix.org"
|
||||
self.event.type = "m.room.member"
|
||||
|
@ -90,7 +97,9 @@ class ApplicationServiceTestCase(unittest.TestCase):
|
|||
)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def test_regex_room_id_match(self):
|
||||
def test_regex_room_id_match(
|
||||
self,
|
||||
) -> Generator["defer.Deferred[object]", object, None]:
|
||||
self.service.namespaces[ApplicationService.NS_ROOMS].append(
|
||||
_regex("!some_prefix.*some_suffix:matrix.org")
|
||||
)
|
||||
|
@ -106,7 +115,9 @@ class ApplicationServiceTestCase(unittest.TestCase):
|
|||
)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def test_regex_room_id_no_match(self):
|
||||
def test_regex_room_id_no_match(
|
||||
self,
|
||||
) -> Generator["defer.Deferred[object]", object, None]:
|
||||
self.service.namespaces[ApplicationService.NS_ROOMS].append(
|
||||
_regex("!some_prefix.*some_suffix:matrix.org")
|
||||
)
|
||||
|
@ -122,7 +133,9 @@ class ApplicationServiceTestCase(unittest.TestCase):
|
|||
)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def test_regex_alias_match(self):
|
||||
def test_regex_alias_match(
|
||||
self,
|
||||
) -> Generator["defer.Deferred[object]", object, None]:
|
||||
self.service.namespaces[ApplicationService.NS_ALIASES].append(
|
||||
_regex("#irc_.*:matrix.org")
|
||||
)
|
||||
|
@ -140,44 +153,46 @@ class ApplicationServiceTestCase(unittest.TestCase):
|
|||
)
|
||||
)
|
||||
|
||||
def test_non_exclusive_alias(self):
|
||||
def test_non_exclusive_alias(self) -> None:
|
||||
self.service.namespaces[ApplicationService.NS_ALIASES].append(
|
||||
_regex("#irc_.*:matrix.org", exclusive=False)
|
||||
)
|
||||
self.assertFalse(self.service.is_exclusive_alias("#irc_foobar:matrix.org"))
|
||||
|
||||
def test_non_exclusive_room(self):
|
||||
def test_non_exclusive_room(self) -> None:
|
||||
self.service.namespaces[ApplicationService.NS_ROOMS].append(
|
||||
_regex("!irc_.*:matrix.org", exclusive=False)
|
||||
)
|
||||
self.assertFalse(self.service.is_exclusive_room("!irc_foobar:matrix.org"))
|
||||
|
||||
def test_non_exclusive_user(self):
|
||||
def test_non_exclusive_user(self) -> None:
|
||||
self.service.namespaces[ApplicationService.NS_USERS].append(
|
||||
_regex("@irc_.*:matrix.org", exclusive=False)
|
||||
)
|
||||
self.assertFalse(self.service.is_exclusive_user("@irc_foobar:matrix.org"))
|
||||
|
||||
def test_exclusive_alias(self):
|
||||
def test_exclusive_alias(self) -> None:
|
||||
self.service.namespaces[ApplicationService.NS_ALIASES].append(
|
||||
_regex("#irc_.*:matrix.org", exclusive=True)
|
||||
)
|
||||
self.assertTrue(self.service.is_exclusive_alias("#irc_foobar:matrix.org"))
|
||||
|
||||
def test_exclusive_user(self):
|
||||
def test_exclusive_user(self) -> None:
|
||||
self.service.namespaces[ApplicationService.NS_USERS].append(
|
||||
_regex("@irc_.*:matrix.org", exclusive=True)
|
||||
)
|
||||
self.assertTrue(self.service.is_exclusive_user("@irc_foobar:matrix.org"))
|
||||
|
||||
def test_exclusive_room(self):
|
||||
def test_exclusive_room(self) -> None:
|
||||
self.service.namespaces[ApplicationService.NS_ROOMS].append(
|
||||
_regex("!irc_.*:matrix.org", exclusive=True)
|
||||
)
|
||||
self.assertTrue(self.service.is_exclusive_room("!irc_foobar:matrix.org"))
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def test_regex_alias_no_match(self):
|
||||
def test_regex_alias_no_match(
|
||||
self,
|
||||
) -> Generator["defer.Deferred[object]", object, None]:
|
||||
self.service.namespaces[ApplicationService.NS_ALIASES].append(
|
||||
_regex("#irc_.*:matrix.org")
|
||||
)
|
||||
|
@ -196,7 +211,9 @@ class ApplicationServiceTestCase(unittest.TestCase):
|
|||
)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def test_regex_multiple_matches(self):
|
||||
def test_regex_multiple_matches(
|
||||
self,
|
||||
) -> Generator["defer.Deferred[object]", object, None]:
|
||||
self.service.namespaces[ApplicationService.NS_ALIASES].append(
|
||||
_regex("#irc_.*:matrix.org")
|
||||
)
|
||||
|
@ -215,7 +232,9 @@ class ApplicationServiceTestCase(unittest.TestCase):
|
|||
)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def test_interested_in_self(self):
|
||||
def test_interested_in_self(
|
||||
self,
|
||||
) -> Generator["defer.Deferred[object]", object, None]:
|
||||
# make sure invites get through
|
||||
self.service.sender = "@appservice:name"
|
||||
self.service.namespaces[ApplicationService.NS_USERS].append(_regex("@irc_.*"))
|
||||
|
@ -233,7 +252,9 @@ class ApplicationServiceTestCase(unittest.TestCase):
|
|||
)
|
||||
|
||||
@defer.inlineCallbacks
|
||||
def test_member_list_match(self):
|
||||
def test_member_list_match(
|
||||
self,
|
||||
) -> Generator["defer.Deferred[object]", object, None]:
|
||||
self.service.namespaces[ApplicationService.NS_USERS].append(_regex("@irc_.*"))
|
||||
# Note that @irc_fo:here is the AS user.
|
||||
self.store.get_local_users_in_room = simple_async_mock(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue