test_well_known.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. def test_well_known(self):
  21. self.hs.config.public_baseurl = "https://tesths"
  22. self.hs.config.default_identity_server = "https://testis"
  23. channel = self.make_request(
  24. "GET", "/.well-known/matrix/client", shorthand=False
  25. )
  26. self.assertEqual(channel.code, 200)
  27. self.assertEqual(
  28. channel.json_body,
  29. {
  30. "m.homeserver": {"base_url": "https://tesths"},
  31. "m.identity_server": {"base_url": "https://testis"},
  32. },
  33. )
  34. def test_well_known_no_public_baseurl(self):
  35. self.hs.config.public_baseurl = None
  36. channel = self.make_request(
  37. "GET", "/.well-known/matrix/client", shorthand=False
  38. )
  39. self.assertEqual(channel.code, 404)