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
Package registry
Container Registry
Model registry
Operate
Terraform modules
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
Timo Ley
synapse
Commits
4acb6fe8
Commit
4acb6fe8
authored
6 years ago
by
Travis Ralston
Browse files
Options
Downloads
Patches
Plain Diff
Move test to where the other integration tests are
parent
9283987f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tests/rest/client/v2_alpha/test_register.py
+0
-97
0 additions, 97 deletions
tests/rest/client/v2_alpha/test_register.py
tests/test_terms_auth.py
+109
-0
109 additions, 0 deletions
tests/test_terms_auth.py
with
109 additions
and
97 deletions
tests/rest/client/v2_alpha/test_register.py
+
0
−
97
View file @
4acb6fe8
...
...
@@ -175,100 +175,3 @@ class RegisterRestServletTestCase(unittest.TestCase):
self
.
assertEquals
(
channel
.
result
[
"
code
"
],
b
"
403
"
,
channel
.
result
)
self
.
assertEquals
(
channel
.
json_body
[
"
error
"
],
"
Guest access is disabled
"
)
class
TermsTestCase
(
unittest
.
HomeserverTestCase
):
servlets
=
[
register_servlets
]
def
prepare
(
self
,
reactor
,
clock
,
hs
):
self
.
clock
=
MemoryReactorClock
()
self
.
hs_clock
=
Clock
(
self
.
clock
)
self
.
url
=
"
/_matrix/client/r0/register
"
self
.
registration_handler
=
Mock
()
self
.
auth_handler
=
Mock
()
self
.
device_handler
=
Mock
()
hs
.
config
.
enable_registration
=
True
hs
.
config
.
registrations_require_3pid
=
[]
hs
.
config
.
auto_join_rooms
=
[]
hs
.
config
.
enable_registration_captcha
=
False
def
test_POST_terms_auth
(
self
):
self
.
hs
.
config
.
block_events_without_consent_error
=
True
self
.
hs
.
config
.
public_baseurl
=
"
https://example.org
"
self
.
hs
.
config
.
user_consent_version
=
"
1.0
"
# Do a UI auth request
request
,
channel
=
self
.
make_request
(
b
"
POST
"
,
self
.
url
,
b
"
{}
"
)
self
.
render
(
request
)
self
.
assertEquals
(
channel
.
result
[
"
code
"
],
b
"
401
"
,
channel
.
result
)
self
.
assertTrue
(
channel
.
json_body
is
not
None
)
self
.
assertIsInstance
(
channel
.
json_body
[
"
session
"
],
six
.
text_type
)
self
.
assertIsInstance
(
channel
.
json_body
[
"
flows
"
],
list
)
for
flow
in
channel
.
json_body
[
"
flows
"
]:
self
.
assertIsInstance
(
flow
[
"
stages
"
],
list
)
self
.
assertTrue
(
len
(
flow
[
"
stages
"
])
>
0
)
self
.
assertEquals
(
flow
[
"
stages
"
][
-
1
],
"
m.login.terms
"
)
expected_params
=
{
"
m.login.terms
"
:
{
"
policies
"
:
{
"
privacy_policy
"
:
{
"
en
"
:
{
"
name
"
:
"
Privacy Policy
"
,
"
url
"
:
"
https://example.org/_matrix/consent
"
,
},
"
version
"
:
"
1.0
"
},
},
},
}
self
.
assertIsInstance
(
channel
.
json_body
[
"
params
"
],
dict
)
self
.
assertDictContainsSubset
(
channel
.
json_body
[
"
params
"
],
expected_params
)
# We have to complete the dummy auth stage before completing the terms stage
request_data
=
json
.
dumps
(
{
"
username
"
:
"
kermit
"
,
"
password
"
:
"
monkey
"
,
"
auth
"
:
{
"
session
"
:
channel
.
json_body
[
"
session
"
],
"
type
"
:
"
m.login.dummy
"
,
},
}
)
self
.
registration_handler
.
check_username
=
Mock
(
return_value
=
True
)
request
,
channel
=
make_request
(
b
"
POST
"
,
self
.
url
,
request_data
)
self
.
render
(
request
)
# We don't bother checking that the response is correct - we'll leave that to
# other tests. We just want to make sure we're on the right path.
self
.
assertEquals
(
channel
.
result
[
"
code
"
],
b
"
401
"
,
channel
.
result
)
# Finish the UI auth for terms
request_data
=
json
.
dumps
(
{
"
username
"
:
"
kermit
"
,
"
password
"
:
"
monkey
"
,
"
auth
"
:
{
"
session
"
:
channel
.
json_body
[
"
session
"
],
"
type
"
:
"
m.login.terms
"
,
},
}
)
request
,
channel
=
make_request
(
b
"
POST
"
,
self
.
url
,
request_data
)
self
.
render
(
request
)
# We're interested in getting a response that looks like a successful registration,
# not so much that the details are exactly what we want.
self
.
assertEquals
(
channel
.
result
[
"
code
"
],
b
"
200
"
,
channel
.
result
)
self
.
assertTrue
(
channel
.
json_body
is
not
None
)
self
.
assertIsInstance
(
channel
.
json_body
[
"
user_id
"
],
six
.
text_type
)
self
.
assertIsInstance
(
channel
.
json_body
[
"
access_token
"
],
six
.
text_type
)
self
.
assertIsInstance
(
channel
.
json_body
[
"
device_id
"
],
six
.
text_type
)
This diff is collapsed.
Click to expand it.
tests/test_terms_auth.py
0 → 100644
+
109
−
0
View file @
4acb6fe8
# Copyright 2018 New Vector 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.
class
TermsTestCase
(
unittest
.
HomeserverTestCase
):
servlets
=
[
register_servlets
]
def
prepare
(
self
,
reactor
,
clock
,
hs
):
self
.
clock
=
MemoryReactorClock
()
self
.
hs_clock
=
Clock
(
self
.
clock
)
self
.
url
=
"
/_matrix/client/r0/register
"
self
.
registration_handler
=
Mock
()
self
.
auth_handler
=
Mock
()
self
.
device_handler
=
Mock
()
hs
.
config
.
enable_registration
=
True
hs
.
config
.
registrations_require_3pid
=
[]
hs
.
config
.
auto_join_rooms
=
[]
hs
.
config
.
enable_registration_captcha
=
False
def
test_ui_auth
(
self
):
self
.
hs
.
config
.
block_events_without_consent_error
=
True
self
.
hs
.
config
.
public_baseurl
=
"
https://example.org
"
self
.
hs
.
config
.
user_consent_version
=
"
1.0
"
# Do a UI auth request
request
,
channel
=
self
.
make_request
(
b
"
POST
"
,
self
.
url
,
b
"
{}
"
)
self
.
render
(
request
)
self
.
assertEquals
(
channel
.
result
[
"
code
"
],
b
"
401
"
,
channel
.
result
)
self
.
assertTrue
(
channel
.
json_body
is
not
None
)
self
.
assertIsInstance
(
channel
.
json_body
[
"
session
"
],
six
.
text_type
)
self
.
assertIsInstance
(
channel
.
json_body
[
"
flows
"
],
list
)
for
flow
in
channel
.
json_body
[
"
flows
"
]:
self
.
assertIsInstance
(
flow
[
"
stages
"
],
list
)
self
.
assertTrue
(
len
(
flow
[
"
stages
"
])
>
0
)
self
.
assertEquals
(
flow
[
"
stages
"
][
-
1
],
"
m.login.terms
"
)
expected_params
=
{
"
m.login.terms
"
:
{
"
policies
"
:
{
"
privacy_policy
"
:
{
"
en
"
:
{
"
name
"
:
"
Privacy Policy
"
,
"
url
"
:
"
https://example.org/_matrix/consent
"
,
},
"
version
"
:
"
1.0
"
},
},
},
}
self
.
assertIsInstance
(
channel
.
json_body
[
"
params
"
],
dict
)
self
.
assertDictContainsSubset
(
channel
.
json_body
[
"
params
"
],
expected_params
)
# We have to complete the dummy auth stage before completing the terms stage
request_data
=
json
.
dumps
(
{
"
username
"
:
"
kermit
"
,
"
password
"
:
"
monkey
"
,
"
auth
"
:
{
"
session
"
:
channel
.
json_body
[
"
session
"
],
"
type
"
:
"
m.login.dummy
"
,
},
}
)
self
.
registration_handler
.
check_username
=
Mock
(
return_value
=
True
)
request
,
channel
=
make_request
(
b
"
POST
"
,
self
.
url
,
request_data
)
self
.
render
(
request
)
# We don't bother checking that the response is correct - we'll leave that to
# other tests. We just want to make sure we're on the right path.
self
.
assertEquals
(
channel
.
result
[
"
code
"
],
b
"
401
"
,
channel
.
result
)
# Finish the UI auth for terms
request_data
=
json
.
dumps
(
{
"
username
"
:
"
kermit
"
,
"
password
"
:
"
monkey
"
,
"
auth
"
:
{
"
session
"
:
channel
.
json_body
[
"
session
"
],
"
type
"
:
"
m.login.terms
"
,
},
}
)
request
,
channel
=
make_request
(
b
"
POST
"
,
self
.
url
,
request_data
)
self
.
render
(
request
)
# We're interested in getting a response that looks like a successful registration,
# not so much that the details are exactly what we want.
self
.
assertEquals
(
channel
.
result
[
"
code
"
],
b
"
200
"
,
channel
.
result
)
self
.
assertTrue
(
channel
.
json_body
is
not
None
)
self
.
assertIsInstance
(
channel
.
json_body
[
"
user_id
"
],
six
.
text_type
)
self
.
assertIsInstance
(
channel
.
json_body
[
"
access_token
"
],
six
.
text_type
)
self
.
assertIsInstance
(
channel
.
json_body
[
"
device_id
"
],
six
.
text_type
)
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