forked from MirrorHub/synapse
Convert async to normal tests in TestSSOHandler
(#15433)
* Convert async to normal tests in `TestSSOHandler` * newsfile
This commit is contained in:
parent
4af0aec54d
commit
de4390cd40
2 changed files with 5 additions and 4 deletions
1
changelog.d/15433.misc
Normal file
1
changelog.d/15433.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Convert async to normal tests in `TestSSOHandler`.
|
|
@ -35,7 +35,7 @@ class TestSSOHandler(unittest.HomeserverTestCase):
|
||||||
)
|
)
|
||||||
return hs
|
return hs
|
||||||
|
|
||||||
async def test_set_avatar(self) -> None:
|
def test_set_avatar(self) -> None:
|
||||||
"""Tests successfully setting the avatar of a newly created user"""
|
"""Tests successfully setting the avatar of a newly created user"""
|
||||||
handler = self.hs.get_sso_handler()
|
handler = self.hs.get_sso_handler()
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ class TestSSOHandler(unittest.HomeserverTestCase):
|
||||||
self.assertIsNot(profile["avatar_url"], None)
|
self.assertIsNot(profile["avatar_url"], None)
|
||||||
|
|
||||||
@unittest.override_config({"max_avatar_size": 1})
|
@unittest.override_config({"max_avatar_size": 1})
|
||||||
async def test_set_avatar_too_big_image(self) -> None:
|
def test_set_avatar_too_big_image(self) -> None:
|
||||||
"""Tests that saving an avatar fails when it is too big"""
|
"""Tests that saving an avatar fails when it is too big"""
|
||||||
handler = self.hs.get_sso_handler()
|
handler = self.hs.get_sso_handler()
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ class TestSSOHandler(unittest.HomeserverTestCase):
|
||||||
)
|
)
|
||||||
|
|
||||||
@unittest.override_config({"allowed_avatar_mimetypes": ["image/jpeg"]})
|
@unittest.override_config({"allowed_avatar_mimetypes": ["image/jpeg"]})
|
||||||
async def test_set_avatar_incorrect_mime_type(self) -> None:
|
def test_set_avatar_incorrect_mime_type(self) -> None:
|
||||||
"""Tests that saving an avatar fails when its mime type is not allowed"""
|
"""Tests that saving an avatar fails when its mime type is not allowed"""
|
||||||
handler = self.hs.get_sso_handler()
|
handler = self.hs.get_sso_handler()
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ class TestSSOHandler(unittest.HomeserverTestCase):
|
||||||
self.get_success(handler.set_avatar(user_id, "http://my.server/me.png"))
|
self.get_success(handler.set_avatar(user_id, "http://my.server/me.png"))
|
||||||
)
|
)
|
||||||
|
|
||||||
async def test_skip_saving_avatar_when_not_changed(self) -> None:
|
def test_skip_saving_avatar_when_not_changed(self) -> None:
|
||||||
"""Tests whether saving of avatar correctly skips if the avatar hasn't
|
"""Tests whether saving of avatar correctly skips if the avatar hasn't
|
||||||
changed"""
|
changed"""
|
||||||
handler = self.hs.get_sso_handler()
|
handler = self.hs.get_sso_handler()
|
||||||
|
|
Loading…
Reference in a new issue