2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2018-08-14 06:53:43 -04:00
|
|
|
# Copyright 2018 New Vector
|
2014-12-11 12:39:08 -05: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.
|
|
|
|
|
|
|
|
"""Tests REST events for /rooms paths."""
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2022-03-02 11:34:14 -05:00
|
|
|
from twisted.test.proto_helpers import MemoryReactor
|
|
|
|
|
2022-05-27 07:14:36 -04:00
|
|
|
from synapse.api.constants import EduTypes
|
2021-08-17 07:57:58 -04:00
|
|
|
from synapse.rest.client import room
|
2022-03-02 11:34:14 -05:00
|
|
|
from synapse.server import HomeServer
|
2015-01-23 06:47:15 -05:00
|
|
|
from synapse.types import UserID
|
2022-03-02 11:34:14 -05:00
|
|
|
from synapse.util import Clock
|
2014-12-11 12:39:08 -05:00
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
from tests import unittest
|
2014-12-11 12:39:08 -05:00
|
|
|
|
|
|
|
PATH_PREFIX = "/_matrix/client/api/v1"
|
|
|
|
|
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
class RoomTypingTestCase(unittest.HomeserverTestCase):
|
2021-06-17 10:20:06 -04:00
|
|
|
"""Tests /rooms/$room_id/typing/$user_id REST API."""
|
2018-08-10 09:54:09 -04:00
|
|
|
|
2014-12-11 12:39:08 -05:00
|
|
|
user_id = "@sid:red"
|
|
|
|
|
2015-04-15 18:32:11 -04:00
|
|
|
user = UserID.from_string(user_id)
|
2018-08-14 06:53:43 -04:00
|
|
|
servlets = [room.register_servlets]
|
2015-04-15 18:32:11 -04:00
|
|
|
|
2022-03-02 11:34:14 -05:00
|
|
|
def make_homeserver(self, reactor: MemoryReactor, clock: Clock) -> HomeServer:
|
2022-03-02 12:24:52 -05:00
|
|
|
hs = self.setup_test_homeserver("red")
|
2021-09-21 13:34:26 -04:00
|
|
|
self.event_source = hs.get_event_sources().sources.typing
|
2018-08-14 06:53:43 -04:00
|
|
|
return hs
|
2014-12-11 12:39:08 -05:00
|
|
|
|
2022-03-02 11:34:14 -05:00
|
|
|
def prepare(self, reactor: MemoryReactor, clock: Clock, hs: HomeServer) -> None:
|
2018-08-14 06:53:43 -04:00
|
|
|
self.room_id = self.helper.create_room_as(self.user_id)
|
2014-12-11 12:39:08 -05:00
|
|
|
# Need another user to make notifications actually work
|
2018-08-14 06:53:43 -04:00
|
|
|
self.helper.join(self.room_id, user="@jim:red")
|
2014-12-11 12:39:08 -05:00
|
|
|
|
2022-03-02 11:34:14 -05:00
|
|
|
def test_set_typing(self) -> None:
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request(
|
2016-02-19 10:34:38 -05:00
|
|
|
"PUT",
|
|
|
|
"/rooms/%s/typing/%s" % (self.room_id, self.user_id),
|
2018-08-14 06:53:43 -04:00
|
|
|
b'{"typing": true, "timeout": 30000}',
|
2014-12-11 12:39:08 -05:00
|
|
|
)
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(200, channel.code)
|
2014-12-11 12:39:08 -05:00
|
|
|
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(self.event_source.get_current_key(), 1)
|
2019-12-06 05:14:59 -05:00
|
|
|
events = self.get_success(
|
2021-09-21 13:34:26 -04:00
|
|
|
self.event_source.get_new_events(
|
|
|
|
user=UserID.from_string(self.user_id),
|
|
|
|
from_key=0,
|
2022-10-14 08:30:05 -04:00
|
|
|
# Limit is unused.
|
|
|
|
limit=0,
|
2021-09-21 13:34:26 -04:00
|
|
|
room_ids=[self.room_id],
|
|
|
|
is_guest=False,
|
|
|
|
)
|
2019-12-06 05:14:59 -05:00
|
|
|
)
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(
|
2016-02-19 10:34:38 -05:00
|
|
|
events[0],
|
2018-08-10 09:54:09 -04:00
|
|
|
[
|
|
|
|
{
|
2022-05-27 07:14:36 -04:00
|
|
|
"type": EduTypes.TYPING,
|
2016-02-19 10:34:38 -05:00
|
|
|
"room_id": self.room_id,
|
|
|
|
"content": {"user_ids": [self.user_id]},
|
2018-08-10 09:54:09 -04:00
|
|
|
}
|
2015-11-05 09:32:26 -05:00
|
|
|
],
|
|
|
|
)
|
2014-12-11 12:39:08 -05:00
|
|
|
|
2022-03-02 11:34:14 -05:00
|
|
|
def test_set_not_typing(self) -> None:
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request(
|
2016-02-19 10:34:38 -05:00
|
|
|
"PUT",
|
|
|
|
"/rooms/%s/typing/%s" % (self.room_id, self.user_id),
|
2018-08-14 06:53:43 -04:00
|
|
|
b'{"typing": false}',
|
2014-12-11 12:39:08 -05:00
|
|
|
)
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(200, channel.code)
|
2015-01-12 13:31:48 -05:00
|
|
|
|
2022-03-02 11:34:14 -05:00
|
|
|
def test_typing_timeout(self) -> None:
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request(
|
2016-02-19 10:34:38 -05:00
|
|
|
"PUT",
|
|
|
|
"/rooms/%s/typing/%s" % (self.room_id, self.user_id),
|
2018-08-14 06:53:43 -04:00
|
|
|
b'{"typing": true, "timeout": 30000}',
|
2015-01-12 13:31:48 -05:00
|
|
|
)
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(200, channel.code)
|
2015-01-12 13:31:48 -05:00
|
|
|
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(self.event_source.get_current_key(), 1)
|
2015-01-12 13:31:48 -05:00
|
|
|
|
2018-08-14 06:53:43 -04:00
|
|
|
self.reactor.advance(36)
|
2015-01-12 13:31:48 -05:00
|
|
|
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(self.event_source.get_current_key(), 2)
|
2015-01-12 13:31:48 -05:00
|
|
|
|
2020-12-15 09:44:04 -05:00
|
|
|
channel = self.make_request(
|
2016-02-19 10:34:38 -05:00
|
|
|
"PUT",
|
|
|
|
"/rooms/%s/typing/%s" % (self.room_id, self.user_id),
|
2018-08-14 06:53:43 -04:00
|
|
|
b'{"typing": true, "timeout": 30000}',
|
2015-01-12 13:31:48 -05:00
|
|
|
)
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(200, channel.code)
|
2015-01-12 13:31:48 -05:00
|
|
|
|
2022-02-28 07:12:29 -05:00
|
|
|
self.assertEqual(self.event_source.get_current_key(), 3)
|