summary refs log tree commit diff
path: root/tests/rest/client/v1/test_events.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-05-03 10:10:57 +0100
committerGitHub <noreply@github.com>2018-05-03 10:10:57 +0100
commit902673e356f0b731350e7d31dc8369fe25838718 (patch)
tree5a1aed0a205c26b62c716c229235406a968c674d /tests/rest/client/v1/test_events.py
parentMerge pull request #3175 from matrix-org/erikj/escape_metric_values (diff)
parentBurminate v1auth (diff)
downloadsynapse-902673e356f0b731350e7d31dc8369fe25838718.tar.xz
Merge pull request #3161 from NotAFile/remove-v1auth
Make Client-Server API return 403 for invalid token
Diffstat (limited to 'tests/rest/client/v1/test_events.py')
-rw-r--r--tests/rest/client/v1/test_events.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/rest/client/v1/test_events.py b/tests/rest/client/v1/test_events.py

index a8d09600bd..f5a7258e68 100644 --- a/tests/rest/client/v1/test_events.py +++ b/tests/rest/client/v1/test_events.py
@@ -148,11 +148,16 @@ class EventStreamPermissionsTestCase(RestTestCase): @defer.inlineCallbacks def test_stream_basic_permissions(self): - # invalid token, expect 403 + # invalid token, expect 401 + # note: this is in violation of the original v1 spec, which expected + # 403. However, since the v1 spec no longer exists and the v1 + # implementation is now part of the r0 implementation, the newer + # behaviour is used instead to be consistent with the r0 spec. + # see issue #2602 (code, response) = yield self.mock_resource.trigger_get( "/events?access_token=%s" % ("invalid" + self.token, ) ) - self.assertEquals(403, code, msg=str(response)) + self.assertEquals(401, code, msg=str(response)) # valid token, expect content (code, response) = yield self.mock_resource.trigger_get(