test_well_known.py 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Copyright 2018 New Vector
  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.rest.well_known import WellKnownResource
  15. from tests import unittest
  16. class WellKnownTests(unittest.HomeserverTestCase):
  17. def create_test_resource(self):
  18. # replace the JsonResource with a WellKnownResource
  19. return WellKnownResource(self.hs)
  20. @unittest.override_config(
  21. {
  22. "public_baseurl": "https://tesths",
  23. "default_identity_server": "https://testis",
  24. }
  25. )
  26. def test_well_known(self):
  27. channel = self.make_request(
  28. "GET", "/.well-known/matrix/client", shorthand=False
  29. )
  30. self.assertEqual(channel.code, 200)
  31. self.assertEqual(
  32. channel.json_body,
  33. {
  34. "m.homeserver": {"base_url": "https://tesths/"},
  35. "m.identity_server": {"base_url": "https://testis"},
  36. },
  37. )
  38. @unittest.override_config(
  39. {
  40. "public_baseurl": None,
  41. }
  42. )
  43. def test_well_known_no_public_baseurl(self):
  44. channel = self.make_request(
  45. "GET", "/.well-known/matrix/client", shorthand=False
  46. )
  47. self.assertEqual(channel.code, 404)