summary refs log tree commit diff
path: root/tests/utils.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-12-12 15:08:29 +0000
committerErik Johnston <erik@matrix.org>2014-12-12 15:08:29 +0000
commit1fc2a0e33ef6e88a79dbf4325468d8eb77db0f65 (patch)
treea4376730c84ee3950bf4e5eedf8bfa2c1903f6b9 /tests/utils.py
parentConsistently url decode and decode as utf 8 the URL parts (diff)
downloadsynapse-1fc2a0e33ef6e88a79dbf4325468d8eb77db0f65.tar.xz
Fix tests and remove debug logging
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/utils.py b/tests/utils.py
index f9a34748cd..70a221550c 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -29,7 +29,7 @@ from twisted.enterprise.adbapi import ConnectionPool
 
 from collections import namedtuple
 from mock import patch, Mock
-import json
+import urllib
 import urlparse
 
 from inspect import getcallargs
@@ -103,9 +103,14 @@ class MockHttpResource(HttpServer):
             matcher = pattern.match(path)
             if matcher:
                 try:
+                    args = [
+                        urllib.unquote(u).decode("UTF-8")
+                        for u in matcher.groups()
+                    ]
+
                     (code, response) = yield func(
                         mock_request,
-                        *matcher.groups()
+                        *args
                     )
                     defer.returnValue((code, response))
                 except CodeMessageException as e: