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
7dbac123
Unverified
Commit
7dbac123
authored
1 year ago
by
Hugh Nimmo-Smith
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Disallow user_consent where experimental MSC3861 is enabled (#16127)
parent
d6ae4041
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
changelog.d/16127.bugfix
+1
-0
1 addition, 0 deletions
changelog.d/16127.bugfix
synapse/config/experimental.py
+7
-0
7 additions, 0 deletions
synapse/config/experimental.py
tests/config/test_oauth_delegation.py
+16
-0
16 additions, 0 deletions
tests/config/test_oauth_delegation.py
with
24 additions
and
0 deletions
changelog.d/16127.bugfix
0 → 100644
+
1
−
0
View file @
7dbac123
User consent features cannot be enabled when using experimental MSC3861.
This diff is collapsed.
Click to expand it.
synapse/config/experimental.py
+
7
−
0
View file @
7dbac123
...
...
@@ -173,6 +173,13 @@ class MSC3861:
(
"
enable_registration
"
,),
)
# We only need to test the user consent version, as if it must be set if the user_consent section was present in the config
if
root
.
consent
.
user_consent_version
is
not
None
:
raise
ConfigError
(
"
User consent cannot be enabled when OAuth delegation is enabled
"
,
(
"
user_consent
"
,),
)
if
(
root
.
oidc
.
oidc_enabled
or
root
.
saml2
.
saml2_enabled
...
...
This diff is collapsed.
Click to expand it.
tests/config/test_oauth_delegation.py
+
16
−
0
View file @
7dbac123
...
...
@@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
os
from
unittest.mock
import
Mock
from
synapse.config
import
ConfigError
...
...
@@ -167,6 +168,21 @@ class MSC3861OAuthDelegation(TestCase):
with
self
.
assertRaises
(
ConfigError
):
self
.
parse_config
()
def
test_user_consent_cannot_be_enabled
(
self
)
->
None
:
tmpdir
=
self
.
mktemp
()
os
.
mkdir
(
tmpdir
)
self
.
config_dict
[
"
user_consent
"
]
=
{
"
require_at_registration
"
:
True
,
"
version
"
:
"
1
"
,
"
template_dir
"
:
tmpdir
,
"
server_notice_content
"
:
{
"
msgtype
"
:
"
m.text
"
,
"
body
"
:
"
foo
"
,
},
}
with
self
.
assertRaises
(
ConfigError
):
self
.
parse_config
()
def
test_password_config_cannot_be_enabled
(
self
)
->
None
:
self
.
config_dict
[
"
password_config
"
]
=
{
"
enabled
"
:
True
}
with
self
.
assertRaises
(
ConfigError
):
...
...
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