101 lines
3.7 KiB
Python
101 lines
3.7 KiB
Python
"""Unit tests for third_party_auth/pipeline.py."""
|
|
|
|
|
|
import json
|
|
from unittest import mock
|
|
|
|
import ddt
|
|
|
|
from common.djangoapps.third_party_auth import pipeline
|
|
from common.djangoapps.third_party_auth.tests import testutil
|
|
from common.djangoapps.third_party_auth.tests.specs.base import IntegrationTestMixin
|
|
from common.djangoapps.third_party_auth.tests.specs.test_testshib import SamlIntegrationTestUtilities
|
|
from common.djangoapps.third_party_auth.tests.testutil import simulate_running_pipeline
|
|
from common.djangoapps.third_party_auth.tests.utils import skip_unless_thirdpartyauth
|
|
|
|
|
|
@skip_unless_thirdpartyauth()
|
|
@ddt.ddt
|
|
class ProviderUserStateTestCase(testutil.TestCase):
|
|
"""Tests ProviderUserState behavior."""
|
|
|
|
def test_get_unlink_form_name(self):
|
|
google_provider = self.configure_google_provider(enabled=True)
|
|
state = pipeline.ProviderUserState(google_provider, object(), None)
|
|
assert (google_provider.provider_id + '_unlink_form') == state.get_unlink_form_name()
|
|
|
|
@ddt.data(
|
|
('saml', 'tpa-saml'),
|
|
('oauth', 'google-oauth2'),
|
|
)
|
|
@ddt.unpack
|
|
def test_get_idp_logout_url_from_running_pipeline(self, idp_type, backend_name):
|
|
"""
|
|
Test idp logout url setting for running pipeline
|
|
"""
|
|
self.enable_saml()
|
|
idp_slug = "test"
|
|
idp_config = {"logout_url": "http://example.com/logout"}
|
|
getattr(self, f'configure_{idp_type}_provider')(
|
|
enabled=True,
|
|
name="Test Provider",
|
|
slug=idp_slug,
|
|
backend_name=backend_name,
|
|
other_settings=json.dumps(idp_config)
|
|
)
|
|
request = mock.MagicMock()
|
|
kwargs = {
|
|
"response": {
|
|
"idp_name": idp_slug
|
|
}
|
|
}
|
|
with simulate_running_pipeline("common.djangoapps.third_party_auth.pipeline", backend_name, **kwargs):
|
|
logout_url = pipeline.get_idp_logout_url_from_running_pipeline(request)
|
|
assert idp_config['logout_url'] == logout_url
|
|
|
|
|
|
@skip_unless_thirdpartyauth()
|
|
@ddt.ddt
|
|
class PipelineOverridesTest(SamlIntegrationTestUtilities, IntegrationTestMixin, testutil.SAMLTestCase):
|
|
"""
|
|
Tests for pipeline overrides
|
|
"""
|
|
|
|
def setUp(self):
|
|
super().setUp()
|
|
self.enable_saml()
|
|
self.provider = self.configure_saml_provider(
|
|
enabled=True,
|
|
name="Test Provider",
|
|
slug='test',
|
|
backend_name='tpa-saml'
|
|
)
|
|
|
|
@ddt.data(
|
|
('S', 'S9fe2', False),
|
|
('S', 'S9fe2', True),
|
|
('S.K', 'S_K', False),
|
|
('S.K.', 'S_K_', False),
|
|
('S.K.', 'S_K_9fe2', True),
|
|
('usernamewithcharacterlengthofmorethan30chars', 'usernamewithcharacterlengthofm', False),
|
|
('usernamewithcharacterlengthofmorethan30chars', 'usernamewithcharacterlengt9fe2', True),
|
|
)
|
|
@ddt.unpack
|
|
@mock.patch('common.djangoapps.third_party_auth.pipeline.user_exists')
|
|
def test_get_username_in_pipeline(self, idp_username, expected_username, already_exists, mock_user_exists):
|
|
"""
|
|
Test get_username method of running pipeline
|
|
"""
|
|
details = {
|
|
"username": idp_username,
|
|
"email": "test@example.com"
|
|
}
|
|
mock_user_exists.side_effect = [already_exists, False]
|
|
__, strategy = self.get_request_and_strategy()
|
|
with mock.patch('common.djangoapps.third_party_auth.pipeline.uuid4') as mock_uuid:
|
|
uuid4 = mock.Mock()
|
|
type(uuid4).hex = mock.PropertyMock(return_value='9fe2c4e93f654fdbb24c02b15259716c')
|
|
mock_uuid.return_value = uuid4
|
|
final_username = pipeline.get_username(strategy, details, self.provider.backend_class())
|
|
assert expected_username == final_username['username']
|