2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 22:32:18 -04:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
""" Tests REST events for /events paths."""
|
2018-07-19 06:03:33 -04:00
|
|
|
|
2021-04-09 13:44:38 -04:00
|
|
|
from unittest.mock import Mock
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-05-01 10:32:38 -04:00
|
|
|
import synapse.rest.admin
|
2021-08-17 07:57:58 -04:00
|
|
|
from synapse.rest.client import events, login, room
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-12-29 07:12:30 -05:00
|
|
|
from tests import unittest
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2018-12-29 07:12:30 -05:00
|
|
|
class EventStreamPermissionsTestCase(unittest.HomeserverTestCase):
|
2021-06-17 10:20:06 -04:00
|
|
|
"""Tests event streaming (GET /events)."""
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2018-12-29 07:12:30 -05:00
|
|
|
servlets = [
|
|
|
|
events.register_servlets,
|
|
|
|
room.register_servlets,
|
2019-05-02 06:59:16 -04:00
|
|
|
synapse.rest.admin.register_servlets_for_client_rest_resource,
|
2018-12-29 07:12:30 -05:00
|
|
|
login.register_servlets,
|
|
|
|
]
|
2018-07-19 06:03:33 -04:00
|
|
|
|
2018-12-29 07:12:30 -05:00
|
|
|
def make_homeserver(self, reactor, clock):
|
2018-07-19 06:03:33 -04:00
|
|
|
|
2018-12-29 07:12:30 -05:00
|
|
|
config = self.default_config()
|
2019-05-13 16:01:14 -04:00
|
|
|
config["enable_registration_captcha"] = False
|
|
|
|
config["enable_registration"] = True
|
|
|
|
config["auto_join_rooms"] = []
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-06-05 05:47:20 -04:00
|
|
|
hs = self.setup_test_homeserver(config=config)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-10-09 07:24:34 -04:00
|
|
|
hs.get_federation_handler = Mock()
|
2014-08-26 14:49:42 -04:00
|
|
|
|
2018-12-29 07:12:30 -05:00
|
|
|
return hs
|
|
|
|
|
2020-04-14 15:37:28 -04:00
|
|
|
def prepare(self, reactor, clock, hs):
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
# register an account
|
2018-12-29 07:12:30 -05:00
|
|
|
self.user_id = self.register_user("sid1", "pass")
|
|
|
|
self.token = self.login(self.user_id, "pass")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
# register a 2nd account
|
2018-12-29 07:12:30 -05:00
|
|
|
self.other_user = self.register_user("other2", "pass")
|
|
|
|
self.other_token = self.login(self.other_user, "pass")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def test_stream_basic_permissions(self):
|
2018-04-30 15:58:30 -04:00
|
|
|
# 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
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request(
|
2018-12-29 07:12:30 -05:00
|
|
|
"GET", "/events?access_token=%s" % ("invalid" + self.token,)
|
2014-11-05 06:12:47 -05:00
|
|
|
)
|
2018-12-29 07:12:30 -05:00
|
|
|
self.assertEquals(channel.code, 401, msg=channel.result)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
# valid token, expect content
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request(
|
2018-12-29 07:12:30 -05:00
|
|
|
"GET", "/events?access_token=%s&timeout=0" % (self.token,)
|
2014-11-05 06:12:47 -05:00
|
|
|
)
|
2018-12-29 07:12:30 -05:00
|
|
|
self.assertEquals(channel.code, 200, msg=channel.result)
|
|
|
|
self.assertTrue("chunk" in channel.json_body)
|
|
|
|
self.assertTrue("start" in channel.json_body)
|
|
|
|
self.assertTrue("end" in channel.json_body)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def test_stream_room_permissions(self):
|
2018-12-29 07:12:30 -05:00
|
|
|
room_id = self.helper.create_room_as(self.other_user, tok=self.other_token)
|
|
|
|
self.helper.send(room_id, tok=self.other_token)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
# invited to room (expect no content for room)
|
2018-12-29 07:12:30 -05:00
|
|
|
self.helper.invite(
|
2018-08-10 09:54:09 -04:00
|
|
|
room_id, src=self.other_user, targ=self.user_id, tok=self.other_token
|
2014-11-05 06:12:47 -05:00
|
|
|
)
|
|
|
|
|
2018-12-29 07:12:30 -05:00
|
|
|
# valid token, expect content
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request(
|
2018-12-29 07:12:30 -05:00
|
|
|
"GET", "/events?access_token=%s&timeout=0" % (self.token,)
|
2014-11-05 06:12:47 -05:00
|
|
|
)
|
2018-12-29 07:12:30 -05:00
|
|
|
self.assertEquals(channel.code, 200, msg=channel.result)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2015-07-07 11:18:36 -04:00
|
|
|
# We may get a presence event for ourselves down
|
|
|
|
self.assertEquals(
|
|
|
|
0,
|
2018-08-10 09:54:09 -04:00
|
|
|
len(
|
|
|
|
[
|
|
|
|
c
|
2018-12-29 07:12:30 -05:00
|
|
|
for c in channel.json_body["chunk"]
|
2018-08-10 09:54:09 -04:00
|
|
|
if not (
|
|
|
|
c.get("type") == "m.presence"
|
|
|
|
and c["content"].get("user_id") == self.user_id
|
|
|
|
)
|
|
|
|
]
|
|
|
|
),
|
2015-07-07 11:18:36 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
# joined room (expect all content for room)
|
2018-12-29 07:12:30 -05:00
|
|
|
self.helper.join(room=room_id, user=self.user_id, tok=self.token)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
# left to room (expect no content for room)
|
|
|
|
|
2014-11-05 06:12:47 -05:00
|
|
|
def TODO_test_stream_items(self):
|
2014-08-12 10:10:52 -04:00
|
|
|
# new user, no content
|
|
|
|
|
|
|
|
# join room, expect 1 item (join)
|
|
|
|
|
|
|
|
# send message, expect 2 items (join,send)
|
|
|
|
|
|
|
|
# set topic, expect 3 items (join,send,topic)
|
|
|
|
|
|
|
|
# someone else join room, expect 4 (join,send,topic,join)
|
|
|
|
|
|
|
|
# someone else send message, expect 5 (join,send.topic,join,send)
|
|
|
|
|
|
|
|
# someone else set topic, expect 6 (join,send,topic,join,send,topic)
|
|
|
|
pass
|
2020-01-20 12:38:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
class GetEventsTestCase(unittest.HomeserverTestCase):
|
|
|
|
servlets = [
|
|
|
|
events.register_servlets,
|
|
|
|
room.register_servlets,
|
|
|
|
synapse.rest.admin.register_servlets_for_client_rest_resource,
|
|
|
|
login.register_servlets,
|
|
|
|
]
|
|
|
|
|
|
|
|
def prepare(self, hs, reactor, clock):
|
|
|
|
|
|
|
|
# register an account
|
|
|
|
self.user_id = self.register_user("sid1", "pass")
|
|
|
|
self.token = self.login(self.user_id, "pass")
|
|
|
|
|
|
|
|
self.room_id = self.helper.create_room_as(self.user_id, tok=self.token)
|
|
|
|
|
|
|
|
def test_get_event_via_events(self):
|
|
|
|
resp = self.helper.send(self.room_id, tok=self.token)
|
|
|
|
event_id = resp["event_id"]
|
|
|
|
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request(
|
2021-02-16 17:32:34 -05:00
|
|
|
"GET",
|
|
|
|
"/events/" + event_id,
|
|
|
|
access_token=self.token,
|
2020-01-20 12:38:09 -05:00
|
|
|
)
|
|
|
|
self.assertEquals(channel.code, 200, msg=channel.result)
|