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
3c580c2b
Commit
3c580c2b
authored
6 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Add tests for alias creation rules
parent
1b4bf232
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/handlers/test_directory.py
+48
-0
48 additions, 0 deletions
tests/handlers/test_directory.py
with
48 additions
and
0 deletions
tests/handlers/test_directory.py
+
48
−
0
View file @
3c580c2b
...
...
@@ -18,7 +18,9 @@ from mock import Mock
from
twisted.internet
import
defer
from
synapse.config.room_directory
import
RoomDirectoryConfig
from
synapse.handlers.directory
import
DirectoryHandler
from
synapse.rest.client.v1
import
directory
,
room
from
synapse.types
import
RoomAlias
from
tests
import
unittest
...
...
@@ -102,3 +104,49 @@ class DirectoryTestCase(unittest.TestCase):
)
self
.
assertEquals
({
"
room_id
"
:
"
!8765asdf:test
"
,
"
servers
"
:
[
"
test
"
]},
response
)
class
TestCreateAliasACL
(
unittest
.
HomeserverTestCase
):
user_id
=
"
@test:test
"
servlets
=
[
directory
.
register_servlets
,
room
.
register_servlets
]
def
prepare
(
self
,
hs
,
reactor
,
clock
):
# We cheekily override the config to add custom alias creation rules
config
=
{}
config
[
"
alias_creation_rules
"
]
=
[
{
"
user_id
"
:
"
*
"
,
"
alias
"
:
"
#unofficial_*
"
,
"
action
"
:
"
allowed
"
,
}
]
rd_config
=
RoomDirectoryConfig
()
rd_config
.
read_config
(
config
)
self
.
hs
.
config
.
is_alias_creation_allowed
=
rd_config
.
is_alias_creation_allowed
return
hs
def
test_denied
(
self
):
room_id
=
self
.
helper
.
create_room_as
(
self
.
user_id
)
request
,
channel
=
self
.
make_request
(
"
PUT
"
,
b
"
directory/room/%23test%3Atest
"
,
(
'
{
"
room_id
"
:
"
%s
"
}
'
%
(
room_id
,)).
encode
(
'
ascii
'
),
)
self
.
render
(
request
)
self
.
assertEquals
(
403
,
channel
.
code
,
channel
.
result
)
def
test_allowed
(
self
):
room_id
=
self
.
helper
.
create_room_as
(
self
.
user_id
)
request
,
channel
=
self
.
make_request
(
"
PUT
"
,
b
"
directory/room/%23unofficial_test%3Atest
"
,
(
'
{
"
room_id
"
:
"
%s
"
}
'
%
(
room_id
,)).
encode
(
'
ascii
'
),
)
self
.
render
(
request
)
self
.
assertEquals
(
200
,
channel
.
code
,
channel
.
result
)
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