Files

450 lines
15 KiB
Python
Raw Permalink Normal View History

import base64
from unittest.mock import ANY, Mock
2021-05-07 18:10:07 +01:00
import pytest
from fido2 import cbor
from flask import url_for
from app.models.webauthn_credential import RegistrationError, WebAuthnCredential
@pytest.fixture
def webauthn_authentication_post_data(fake_uuid, webauthn_credential, client_request):
2022-01-04 15:40:42 +00:00
_set_up_webauthn_session(fake_uuid, client_request)
credential_id = WebAuthnCredential(webauthn_credential).to_credential_data().credential_id
return cbor.encode({
'credentialId': credential_id,
'authenticatorData': base64.b64decode(b'dKbqkhPJnC90siSSsyDPQCYqlMGpUKA5fyklC2CEHvABAAACfQ=='),
'clientDataJSON': b'{"challenge":"e-g-nXaRxMagEiqTJSyD82RsEc5if_6jyfJDy8bNKlw","origin":"https://webauthn.io","type":"webauthn.get"}', # noqa
'signature': bytes.fromhex('304502204a76f05cd52a778cdd4df1565e0004e5cc1ead360419d0f5c3a0143bf37e7f15022100932b5c308a560cfe4f244214843075b904b3eda64e85d64662a81198c386cdde'), # noqa
})
2021-05-07 18:10:07 +01:00
2022-01-04 15:40:42 +00:00
def _set_up_webauthn_session(user_id, client):
"""
Sets up session, challenge, etc as if a user with uuid `fake_uuid` has logged in and touched the webauthn token
as found in the `webauthn_credential` fixture. Sets up the session as if `begin_authentication` had been called
so that the challenge matches and the credential will validate (provided that the key belongs to the user referenced
in the session).
"""
with client.session_transaction() as session:
session['user_details'] = {'id': user_id}
session['webauthn_authentication_state'] = {
"challenge": "e-g-nXaRxMagEiqTJSyD82RsEc5if_6jyfJDy8bNKlw",
"user_verification": None
}
def test_begin_register_forbidden_unless_can_use_webauthn(
2021-05-07 18:10:07 +01:00
client_request,
platform_admin_user,
mocker,
2021-05-07 18:10:07 +01:00
):
platform_admin_user['can_use_webauthn'] = False
mocker.patch('app.user_api_client.get_user', return_value=platform_admin_user)
client_request.get('main.webauthn_begin_register', _expected_status=403)
2021-05-07 18:10:07 +01:00
def test_begin_register_returns_encoded_options(
mocker,
platform_admin_user,
2021-12-30 16:13:49 +00:00
client_request,
2021-05-17 11:37:47 +01:00
webauthn_dev_server,
2021-05-07 18:10:07 +01:00
):
mocker.patch('app.models.webauthn_credential.WebAuthnCredentials.client_method', return_value=[])
2021-05-17 15:56:15 +01:00
2021-12-30 16:13:49 +00:00
client_request.login(platform_admin_user)
2021-12-31 12:16:12 +00:00
response = client_request.get_response(
2021-12-30 16:13:49 +00:00
'main.webauthn_begin_register',
)
2021-05-07 18:10:07 +01:00
webauthn_options = cbor.decode(response.data)['publicKey']
assert webauthn_options['attestation'] == 'direct'
assert webauthn_options['timeout'] == 30_000
auth_selection = webauthn_options['authenticatorSelection']
assert auth_selection['authenticatorAttachment'] == 'cross-platform'
assert auth_selection['userVerification'] == 'discouraged'
user_options = webauthn_options['user']
assert user_options['name'] == platform_admin_user['email_address']
assert user_options['id'] == bytes(platform_admin_user['id'], 'utf-8')
relying_party_options = webauthn_options['rp']
2022-12-06 11:03:47 -05:00
assert relying_party_options['name'] == 'U.S. Notify'
2021-05-17 11:37:47 +01:00
assert relying_party_options['id'] == 'webauthn.io'
2021-05-07 18:10:07 +01:00
def test_begin_register_includes_existing_credentials(
2021-12-30 16:13:49 +00:00
client_request,
platform_admin_user,
webauthn_credential,
mocker,
):
mocker.patch(
'app.models.webauthn_credential.WebAuthnCredentials.client_method',
return_value=[webauthn_credential, webauthn_credential]
)
2021-12-30 16:13:49 +00:00
client_request.login(platform_admin_user)
2021-12-31 12:16:12 +00:00
response = client_request.get_response(
2021-12-30 16:13:49 +00:00
'main.webauthn_begin_register',
)
webauthn_options = cbor.decode(response.data)['publicKey']
assert len(webauthn_options['excludeCredentials']) == 2
2021-05-07 18:10:07 +01:00
def test_begin_register_stores_state_in_session(
2021-12-30 16:13:49 +00:00
client_request,
platform_admin_user,
mocker,
2021-05-07 18:10:07 +01:00
):
mocker.patch(
'app.models.webauthn_credential.WebAuthnCredentials.client_method',
return_value=[])
2021-12-30 16:13:49 +00:00
client_request.login(platform_admin_user)
2021-12-31 12:16:12 +00:00
client_request.get_response(
2021-12-30 16:13:49 +00:00
'main.webauthn_begin_register',
2021-05-07 18:10:07 +01:00
)
2021-12-30 16:13:49 +00:00
with client_request.session_transaction() as session:
2021-05-07 18:10:07 +01:00
assert session['webauthn_registration_state'] is not None
def test_complete_register_creates_credential(
platform_admin_user,
2021-12-30 16:13:49 +00:00
client_request,
2021-06-07 13:53:33 +01:00
mock_update_user_attribute,
2021-05-07 18:10:07 +01:00
mocker,
):
2021-12-30 16:13:49 +00:00
with client_request.session_transaction() as session:
2021-05-07 18:10:07 +01:00
session['webauthn_registration_state'] = 'state'
user_api_mock = mocker.patch(
'app.user_api_client.create_webauthn_credential_for_user'
)
credential_mock = mocker.patch(
'app.models.webauthn_credential.WebAuthnCredential.from_registration',
return_value='cred'
)
2021-12-30 16:13:49 +00:00
client_request.login(platform_admin_user)
2021-12-31 12:16:12 +00:00
client_request.post_response(
2021-12-30 16:13:49 +00:00
'main.webauthn_begin_register',
_data=cbor.encode('public_key_credential'),
_expected_status=200,
2021-05-07 18:10:07 +01:00
)
credential_mock.assert_called_once_with('state', 'public_key_credential')
user_api_mock.assert_called_once_with(platform_admin_user['id'], 'cred')
2021-06-07 13:53:33 +01:00
mock_update_user_attribute.assert_called_once_with(
platform_admin_user['id'],
auth_type='webauthn_auth',
)
2021-05-07 18:10:07 +01:00
def test_complete_register_clears_session(
2021-12-30 16:13:49 +00:00
client_request,
platform_admin_user,
2021-05-07 18:10:07 +01:00
mocker,
):
2021-12-30 16:13:49 +00:00
with client_request.session_transaction() as session:
2021-05-07 18:10:07 +01:00
session['webauthn_registration_state'] = 'state'
mocker.patch('app.user_api_client.create_webauthn_credential_for_user')
mocker.patch('app.models.webauthn_credential.WebAuthnCredential.from_registration')
2021-12-30 16:13:49 +00:00
client_request.login(platform_admin_user)
client_request.post(
'main.webauthn_complete_register',
_data=cbor.encode('public_key_credential'),
_expected_status=200,
2021-05-07 18:10:07 +01:00
)
2021-12-30 16:13:49 +00:00
with client_request.session_transaction() as session:
2021-05-07 18:10:07 +01:00
assert 'webauthn_registration_state' not in session
assert session['_flashes'] == [('default_with_tick', (
'Registration complete. Next time you sign in to Notify '
'youll be asked to use your security key.'
))]
2021-05-14 09:17:12 +01:00
def test_complete_register_handles_library_errors(
2021-12-30 16:13:49 +00:00
client_request,
platform_admin_user,
2021-05-14 09:17:12 +01:00
mocker,
):
2021-12-30 16:13:49 +00:00
with client_request.session_transaction() as session:
2021-05-14 09:17:12 +01:00
session['webauthn_registration_state'] = 'state'
mocker.patch(
'app.models.webauthn_credential.WebAuthnCredential.from_registration',
side_effect=RegistrationError('error')
)
2021-12-30 16:13:49 +00:00
client_request.login(platform_admin_user)
2021-12-31 12:16:12 +00:00
client_request.post_response(
2021-12-30 16:13:49 +00:00
'main.webauthn_complete_register',
_data=cbor.encode('public_key_credential'),
_expected_status=400,
2021-05-14 09:17:12 +01:00
)
def test_complete_register_handles_missing_state(
2021-12-30 16:13:49 +00:00
client_request,
platform_admin_user,
2021-05-14 09:17:12 +01:00
mocker,
):
2021-12-30 16:13:49 +00:00
client_request.login(platform_admin_user)
2021-12-31 12:16:12 +00:00
response = client_request.post_response(
2021-12-30 16:13:49 +00:00
'main.webauthn_complete_register',
_data=cbor.encode('public_key_credential'),
_expected_status=400,
2021-05-14 09:17:12 +01:00
)
assert cbor.decode(response.data) == 'No registration in progress'
2021-05-14 17:37:57 +01:00
2022-01-04 15:40:42 +00:00
def test_begin_authentication_forbidden_for_users_without_webauthn(client_request, mocker, platform_admin_user):
platform_admin_user['auth_type'] = 'sms_auth'
2022-01-04 15:40:42 +00:00
client_request.logout()
mocker.patch('app.user_api_client.get_user', return_value=platform_admin_user)
2022-01-04 15:40:42 +00:00
with client_request.session_transaction() as session:
session['user_details'] = {'id': '1'}
2022-01-04 15:40:42 +00:00
client_request.get(
'main.webauthn_begin_authentication',
_expected_status=403,
)
2021-05-14 17:37:57 +01:00
2022-01-04 15:40:42 +00:00
def test_begin_authentication_returns_encoded_options(
client_request,
mocker,
webauthn_credential,
platform_admin_user,
):
client_request.login(platform_admin_user)
2022-01-04 15:40:42 +00:00
with client_request.session_transaction() as session:
session['user_details'] = {'id': platform_admin_user['id']}
get_creds_mock = mocker.patch(
'app.models.webauthn_credential.WebAuthnCredentials.client_method',
return_value=[webauthn_credential]
)
2022-01-04 15:40:42 +00:00
response = client_request.get_response('main.webauthn_begin_authentication')
decoded_data = cbor.decode(response.data)
allowed_credentials = decoded_data['publicKey']['allowCredentials']
assert len(allowed_credentials) == 1
assert decoded_data['publicKey']['timeout'] == 30000
get_creds_mock.assert_called_once_with(platform_admin_user['id'])
2021-05-14 17:37:57 +01:00
2022-01-04 15:40:42 +00:00
def test_begin_authentication_stores_state_in_session(
client_request,
mocker,
webauthn_credential,
platform_admin_user,
):
client_request.login(platform_admin_user)
2022-01-04 15:40:42 +00:00
with client_request.session_transaction() as session:
session['user_details'] = {'id': platform_admin_user['id']}
mocker.patch(
'app.models.webauthn_credential.WebAuthnCredentials.client_method',
return_value=[webauthn_credential]
)
2022-01-04 15:40:42 +00:00
client_request.get_response('main.webauthn_begin_authentication')
2022-01-04 15:40:42 +00:00
with client_request.session_transaction() as session:
assert 'challenge' in session['webauthn_authentication_state']
2021-05-14 17:37:57 +01:00
def test_complete_authentication_checks_credentials(
2022-01-04 15:40:42 +00:00
client_request,
mocker,
webauthn_credential,
webauthn_dev_server,
mock_create_event,
webauthn_authentication_post_data,
platform_admin_user
):
2022-01-04 15:40:42 +00:00
client_request.logout()
_set_up_webauthn_session(platform_admin_user['id'], client_request)
mocker.patch('app.user_api_client.get_user', return_value=platform_admin_user)
mocker.patch('app.models.webauthn_credential.WebAuthnCredentials.client_method', return_value=[webauthn_credential])
2021-06-02 11:25:02 +01:00
mocker.patch(
'app.main.views.webauthn_credentials._complete_webauthn_login_attempt',
return_value=Mock(location='/foo')
)
2022-01-04 15:40:42 +00:00
response = client_request.post_response(
'main.webauthn_complete_authentication',
_data=webauthn_authentication_post_data,
_expected_status=200,
)
2021-05-17 15:56:15 +01:00
assert cbor.decode(response.data) == {'redirect_url': '/foo'}
2021-05-14 17:37:57 +01:00
def test_complete_authentication_403s_if_key_isnt_in_users_credentials(
2022-01-04 15:40:42 +00:00
client_request,
mocker,
webauthn_credential,
webauthn_dev_server,
webauthn_authentication_post_data,
platform_admin_user
):
2022-01-04 15:40:42 +00:00
client_request.logout()
_set_up_webauthn_session(platform_admin_user['id'], client_request)
mocker.patch('app.user_api_client.get_user', return_value=platform_admin_user)
# user has no keys in the database
mocker.patch('app.models.webauthn_credential.WebAuthnCredentials.client_method', return_value=[])
2021-06-02 11:25:02 +01:00
mock_verify_webauthn_login = mocker.patch('app.main.views.webauthn_credentials._complete_webauthn_login_attempt')
mock_unsuccesful_login_api_call = mocker.patch('app.user_api_client.complete_webauthn_login_attempt')
2022-01-04 15:40:42 +00:00
client_request.post_response(
'main.webauthn_complete_authentication',
_data=webauthn_authentication_post_data,
_expected_status=403,
)
2022-01-04 15:40:42 +00:00
with client_request.session_transaction() as session:
assert session['user_details']['id'] == platform_admin_user['id']
# user not logged in
assert 'user_id' not in session
# webauthn state reset so can't replay
assert 'webauthn_authentication_state' not in session
2021-05-17 15:56:15 +01:00
assert mock_verify_webauthn_login.called is False
# make sure we incremented the failed login count
mock_unsuccesful_login_api_call.assert_called_once_with(platform_admin_user['id'], False)
2021-05-17 15:56:15 +01:00
def test_complete_authentication_clears_session(
2022-01-04 15:40:42 +00:00
client_request,
mocker,
webauthn_credential,
webauthn_dev_server,
webauthn_authentication_post_data,
mock_create_event,
platform_admin_user
):
2022-01-04 15:40:42 +00:00
client_request.logout()
mocker.patch('app.user_api_client.get_user', return_value=platform_admin_user)
mocker.patch('app.user_api_client.get_webauthn_credentials_for_user', return_value=[webauthn_credential])
2021-06-02 11:25:02 +01:00
mocker.patch(
'app.main.views.webauthn_credentials._complete_webauthn_login_attempt',
return_value=Mock(location='/foo')
)
2022-01-04 15:40:42 +00:00
client_request.post('main.webauthn_complete_authentication', _data=webauthn_authentication_post_data)
2022-01-04 15:40:42 +00:00
with client_request.session_transaction() as session:
# it's important that we clear the session to ensure that we don't re-use old login artifacts in future
assert 'webauthn_authentication_state' not in session
2021-05-17 15:56:15 +01:00
2021-05-27 12:07:11 +01:00
@pytest.mark.parametrize('url_kwargs, expected_redirect', [
({}, '/accounts-or-dashboard'),
({'next': '/bar'}, '/bar'),
])
def test_verify_webauthn_login_signs_user_in(
2022-01-04 15:40:42 +00:00
client_request,
2021-05-27 12:07:11 +01:00
mocker,
mock_create_event,
platform_admin_user,
url_kwargs,
expected_redirect,
):
2022-01-04 15:40:42 +00:00
client_request.logout()
with client_request.session_transaction() as session:
2021-05-17 15:56:15 +01:00
session['user_details'] = {
'id': platform_admin_user['id'],
'email': platform_admin_user['email_address']
}
2022-01-04 15:40:42 +00:00
client_request.login(platform_admin_user)
2021-06-02 11:25:02 +01:00
mocker.patch('app.main.views.webauthn_credentials._verify_webauthn_authentication')
mocker.patch('app.user_api_client.complete_webauthn_login_attempt', return_value=(True, None))
2021-06-14 12:40:12 +01:00
mocker.patch('app.main.views.webauthn_credentials.email_needs_revalidating', return_value=False)
2021-05-17 15:56:15 +01:00
2022-01-04 15:40:42 +00:00
resp = client_request.post_response(
'main.webauthn_complete_authentication',
_expected_status=200,
**url_kwargs
)
2021-05-17 15:56:15 +01:00
2021-05-27 12:07:11 +01:00
assert cbor.decode(resp.data)['redirect_url'] == expected_redirect
2021-05-17 15:56:15 +01:00
# removes stuff from session
2022-01-04 15:40:42 +00:00
with client_request.session_transaction() as session:
2021-05-17 15:56:15 +01:00
assert 'user_details' not in session
mock_create_event.assert_called_once_with('sucessful_login', ANY)
def test_verify_webauthn_login_signs_user_in_doesnt_sign_user_in_if_api_rejects(
2022-01-04 15:40:42 +00:00
client_request,
2021-05-17 15:56:15 +01:00
mocker,
platform_admin_user,
):
2022-01-04 15:40:42 +00:00
with client_request.session_transaction() as session:
2021-05-17 15:56:15 +01:00
session['user_details'] = {
'id': platform_admin_user['id'],
'email': platform_admin_user['email_address']
}
2022-01-04 15:40:42 +00:00
client_request.login(platform_admin_user)
2021-06-02 11:25:02 +01:00
mocker.patch('app.main.views.webauthn_credentials._verify_webauthn_authentication')
mocker.patch('app.user_api_client.complete_webauthn_login_attempt', return_value=(False, None))
2021-05-17 15:56:15 +01:00
2022-01-04 15:40:42 +00:00
client_request.post(
'main.webauthn_complete_authentication',
_expected_status=403,
)
2021-05-17 15:56:15 +01:00
def test_verify_webauthn_login_signs_user_in_sends_revalidation_email_if_needed(
2022-01-04 15:40:42 +00:00
client_request,
2021-05-17 15:56:15 +01:00
mocker,
mock_send_verify_code,
platform_admin_user,
):
user_details = {
'id': platform_admin_user['id'],
'email': platform_admin_user['email_address']
}
2022-01-04 15:40:42 +00:00
with client_request.session_transaction() as session:
2021-05-17 15:56:15 +01:00
session['user_details'] = user_details
mocker.patch('app.user_api_client.get_user', return_value=platform_admin_user)
2021-06-02 11:25:02 +01:00
mocker.patch('app.main.views.webauthn_credentials._verify_webauthn_authentication')
mocker.patch('app.user_api_client.complete_webauthn_login_attempt', return_value=(True, None))
2021-06-14 12:40:12 +01:00
mocker.patch('app.main.views.webauthn_credentials.email_needs_revalidating', return_value=True)
2021-05-17 15:56:15 +01:00
2022-01-04 15:40:42 +00:00
resp = client_request.post_response(
'main.webauthn_complete_authentication',
_expected_status=200,
)
2021-05-17 15:56:15 +01:00
assert cbor.decode(resp.data)['redirect_url'] == url_for('main.revalidate_email_sent')
2021-05-17 15:56:15 +01:00
2022-01-04 15:40:42 +00:00
with client_request.session_transaction() as session:
2021-05-17 15:56:15 +01:00
# stuff stays in session so we can log them in later when they validate their email
assert session['user_details'] == user_details
mock_send_verify_code.assert_called_once_with(platform_admin_user['id'], 'email', ANY, ANY)