2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-03 12:29:13 -04:00
|
|
|
# Copyright 2014 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
|
|
|
# twisted imports
|
|
|
|
from twisted.internet import defer
|
|
|
|
|
|
|
|
# trial imports
|
2014-09-12 13:24:53 -04:00
|
|
|
from tests import unittest
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
from synapse.api.constants import Membership
|
|
|
|
|
2014-08-26 10:54:25 -04:00
|
|
|
import json
|
2014-08-12 10:10:52 -04:00
|
|
|
import time
|
|
|
|
|
2014-08-27 06:33:56 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
class RestTestCase(unittest.TestCase):
|
|
|
|
"""Contains extra helper functions to quickly and clearly perform a given
|
|
|
|
REST action, which isn't the focus of the test.
|
|
|
|
|
2014-08-18 09:03:07 -04:00
|
|
|
This subclass assumes there are mock_resource and auth_user_id attributes.
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(RestTestCase, self).__init__(*args, **kwargs)
|
2014-08-18 09:03:07 -04:00
|
|
|
self.mock_resource = None
|
2014-08-12 10:10:52 -04:00
|
|
|
self.auth_user_id = None
|
|
|
|
|
|
|
|
def mock_get_user_by_token(self, token=None):
|
|
|
|
return self.auth_user_id
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-08-27 06:33:56 -04:00
|
|
|
def create_room_as(self, room_creator, is_public=True, tok=None):
|
2014-08-12 10:10:52 -04:00
|
|
|
temp_id = self.auth_user_id
|
|
|
|
self.auth_user_id = room_creator
|
2014-08-27 06:33:56 -04:00
|
|
|
path = "/createRoom"
|
2014-08-12 10:10:52 -04:00
|
|
|
content = "{}"
|
|
|
|
if not is_public:
|
|
|
|
content = '{"visibility":"private"}'
|
|
|
|
if tok:
|
|
|
|
path = path + "?access_token=%s" % tok
|
2014-08-27 06:33:56 -04:00
|
|
|
(code, response) = yield self.mock_resource.trigger("POST", path, content)
|
2014-08-12 10:10:52 -04:00
|
|
|
self.assertEquals(200, code, msg=str(response))
|
|
|
|
self.auth_user_id = temp_id
|
2014-08-27 06:33:56 -04:00
|
|
|
defer.returnValue(response["room_id"])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def invite(self, room=None, src=None, targ=None, expect_code=200, tok=None):
|
|
|
|
yield self.change_membership(room=room, src=src, targ=targ, tok=tok,
|
|
|
|
membership=Membership.INVITE,
|
|
|
|
expect_code=expect_code)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def join(self, room=None, user=None, expect_code=200, tok=None):
|
|
|
|
yield self.change_membership(room=room, src=user, targ=user, tok=tok,
|
|
|
|
membership=Membership.JOIN,
|
|
|
|
expect_code=expect_code)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def leave(self, room=None, user=None, expect_code=200, tok=None):
|
|
|
|
yield self.change_membership(room=room, src=user, targ=user, tok=tok,
|
|
|
|
membership=Membership.LEAVE,
|
|
|
|
expect_code=expect_code)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-08-26 10:54:25 -04:00
|
|
|
def change_membership(self, room, src, targ, membership, tok=None,
|
|
|
|
expect_code=200):
|
2014-08-12 10:10:52 -04:00
|
|
|
temp_id = self.auth_user_id
|
|
|
|
self.auth_user_id = src
|
|
|
|
|
2014-08-26 10:54:25 -04:00
|
|
|
path = "/rooms/%s/state/m.room.member/%s" % (room, targ)
|
2014-08-12 10:10:52 -04:00
|
|
|
if tok:
|
|
|
|
path = path + "?access_token=%s" % tok
|
|
|
|
|
2014-08-26 10:54:25 -04:00
|
|
|
data = {
|
|
|
|
"membership": membership
|
|
|
|
}
|
|
|
|
|
|
|
|
(code, response) = yield self.mock_resource.trigger("PUT", path,
|
|
|
|
json.dumps(data))
|
|
|
|
self.assertEquals(expect_code, code, msg=str(response))
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
self.auth_user_id = temp_id
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def register(self, user_id):
|
2014-09-15 10:14:19 -04:00
|
|
|
(code, response) = yield self.mock_resource.trigger(
|
|
|
|
"POST",
|
|
|
|
"/register",
|
|
|
|
json.dumps({
|
2014-09-15 10:38:29 -04:00
|
|
|
"user": user_id,
|
2014-09-15 10:14:19 -04:00
|
|
|
"password": "test",
|
|
|
|
"type": "m.login.password"
|
|
|
|
}))
|
2014-08-12 10:10:52 -04:00
|
|
|
self.assertEquals(200, code)
|
|
|
|
defer.returnValue(response)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-08-26 12:21:48 -04:00
|
|
|
def send(self, room_id, body=None, txn_id=None, tok=None,
|
2014-08-12 10:10:52 -04:00
|
|
|
expect_code=200):
|
2014-08-26 12:21:48 -04:00
|
|
|
if txn_id is None:
|
|
|
|
txn_id = "m%s" % (str(time.time()))
|
2014-08-12 10:10:52 -04:00
|
|
|
if body is None:
|
|
|
|
body = "body_text_here"
|
|
|
|
|
2014-08-26 12:21:48 -04:00
|
|
|
path = "/rooms/%s/send/m.room.message/%s" % (room_id, txn_id)
|
2014-08-12 10:10:52 -04:00
|
|
|
content = '{"msgtype":"m.text","body":"%s"}' % body
|
|
|
|
if tok:
|
|
|
|
path = path + "?access_token=%s" % tok
|
|
|
|
|
2014-08-18 09:03:07 -04:00
|
|
|
(code, response) = yield self.mock_resource.trigger("PUT", path, content)
|
2014-08-12 10:10:52 -04:00
|
|
|
self.assertEquals(expect_code, code, msg=str(response))
|
|
|
|
|
|
|
|
def assert_dict(self, required, actual):
|
|
|
|
"""Does a partial assert of a dict.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
required (dict): The keys and value which MUST be in 'actual'.
|
|
|
|
actual (dict): The test result. Extra keys will not be checked.
|
|
|
|
"""
|
|
|
|
for key in required:
|
|
|
|
self.assertEquals(required[key], actual[key],
|
|
|
|
msg="%s mismatch. %s" % (key, actual))
|