diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-11-06 05:53:44 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-06 05:53:44 +1100 |
commit | efdcbbe46bfe39f0dd3ef508bb08c37326892adc (patch) | |
tree | 79aa5f81a6c652e4b874b4083813d3928f82d21b /tests/unittest.py | |
parent | Add some tests for the HTTP pusher (#4149) (diff) | |
download | synapse-efdcbbe46bfe39f0dd3ef508bb08c37326892adc.tar.xz |
Tests for user consent resource (#4140)
Diffstat (limited to 'tests/unittest.py')
-rw-r--r-- | tests/unittest.py | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/unittest.py b/tests/unittest.py index 4d40bdb6a5..5e35c943d7 100644 --- a/tests/unittest.py +++ b/tests/unittest.py @@ -258,7 +258,13 @@ class HomeserverTestCase(TestCase): """ def make_request( - self, method, path, content=b"", access_token=None, request=SynapseRequest + self, + method, + path, + content=b"", + access_token=None, + request=SynapseRequest, + shorthand=True, ): """ Create a SynapseRequest at the path using the method and containing the @@ -270,6 +276,8 @@ class HomeserverTestCase(TestCase): escaped UTF-8 & spaces and such). content (bytes or dict): The body of the request. JSON-encoded, if a dict. + shorthand: Whether to try and be helpful and prefix the given URL + with the usual REST API path, if it doesn't contain it. Returns: A synapse.http.site.SynapseRequest. @@ -277,7 +285,7 @@ class HomeserverTestCase(TestCase): if isinstance(content, dict): content = json.dumps(content).encode('utf8') - return make_request(method, path, content, access_token, request) + return make_request(method, path, content, access_token, request, shorthand) def render(self, request): """ |