summary refs log tree commit diff
path: root/tests/rest
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-11-14 11:32:43 +0000
committerGitHub <noreply@github.com>2018-11-14 11:32:43 +0000
commit4b60c969d82c22f78e04bafe75e25c480daeba5c (patch)
tree54f8f3a19adce91f75e3851b8d3192c1674e7971 /tests/rest
parentMerge pull request #4113 from matrix-org/dbkr/e2e_backup_versions_are_numbers (diff)
parentchangelog (diff)
downloadsynapse-4b60c969d82c22f78e04bafe75e25c480daeba5c.tar.xz
Merge pull request #4184 from matrix-org/rav/fix_public_consent
Fix an internal server error when viewing the public privacy policy
Diffstat (limited to 'tests/rest')
-rw-r--r--tests/rest/client/test_consent.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/rest/client/test_consent.py b/tests/rest/client/test_consent.py
index df3f1cde6e..4294bbec2a 100644
--- a/tests/rest/client/test_consent.py
+++ b/tests/rest/client/test_consent.py
@@ -60,6 +60,13 @@ class ConsentResourceTestCase(unittest.HomeserverTestCase):
         hs = self.setup_test_homeserver(config=config)
         return hs
 
+    def test_render_public_consent(self):
+        """You can observe the terms form without specifying a user"""
+        resource = consent_resource.ConsentResource(self.hs)
+        request, channel = self.make_request("GET", "/consent?v=1", shorthand=False)
+        render(request, resource, self.reactor)
+        self.assertEqual(channel.code, 200)
+
     def test_accept_consent(self):
         """
         A user can use the consent form to accept the terms.