2020-08-07 09:21:24 -04:00
|
|
|
#
|
2023-11-21 15:29:58 -05:00
|
|
|
# This file is licensed under the Affero General Public License (AGPL) version 3.
|
|
|
|
#
|
2024-01-23 06:26:48 -05:00
|
|
|
# Copyright 2020 The Matrix.org Foundation C.I.C.
|
2023-11-21 15:29:58 -05:00
|
|
|
# Copyright (C) 2023 New Vector, Ltd
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as
|
|
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
|
|
# License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# See the GNU Affero General Public License for more details:
|
|
|
|
# <https://www.gnu.org/licenses/agpl-3.0.html>.
|
|
|
|
#
|
|
|
|
# Originally licensed under the Apache License, Version 2.0:
|
|
|
|
# <http://www.apache.org/licenses/LICENSE-2.0>.
|
|
|
|
#
|
|
|
|
# [This file includes modifications made by New Vector Limited]
|
2020-08-07 09:21:24 -04:00
|
|
|
#
|
|
|
|
#
|
|
|
|
from synapse.rest.health import HealthResource
|
|
|
|
|
|
|
|
from tests import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class HealthCheckTests(unittest.HomeserverTestCase):
|
2022-03-03 11:05:44 -05:00
|
|
|
def create_test_resource(self) -> HealthResource:
|
2020-08-07 09:21:24 -04:00
|
|
|
# replace the JsonResource with a HealthResource.
|
2020-11-16 09:45:52 -05:00
|
|
|
return HealthResource()
|
2020-08-07 09:21:24 -04:00
|
|
|
|
2022-03-03 11:05:44 -05:00
|
|
|
def test_health(self) -> None:
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request("GET", "/health", shorthand=False)
|
2020-08-07 09:21:24 -04:00
|
|
|
|
2022-08-05 10:59:09 -04:00
|
|
|
self.assertEqual(channel.code, 200)
|
2020-08-07 09:21:24 -04:00
|
|
|
self.assertEqual(channel.result["body"], b"OK")
|