You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.6 KiB
Python
72 lines
2.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
#
|
|
# 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.
|
|
|
|
import logging
|
|
import re
|
|
import time
|
|
import unittest
|
|
|
|
from synapse.api.errors import RedirectException
|
|
|
|
from matrix_synapse_saml_mozilla._sessions import username_mapping_sessions
|
|
|
|
from . import create_mapping_provider
|
|
|
|
logging.basicConfig()
|
|
|
|
|
|
class FakeResponse:
|
|
def __init__(self, source_uid, display_name):
|
|
self.ava = {
|
|
"uid": [source_uid],
|
|
}
|
|
|
|
if display_name:
|
|
self.ava["displayName"] = [display_name]
|
|
|
|
|
|
class SamlUserAttributeTestCase(unittest.TestCase):
|
|
def test_redirect(self):
|
|
"""Creates a dummy response, feeds it to the provider and checks that it
|
|
redirects to the username picker.
|
|
"""
|
|
provider, config = create_mapping_provider()
|
|
response = FakeResponse(123435, "Jonny")
|
|
|
|
# we expect this to redirect to the username picker
|
|
with self.assertRaises(RedirectException) as cm:
|
|
provider.saml_response_to_user_attributes(response, 0, "http://client/")
|
|
self.assertEqual(cm.exception.location, b"/_matrix/saml2/pick_username/")
|
|
|
|
cookieheader = cm.exception.cookies[0]
|
|
regex = re.compile(b"^username_mapping_session=([a-zA-Z]+);")
|
|
m = regex.search(cookieheader)
|
|
if not m:
|
|
self.fail("cookie header %s does not match %s" % (cookieheader, regex))
|
|
|
|
session_id = m.group(1).decode("ascii")
|
|
self.assertIn(
|
|
session_id, username_mapping_sessions, "session id not found in map"
|
|
)
|
|
session = username_mapping_sessions[session_id]
|
|
self.assertEqual(session.remote_user_id, 123435)
|
|
self.assertEqual(session.displayname, "Jonny")
|
|
self.assertEqual(session.client_redirect_url, "http://client/")
|
|
|
|
# the expiry time should be about 15 minutes away
|
|
expected_expiry = (time.time() + 15 * 60) * 1000
|
|
self.assertGreaterEqual(session.expiry_time_ms, expected_expiry - 1000)
|
|
self.assertLessEqual(session.expiry_time_ms, expected_expiry + 1000)
|