diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-09-22 18:33:34 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-09-22 18:33:34 +0100 |
commit | bb4dddd6c4f85bc5b07119d3f9dec31964b5b6f9 (patch) | |
tree | bb9a1b54e093797846c142d64af4fafafdeee738 /tests | |
parent | Note that GzipFile was removed in comment that referenced it (diff) | |
download | synapse-bb4dddd6c4f85bc5b07119d3f9dec31964b5b6f9.tar.xz |
Move NullSource out of synapse and into tests since it is only used by the tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rest/client/v1/test_presence.py | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/tests/rest/client/v1/test_presence.py b/tests/rest/client/v1/test_presence.py index 2ee3da0b34..29d9bbaad4 100644 --- a/tests/rest/client/v1/test_presence.py +++ b/tests/rest/client/v1/test_presence.py @@ -41,6 +41,22 @@ myid = "@apple:test" PATH_PREFIX = "/_matrix/client/api/v1" +class NullSource(object): + """This event source never yields any events and its token remains at + zero. It may be useful for unit-testing.""" + def __init__(self, hs): + pass + + def get_new_events_for_user(self, user, from_key, limit): + return defer.succeed(([], from_key)) + + def get_current_key(self, direction='f'): + return defer.succeed(0) + + def get_pagination_rows(self, user, pagination_config, key): + return defer.succeed(([], pagination_config.from_key)) + + class JustPresenceHandlers(object): def __init__(self, hs): self.presence_handler = PresenceHandler(hs) @@ -243,7 +259,7 @@ class PresenceEventStreamTestCase(unittest.TestCase): # HIDEOUS HACKERY # TODO(paul): This should be injected in via the HomeServer DI system from synapse.streams.events import ( - PresenceEventSource, NullSource, EventSources + PresenceEventSource, EventSources ) old_SOURCE_TYPES = EventSources.SOURCE_TYPES |