summary refs log tree commit diff
path: root/tests/api
diff options
context:
space:
mode:
authorPaul "LeoNerd" Evans <paul@matrix.org>2015-01-27 15:56:14 +0000
committerPaul "LeoNerd" Evans <paul@matrix.org>2015-01-27 15:56:14 +0000
commitb1503112ce77e573aa8cfb7581ca4a916c7d018c (patch)
treec37b2610d3ac355459224c11899ac0bb9bc55348 /tests/api
parentInitial trivial implementation of an actual 'Filtering' object; move storage ... (diff)
downloadsynapse-b1503112ce77e573aa8cfb7581ca4a916c7d018c.tar.xz
Initial trivial unittest of Filtering object
Diffstat (limited to 'tests/api')
-rw-r--r--tests/api/test_filtering.py67
1 files changed, 67 insertions, 0 deletions
diff --git a/tests/api/test_filtering.py b/tests/api/test_filtering.py
new file mode 100644
index 0000000000..c6c5317696
--- /dev/null
+++ b/tests/api/test_filtering.py
@@ -0,0 +1,67 @@
+# -*- coding: utf-8 -*-
+# Copyright 2015 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.
+
+
+from tests import unittest
+from twisted.internet import defer
+
+from mock import Mock, NonCallableMock
+from tests.utils import (
+    MockHttpResource, MockClock, DeferredMockCallable, SQLiteMemoryDbPool,
+    MockKey
+)
+
+from synapse.server import HomeServer
+
+
+user_localpart = "test_user"
+
+class FilteringTestCase(unittest.TestCase):
+
+    @defer.inlineCallbacks
+    def setUp(self):
+        db_pool = SQLiteMemoryDbPool()
+        yield db_pool.prepare()
+
+        self.mock_config = NonCallableMock()
+        self.mock_config.signing_key = [MockKey()]
+
+        self.mock_federation_resource = MockHttpResource()
+
+        self.mock_http_client = Mock(spec=[])
+        self.mock_http_client.put_json = DeferredMockCallable()
+
+        hs = HomeServer("test",
+            db_pool=db_pool,
+            handlers=None,
+            http_client=self.mock_http_client,
+            config=self.mock_config,
+            keyring=Mock(),
+        )
+
+        self.filtering = hs.get_filtering()
+
+    def test_filter(self):
+        filter_id = self.filtering.add_user_filter(
+            user_localpart=user_localpart,
+            definition={"type": ["m.*"]},
+        )
+        self.assertEquals(filter_id, 0)
+
+        filter = self.filtering.get_user_filter(
+            user_localpart=user_localpart,
+            filter_id=filter_id,
+        )
+        self.assertEquals(filter, {"type": ["m.*"]})