test_types.py 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. # Copyright 2014-2016 OpenMarket Ltd
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. from synapse.api.errors import SynapseError
  15. from synapse.types import GroupID, RoomAlias, UserID, map_username_to_mxid_localpart
  16. from tests import unittest
  17. class UserIDTestCase(unittest.HomeserverTestCase):
  18. def test_parse(self):
  19. user = UserID.from_string("@1234abcd:test")
  20. self.assertEquals("1234abcd", user.localpart)
  21. self.assertEquals("test", user.domain)
  22. self.assertEquals(True, self.hs.is_mine(user))
  23. def test_pase_empty(self):
  24. with self.assertRaises(SynapseError):
  25. UserID.from_string("")
  26. def test_build(self):
  27. user = UserID("5678efgh", "my.domain")
  28. self.assertEquals(user.to_string(), "@5678efgh:my.domain")
  29. def test_compare(self):
  30. userA = UserID.from_string("@userA:my.domain")
  31. userAagain = UserID.from_string("@userA:my.domain")
  32. userB = UserID.from_string("@userB:my.domain")
  33. self.assertTrue(userA == userAagain)
  34. self.assertTrue(userA != userB)
  35. class RoomAliasTestCase(unittest.HomeserverTestCase):
  36. def test_parse(self):
  37. room = RoomAlias.from_string("#channel:test")
  38. self.assertEquals("channel", room.localpart)
  39. self.assertEquals("test", room.domain)
  40. self.assertEquals(True, self.hs.is_mine(room))
  41. def test_build(self):
  42. room = RoomAlias("channel", "my.domain")
  43. self.assertEquals(room.to_string(), "#channel:my.domain")
  44. def test_validate(self):
  45. id_string = "#test:domain,test"
  46. self.assertFalse(RoomAlias.is_valid(id_string))
  47. class GroupIDTestCase(unittest.TestCase):
  48. def test_parse(self):
  49. group_id = GroupID.from_string("+group/=_-.123:my.domain")
  50. self.assertEqual("group/=_-.123", group_id.localpart)
  51. self.assertEqual("my.domain", group_id.domain)
  52. def test_validate(self):
  53. bad_ids = ["$badsigil:domain", "+:empty"] + [
  54. "+group" + c + ":domain" for c in "A%?æ£"
  55. ]
  56. for id_string in bad_ids:
  57. try:
  58. GroupID.from_string(id_string)
  59. self.fail("Parsing '%s' should raise exception" % id_string)
  60. except SynapseError as exc:
  61. self.assertEqual(400, exc.code)
  62. self.assertEqual("M_INVALID_PARAM", exc.errcode)
  63. class MapUsernameTestCase(unittest.TestCase):
  64. def testPassThrough(self):
  65. self.assertEqual(map_username_to_mxid_localpart("test1234"), "test1234")
  66. def testUpperCase(self):
  67. self.assertEqual(map_username_to_mxid_localpart("tEST_1234"), "test_1234")
  68. self.assertEqual(
  69. map_username_to_mxid_localpart("tEST_1234", case_sensitive=True),
  70. "t_e_s_t__1234",
  71. )
  72. def testSymbols(self):
  73. self.assertEqual(
  74. map_username_to_mxid_localpart("test=$?_1234"), "test=3d=24=3f_1234"
  75. )
  76. def testLeadingUnderscore(self):
  77. self.assertEqual(map_username_to_mxid_localpart("_test_1234"), "=5ftest_1234")
  78. def testNonAscii(self):
  79. # this should work with either a unicode or a bytes
  80. self.assertEqual(map_username_to_mxid_localpart("têst"), "t=c3=aast")
  81. self.assertEqual(map_username_to_mxid_localpart("têst".encode()), "t=c3=aast")