summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-10-19 17:06:32 +0100
committerAndrew Morgan <andrew@amorgan.xyz>2020-10-19 17:06:32 +0100
commit9dd3b52f1b24de6ae599197e86ba7f6f4d466413 (patch)
treeb891dcb01bb1bf763fa5b555e46d620ac581b3fa /tests
parentMerge commit '4dd27e6d1' into anoa/dinsic_release_1_21_x (diff)
parentAdd health check endpoint (#8048) (diff)
downloadsynapse-9dd3b52f1b24de6ae599197e86ba7f6f4d466413.tar.xz
Merge commit '7620912d8' into anoa/dinsic_release_1_21_x
* commit '7620912d8':
  Add health check endpoint (#8048)
Diffstat (limited to 'tests')
-rw-r--r--tests/rest/test_health.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/rest/test_health.py b/tests/rest/test_health.py
new file mode 100644

index 0000000000..2d021f6565 --- /dev/null +++ b/tests/rest/test_health.py
@@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- +# Copyright 2020 The Matrix.org Foundation C.I.C. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + + +from synapse.rest.health import HealthResource + +from tests import unittest + + +class HealthCheckTests(unittest.HomeserverTestCase): + def setUp(self): + super().setUp() + + # replace the JsonResource with a HealthResource. + self.resource = HealthResource() + + def test_health(self): + request, channel = self.make_request("GET", "/health", shorthand=False) + self.render(request) + + self.assertEqual(request.code, 200) + self.assertEqual(channel.result["body"], b"OK")