Skip to content
Snippets Groups Projects
test_roommember.py 2.86 KiB
Newer Older
  • Learn to ignore specific revisions
  • # -*- coding: utf-8 -*-
    
    Matthew Hodgson's avatar
    Matthew Hodgson committed
    # Copyright 2014-2016 OpenMarket Ltd
    
    #
    # 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.
    
    
    
    Amber Brown's avatar
    Amber Brown committed
    from mock import Mock
    
    
    from twisted.internet import defer
    
    
    from synapse.api.constants import EventTypes, Membership
    from synapse.api.room_versions import RoomVersions
    
    Amber Brown's avatar
    Amber Brown committed
    from synapse.types import RoomID, UserID
    
    Amber Brown's avatar
    Amber Brown committed
    from tests import unittest
    
    Erik Johnston's avatar
    Erik Johnston committed
    from tests.utils import create_room, setup_test_homeserver
    
    Erik Johnston's avatar
    Erik Johnston committed
    
    
    
    class RoomMemberStoreTestCase(unittest.TestCase):
        @defer.inlineCallbacks
        def setUp(self):
    
            hs = yield setup_test_homeserver(
    
                self.addCleanup, resource_for_federation=Mock(), http_client=None
    
            )
            # We can't test the RoomMemberStore on its own without the other event
            # storage logic
            self.store = hs.get_datastore()
    
    Erik Johnston's avatar
    Erik Johnston committed
            self.event_builder_factory = hs.get_event_builder_factory()
    
    Erik Johnston's avatar
    Erik Johnston committed
            self.event_creation_handler = hs.get_event_creation_handler()
    
            self.u_alice = UserID.from_string("@alice:test")
            self.u_bob = UserID.from_string("@bob:test")
    
            # User elsewhere on another host
    
            self.u_charlie = UserID.from_string("@charlie:elsewhere")
    
            self.room = RoomID.from_string("!abc123:test")
    
    Erik Johnston's avatar
    Erik Johnston committed
            yield create_room(hs, self.room.to_string(), self.u_alice.to_string())
    
    
        @defer.inlineCallbacks
    
    Erik Johnston's avatar
    Erik Johnston committed
        def inject_room_member(self, room, user, membership, replaces_state=None):
    
            builder = self.event_builder_factory.for_room_version(
    
    Erik Johnston's avatar
    Erik Johnston committed
                RoomVersions.V1,
    
    black's avatar
    black committed
                {
                    "type": EventTypes.Member,
                    "sender": user.to_string(),
                    "state_key": user.to_string(),
                    "room_id": room.to_string(),
                    "content": {"membership": membership},
    
    black's avatar
    black committed
            )
    
    Erik Johnston's avatar
    Erik Johnston committed
    
    
            event, context = yield self.event_creation_handler.create_new_client_event(
    
    Erik Johnston's avatar
    Erik Johnston committed
                builder
    
    Erik Johnston's avatar
    Erik Johnston committed
            yield self.store.persist_event(event, context)
    
    Erik Johnston's avatar
    Erik Johnston committed
            defer.returnValue(event)
    
    
        @defer.inlineCallbacks
        def test_one_member(self):
            yield self.inject_room_member(self.room, self.u_alice, Membership.JOIN)
    
            self.assertEquals(
                [self.room.to_string()],
    
    black's avatar
    black committed
                [
                    m.room_id
                    for m in (
                        yield self.store.get_rooms_for_user_where_membership_is(
                            self.u_alice.to_string(), [Membership.JOIN]
                        )
    
    black's avatar
    black committed
                ],