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
b5d48560
Commit
b5d48560
authored
6 years ago
by
Richard van der Hoff
Browse files
Options
Downloads
Patches
Plain Diff
Fix RegistrationTestCase
turns out this relies on there being a `user_consent_version` set.
parent
07f057ac
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/handlers/test_register.py
+9
-2
9 additions, 2 deletions
tests/handlers/test_register.py
with
9 additions
and
2 deletions
tests/handlers/test_register.py
+
9
−
2
View file @
b5d48560
...
@@ -22,7 +22,7 @@ from synapse.api.errors import ResourceLimitError, SynapseError
...
@@ -22,7 +22,7 @@ from synapse.api.errors import ResourceLimitError, SynapseError
from
synapse.handlers.register
import
RegistrationHandler
from
synapse.handlers.register
import
RegistrationHandler
from
synapse.types
import
RoomAlias
,
UserID
,
create_requester
from
synapse.types
import
RoomAlias
,
UserID
,
create_requester
from
tests.utils
import
setup_test_homeserver
from
tests.utils
import
default_config
,
setup_test_homeserver
from
..
import
unittest
from
..
import
unittest
...
@@ -40,8 +40,16 @@ class RegistrationTestCase(unittest.TestCase):
...
@@ -40,8 +40,16 @@ class RegistrationTestCase(unittest.TestCase):
self
.
mock_distributor
=
Mock
()
self
.
mock_distributor
=
Mock
()
self
.
mock_distributor
.
declare
(
"
registered_user
"
)
self
.
mock_distributor
.
declare
(
"
registered_user
"
)
self
.
mock_captcha_client
=
Mock
()
self
.
mock_captcha_client
=
Mock
()
hs_config
=
default_config
(
"
test
"
)
# some of the tests rely on us having a user consent version
hs_config
.
user_consent_version
=
"
test_consent_version
"
hs_config
.
max_mau_value
=
50
self
.
hs
=
yield
setup_test_homeserver
(
self
.
hs
=
yield
setup_test_homeserver
(
self
.
addCleanup
,
self
.
addCleanup
,
config
=
hs_config
,
expire_access_token
=
True
,
expire_access_token
=
True
,
)
)
self
.
macaroon_generator
=
Mock
(
self
.
macaroon_generator
=
Mock
(
...
@@ -50,7 +58,6 @@ class RegistrationTestCase(unittest.TestCase):
...
@@ -50,7 +58,6 @@ class RegistrationTestCase(unittest.TestCase):
self
.
hs
.
get_macaroon_generator
=
Mock
(
return_value
=
self
.
macaroon_generator
)
self
.
hs
.
get_macaroon_generator
=
Mock
(
return_value
=
self
.
macaroon_generator
)
self
.
handler
=
self
.
hs
.
get_registration_handler
()
self
.
handler
=
self
.
hs
.
get_registration_handler
()
self
.
store
=
self
.
hs
.
get_datastore
()
self
.
store
=
self
.
hs
.
get_datastore
()
self
.
hs
.
config
.
max_mau_value
=
50
self
.
lots_of_users
=
100
self
.
lots_of_users
=
100
self
.
small_number_of_users
=
1
self
.
small_number_of_users
=
1
...
...
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