Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
7b079a26
Commit
7b079a26
authored
10 years ago
by
Mark Haines
Browse files
Options
Downloads
Patches
Plain Diff
Remove get_state_for_room function from federation handler
parent
bddc1d9f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
synapse/handlers/federation.py
+11
-15
11 additions, 15 deletions
synapse/handlers/federation.py
tests/handlers/test_federation.py
+8
-2
8 additions, 2 deletions
tests/handlers/test_federation.py
tests/utils.py
+10
-0
10 additions, 0 deletions
tests/utils.py
with
29 additions
and
17 deletions
synapse/handlers/federation.py
+
11
−
15
View file @
7b079a26
...
...
@@ -84,12 +84,6 @@ class FederationHandler(BaseHandler):
yield
self
.
replication_layer
.
send_pdu
(
pdu
)
@log_function
def
get_state_for_room
(
self
,
destination
,
room_id
):
return
self
.
replication_layer
.
get_state_for_context
(
destination
,
room_id
)
@log_function
@defer.inlineCallbacks
def
on_receive_pdu
(
self
,
pdu
,
backfilled
):
...
...
@@ -139,7 +133,7 @@ class FederationHandler(BaseHandler):
yield
self
.
hs
.
get_handlers
().
room_member_handler
.
change_membership
(
new_event
,
True
do_auth
=
True
)
else
:
...
...
@@ -151,8 +145,8 @@ class FederationHandler(BaseHandler):
if
not
room
:
# Huh, let's try and get the current state
try
:
yield
self
.
get_state_for_
room
(
event
.
origin
,
event
.
room_id
yield
self
.
replication_layer
.
get_state_for_
context
(
origin
,
event
.
room_id
)
hosts
=
yield
self
.
store
.
get_joined_hosts_for_room
(
...
...
@@ -161,9 +155,9 @@ class FederationHandler(BaseHandler):
if
self
.
hs
.
hostname
in
hosts
:
try
:
yield
self
.
store
.
store_room
(
event
.
room_id
,
""
,
is_public
=
False
room_id
=
event
.
room_id
,
room_creator_user_id
=
""
,
is_public
=
False
,
)
except
:
pass
...
...
@@ -209,7 +203,9 @@ class FederationHandler(BaseHandler):
# First get current state to see if we are already joined.
try
:
yield
self
.
get_state_for_room
(
target_host
,
room_id
)
yield
self
.
replication_layer
.
get_state_for_context
(
target_host
,
room_id
)
hosts
=
yield
self
.
store
.
get_joined_hosts_for_room
(
room_id
)
if
self
.
hs
.
hostname
in
hosts
:
...
...
@@ -239,8 +235,8 @@ class FederationHandler(BaseHandler):
try
:
yield
self
.
store
.
store_room
(
room_id
,
""
,
room_id
=
room_id
,
room_creator_user_id
=
""
,
is_public
=
False
)
except
:
...
...
This diff is collapsed.
Click to expand it.
tests/handlers/test_federation.py
+
8
−
2
View file @
7b079a26
...
...
@@ -28,6 +28,8 @@ from mock import NonCallableMock, ANY
import
logging
from
..utils
import
get_mock_call_args
logging
.
getLogger
().
addHandler
(
logging
.
NullHandler
())
...
...
@@ -99,9 +101,13 @@ class FederationTestCase(unittest.TestCase):
mem_handler
=
self
.
handlers
.
room_member_handler
self
.
assertEquals
(
1
,
mem_handler
.
change_membership
.
call_count
)
self
.
assertEquals
(
True
,
mem_handler
.
change_membership
.
call_args
[
0
][
1
])
call_args
=
get_mock_call_args
(
lambda
event
,
do_auth
:
None
,
mem_handler
.
change_membership
)
self
.
assertEquals
(
True
,
call_args
[
"
do_auth
"
])
new_event
=
mem_handler
.
change_membership
.
call_args
[
0
][
0
]
new_event
=
call_args
[
"
event
"
]
self
.
assertEquals
(
RoomMemberEvent
.
TYPE
,
new_event
.
type
)
self
.
assertEquals
(
room_id
,
new_event
.
room_id
)
self
.
assertEquals
(
user_id
,
new_event
.
state_key
)
...
...
This diff is collapsed.
Click to expand it.
tests/utils.py
+
10
−
0
View file @
7b079a26
...
...
@@ -28,6 +28,16 @@ from mock import patch, Mock
import
json
import
urlparse
from
inspect
import
getcallargs
def
get_mock_call_args
(
pattern_func
,
mock_func
):
"""
Return the arguments the mock function was called with interpreted
by the pattern functions argument list.
"""
invoked_args
,
invoked_kargs
=
mock_func
.
call_args
return
getcallargs
(
pattern_func
,
*
invoked_args
,
**
invoked_kargs
)
# This is a mock /resource/ not an entire server
class
MockHttpResource
(
HttpServer
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment