2016-11-03 17:05:25 +00:00
|
|
|
import time
|
2021-03-10 13:55:06 +00:00
|
|
|
import uuid
|
2016-06-29 16:33:02 +01:00
|
|
|
|
2021-03-10 13:55:06 +00:00
|
|
|
import jwt
|
2016-06-29 16:33:02 +01:00
|
|
|
import pytest
|
2021-07-29 11:52:25 +01:00
|
|
|
from flask import current_app, g, request
|
2016-06-29 16:33:02 +01:00
|
|
|
from notifications_python_client.authentication import create_jwt_token
|
|
|
|
|
|
2021-07-29 12:09:01 +01:00
|
|
|
from app import db
|
2021-03-10 13:55:06 +00:00
|
|
|
from app.authentication.auth import (
|
|
|
|
|
GENERAL_TOKEN_ERROR_MESSAGE,
|
|
|
|
|
AuthError,
|
2021-07-28 17:32:23 +01:00
|
|
|
_decode_jwt_token,
|
2021-07-28 13:55:55 +01:00
|
|
|
_get_auth_token,
|
|
|
|
|
_get_token_issuer,
|
2021-07-29 11:18:43 +01:00
|
|
|
requires_auth,
|
2021-07-29 11:52:25 +01:00
|
|
|
requires_internal_auth,
|
2021-03-10 13:55:06 +00:00
|
|
|
)
|
2020-06-26 14:10:12 +01:00
|
|
|
from app.dao.api_key_dao import (
|
|
|
|
|
expire_api_key,
|
|
|
|
|
get_model_api_keys,
|
2021-03-10 13:55:06 +00:00
|
|
|
get_unsigned_secrets,
|
2020-06-26 14:10:12 +01:00
|
|
|
)
|
|
|
|
|
from app.dao.services_dao import dao_fetch_service_by_id
|
2021-07-28 17:32:23 +01:00
|
|
|
from tests.conftest import set_config_values
|
2017-12-14 17:03:46 +00:00
|
|
|
|
2016-01-14 17:45:30 +00:00
|
|
|
|
2021-07-29 11:52:25 +01:00
|
|
|
@pytest.fixture
|
|
|
|
|
def internal_jwt_token(notify_api):
|
|
|
|
|
with set_config_values(notify_api, {
|
|
|
|
|
'INTERNAL_CLIENT_API_KEYS': {
|
|
|
|
|
'my-internal-app': ['my-internal-app-secret'],
|
|
|
|
|
}
|
|
|
|
|
}):
|
|
|
|
|
yield create_jwt_token(
|
|
|
|
|
client_id='my-internal-app',
|
|
|
|
|
secret='my-internal-app-secret'
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def requires_my_internal_app_auth():
|
|
|
|
|
requires_internal_auth('my-internal-app')
|
|
|
|
|
|
|
|
|
|
|
2021-07-27 15:07:00 +01:00
|
|
|
def create_custom_jwt_token(headers=None, payload=None, key=None):
|
|
|
|
|
# code copied from notifications_python_client.authentication.py::create_jwt_token
|
|
|
|
|
headers = headers or {"typ": 'JWT', "alg": 'HS256'}
|
|
|
|
|
return jwt.encode(payload=payload, key=key or str(uuid.uuid4()), headers=headers)
|
|
|
|
|
|
|
|
|
|
|
2021-07-27 17:25:22 +01:00
|
|
|
@pytest.fixture
|
|
|
|
|
def service_jwt_secret(sample_api_key):
|
|
|
|
|
return get_unsigned_secrets(sample_api_key.service_id)[0]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
|
def service_jwt_token(sample_api_key, service_jwt_secret):
|
|
|
|
|
return create_jwt_token(
|
|
|
|
|
secret=service_jwt_secret,
|
|
|
|
|
client_id=str(sample_api_key.service_id),
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
2021-07-29 12:18:10 +01:00
|
|
|
def test_requires_auth_should_allow_valid_token_for_request(
|
2021-07-29 11:00:10 +01:00
|
|
|
client,
|
|
|
|
|
service_jwt_token,
|
|
|
|
|
):
|
|
|
|
|
response = client.get('/notifications', headers={'Authorization': 'Bearer {}'.format(service_jwt_token)})
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
|
|
|
|
|
2021-07-29 12:18:10 +01:00
|
|
|
def test_requires_admin_auth_should_allow_valid_token_for_request(client):
|
|
|
|
|
admin_jwt_client_id = current_app.config['ADMIN_CLIENT_ID']
|
2021-07-29 11:52:25 +01:00
|
|
|
admin_jwt_secret = current_app.config['INTERNAL_CLIENT_API_KEYS'][admin_jwt_client_id][0]
|
|
|
|
|
admin_jwt_token = create_jwt_token(admin_jwt_secret, admin_jwt_client_id)
|
|
|
|
|
|
2021-07-29 11:00:10 +01:00
|
|
|
response = client.get('/service', headers={'Authorization': 'Bearer {}'.format(admin_jwt_token)})
|
|
|
|
|
assert response.status_code == 200
|
2021-07-29 12:25:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_requires_govuk_alerts_auth_should_allow_valid_token_for_request(client):
|
|
|
|
|
govuk_alerts_jwt_client_id = current_app.config['GOVUK_ALERTS_CLIENT_ID']
|
|
|
|
|
govuk_alerts_jwt_secret = current_app.config['INTERNAL_CLIENT_API_KEYS'][govuk_alerts_jwt_client_id][0]
|
|
|
|
|
govuk_alerts_jwt_token = create_jwt_token(govuk_alerts_jwt_secret, govuk_alerts_jwt_client_id)
|
|
|
|
|
|
|
|
|
|
response = client.get('/v2/govuk-alerts', headers={'Authorization': 'Bearer {}'.format(govuk_alerts_jwt_token)})
|
|
|
|
|
assert response.status_code == 200
|
2021-07-29 11:00:10 +01:00
|
|
|
|
|
|
|
|
|
2021-07-28 13:55:55 +01:00
|
|
|
def test_get_auth_token_should_not_allow_request_with_no_token(client):
|
2017-12-12 18:13:31 +00:00
|
|
|
request.headers = {}
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
2021-07-28 13:55:55 +01:00
|
|
|
_get_auth_token(request)
|
2020-01-24 17:32:41 +00:00
|
|
|
assert exc.value.short_message == 'Unauthorized: authentication token must be provided'
|
2017-03-16 10:42:45 +00:00
|
|
|
|
|
|
|
|
|
2021-07-28 13:55:55 +01:00
|
|
|
def test_get_auth_token_should_not_allow_request_with_incorrect_header(client):
|
2017-12-12 18:13:31 +00:00
|
|
|
request.headers = {'Authorization': 'Basic 1234'}
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
2021-07-28 13:55:55 +01:00
|
|
|
_get_auth_token(request)
|
2020-01-24 17:32:41 +00:00
|
|
|
assert exc.value.short_message == 'Unauthorized: authentication bearer scheme must be used'
|
2017-03-16 10:42:45 +00:00
|
|
|
|
|
|
|
|
|
2021-07-28 13:55:55 +01:00
|
|
|
@pytest.mark.parametrize('scheme', ['bearer', 'Bearer'])
|
|
|
|
|
def test_get_auth_token_should_allow_valid_token(client, scheme):
|
|
|
|
|
token = create_jwt_token(client_id='something', secret='secret')
|
2021-07-28 17:32:23 +01:00
|
|
|
request.headers = {'Authorization': '{} {}'.format(scheme, token)}
|
2021-07-28 13:55:55 +01:00
|
|
|
assert _get_auth_token(request) == token
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_get_token_issuer_should_not_allow_request_with_incorrect_token(client):
|
2017-12-12 18:13:31 +00:00
|
|
|
with pytest.raises(AuthError) as exc:
|
2021-07-28 13:55:55 +01:00
|
|
|
_get_token_issuer("Bearer 1234")
|
2020-01-24 17:32:41 +00:00
|
|
|
assert exc.value.short_message == GENERAL_TOKEN_ERROR_MESSAGE
|
2017-03-16 10:42:45 +00:00
|
|
|
|
|
|
|
|
|
2021-07-28 13:55:55 +01:00
|
|
|
def test_get_token_issuer_should_not_allow_request_with_no_iss(client):
|
2021-07-27 15:07:00 +01:00
|
|
|
token = create_custom_jwt_token(
|
|
|
|
|
payload={'iat': int(time.time())}
|
|
|
|
|
)
|
2016-11-03 17:05:25 +00:00
|
|
|
|
2017-12-12 18:13:31 +00:00
|
|
|
with pytest.raises(AuthError) as exc:
|
2021-07-28 13:55:55 +01:00
|
|
|
_get_token_issuer(token)
|
2017-12-12 18:13:31 +00:00
|
|
|
assert exc.value.short_message == 'Invalid token: iss field not provided'
|
2016-11-03 17:05:25 +00:00
|
|
|
|
|
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
def test_decode_jwt_token_should_not_allow_non_hs256_algorithm(client, sample_api_key):
|
2021-07-27 15:07:00 +01:00
|
|
|
token = create_custom_jwt_token(
|
|
|
|
|
headers={"typ": 'JWT', "alg": 'HS512'},
|
2021-07-28 17:32:23 +01:00
|
|
|
payload={},
|
2021-07-27 15:07:00 +01:00
|
|
|
)
|
2019-12-11 16:04:38 +00:00
|
|
|
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
2021-07-28 17:32:23 +01:00
|
|
|
_decode_jwt_token(token, [sample_api_key])
|
2019-12-11 16:04:38 +00:00
|
|
|
assert exc.value.short_message == 'Invalid token: algorithm used is not HS256'
|
|
|
|
|
|
|
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
def test_decode_jwt_token_should_not_allow_no_iat(
|
2021-07-27 17:25:22 +01:00
|
|
|
client,
|
2021-07-28 17:32:23 +01:00
|
|
|
sample_api_key,
|
2021-07-27 17:25:22 +01:00
|
|
|
):
|
2021-07-27 15:07:00 +01:00
|
|
|
token = create_custom_jwt_token(
|
2021-07-28 17:32:23 +01:00
|
|
|
payload={'iss': 'something'}
|
2021-07-27 15:07:00 +01:00
|
|
|
)
|
2017-12-14 17:03:46 +00:00
|
|
|
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
2021-07-28 17:32:23 +01:00
|
|
|
_decode_jwt_token(token, [sample_api_key])
|
2021-07-27 18:04:12 +01:00
|
|
|
assert exc.value.short_message == "Invalid token: API key not found"
|
2020-02-19 17:50:00 +00:00
|
|
|
|
|
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
def test_decode_jwt_token_should_not_allow_old_iat(
|
2021-07-27 17:25:22 +01:00
|
|
|
client,
|
2021-07-28 17:32:23 +01:00
|
|
|
sample_api_key,
|
2021-07-27 17:25:22 +01:00
|
|
|
):
|
2021-07-27 15:07:00 +01:00
|
|
|
token = create_custom_jwt_token(
|
2021-07-28 17:32:23 +01:00
|
|
|
payload={'iss': 'something', 'iat': int(time.time()) - 60},
|
|
|
|
|
key=sample_api_key.secret,
|
2021-07-27 15:07:00 +01:00
|
|
|
)
|
2020-02-19 17:50:00 +00:00
|
|
|
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
2021-07-28 17:32:23 +01:00
|
|
|
_decode_jwt_token(token, [sample_api_key])
|
2021-07-27 18:04:12 +01:00
|
|
|
assert exc.value.short_message == "Error: Your system clock must be accurate to within 30 seconds"
|
2016-11-03 17:05:25 +00:00
|
|
|
|
|
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
def test_decode_jwt_token_should_not_allow_extra_claims(
|
2021-07-27 17:25:22 +01:00
|
|
|
client,
|
|
|
|
|
sample_api_key,
|
|
|
|
|
):
|
2021-07-27 15:07:00 +01:00
|
|
|
token = create_custom_jwt_token(
|
|
|
|
|
payload={
|
2021-07-28 17:32:23 +01:00
|
|
|
'iss': 'something',
|
2021-07-27 15:07:00 +01:00
|
|
|
'iat': int(time.time()),
|
|
|
|
|
'aud': 'notifications.service.gov.uk' # extra claim that we don't support
|
|
|
|
|
},
|
2021-07-28 17:32:23 +01:00
|
|
|
key=sample_api_key.secret,
|
2021-07-27 15:07:00 +01:00
|
|
|
)
|
2020-01-24 17:25:49 +00:00
|
|
|
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
2021-07-28 17:32:23 +01:00
|
|
|
_decode_jwt_token(token, [sample_api_key])
|
2020-01-24 17:32:41 +00:00
|
|
|
assert exc.value.short_message == GENERAL_TOKEN_ERROR_MESSAGE
|
2020-01-24 17:25:49 +00:00
|
|
|
|
|
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
def test_decode_jwt_token_should_not_allow_invalid_secret(
|
|
|
|
|
client,
|
|
|
|
|
sample_api_key
|
|
|
|
|
):
|
2017-03-16 10:42:45 +00:00
|
|
|
token = create_jwt_token(
|
|
|
|
|
secret="not-so-secret",
|
2021-07-28 17:32:23 +01:00
|
|
|
client_id=str(sample_api_key.service_id)
|
2017-03-16 10:42:45 +00:00
|
|
|
)
|
2016-01-14 17:45:30 +00:00
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
_decode_jwt_token(token, [sample_api_key])
|
|
|
|
|
assert exc.value.short_message == 'Invalid token: API key not found'
|
2016-01-14 17:45:30 +00:00
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
|
|
|
|
|
def test_decode_jwt_token_should_allow_multiple_api_keys(
|
2021-07-27 17:25:22 +01:00
|
|
|
client,
|
2021-07-28 17:32:23 +01:00
|
|
|
sample_api_key,
|
|
|
|
|
sample_test_api_key,
|
2021-07-27 17:25:22 +01:00
|
|
|
):
|
|
|
|
|
token = create_jwt_token(
|
2021-07-28 17:32:23 +01:00
|
|
|
secret=sample_test_api_key.secret,
|
|
|
|
|
client_id=str(sample_test_api_key.service_id),
|
2017-03-16 10:42:45 +00:00
|
|
|
)
|
|
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
# successful if no error is raised
|
|
|
|
|
_decode_jwt_token(token, [sample_api_key, sample_test_api_key])
|
2017-03-16 10:42:45 +00:00
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
|
|
|
|
|
def test_decode_jwt_token_should_allow_some_expired_keys(
|
2021-07-27 17:25:22 +01:00
|
|
|
client,
|
2021-07-28 17:32:23 +01:00
|
|
|
sample_api_key,
|
|
|
|
|
sample_test_api_key,
|
2021-07-27 17:25:22 +01:00
|
|
|
):
|
2021-07-28 17:32:23 +01:00
|
|
|
expire_api_key(sample_api_key.service_id, sample_api_key.id)
|
2017-03-16 10:42:45 +00:00
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
token = create_jwt_token(
|
|
|
|
|
secret=sample_test_api_key.secret,
|
|
|
|
|
client_id=str(sample_test_api_key.service_id),
|
|
|
|
|
)
|
2017-03-16 10:42:45 +00:00
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
# successful if no error is raised
|
|
|
|
|
_decode_jwt_token(token, [sample_api_key, sample_test_api_key])
|
2017-03-16 10:42:45 +00:00
|
|
|
|
|
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
def test_decode_jwt_token_errors_when_all_api_keys_are_expired(
|
2021-07-27 17:25:22 +01:00
|
|
|
client,
|
2021-07-28 17:32:23 +01:00
|
|
|
sample_api_key,
|
|
|
|
|
sample_test_api_key,
|
2021-07-27 17:25:22 +01:00
|
|
|
):
|
2021-07-28 17:32:23 +01:00
|
|
|
expire_api_key(sample_api_key.service_id, sample_api_key.id)
|
|
|
|
|
expire_api_key(sample_test_api_key.service_id, sample_test_api_key.id)
|
2021-07-26 16:45:10 +01:00
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
token = create_jwt_token(
|
|
|
|
|
secret=sample_test_api_key.secret,
|
|
|
|
|
client_id=str(sample_test_api_key.service_id),
|
|
|
|
|
)
|
2020-02-19 17:50:00 +00:00
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
_decode_jwt_token(token, [sample_api_key, sample_test_api_key], service_id='1234')
|
2020-02-19 17:50:00 +00:00
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
assert exc.value.short_message == 'Invalid token: API key revoked'
|
|
|
|
|
assert exc.value.service_id == '1234'
|
|
|
|
|
assert exc.value.api_key_id == sample_test_api_key.id
|
2020-02-19 17:50:00 +00:00
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
|
|
|
|
|
def test_decode_jwt_token_returns_error_with_no_secrets(client):
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
_decode_jwt_token('token', [])
|
|
|
|
|
assert exc.value.short_message == "Invalid token: API key not found"
|
2016-01-20 10:57:46 +00:00
|
|
|
|
|
|
|
|
|
2021-07-28 17:32:23 +01:00
|
|
|
@pytest.mark.parametrize('service_id', ['not-a-valid-id', 1234])
|
|
|
|
|
def test_requires_auth_should_not_allow_service_id_with_the_wrong_data_type(
|
2021-07-27 17:25:22 +01:00
|
|
|
client,
|
2021-07-28 17:32:23 +01:00
|
|
|
service_jwt_secret,
|
|
|
|
|
service_id
|
2021-07-27 17:25:22 +01:00
|
|
|
):
|
2017-03-16 10:42:45 +00:00
|
|
|
token = create_jwt_token(
|
2021-07-28 17:32:23 +01:00
|
|
|
client_id=service_id,
|
|
|
|
|
secret=service_jwt_secret,
|
2021-07-27 17:25:22 +01:00
|
|
|
)
|
2021-07-29 11:18:43 +01:00
|
|
|
|
|
|
|
|
request.headers = {'Authorization': "Bearer {}".format(token)}
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
requires_auth()
|
|
|
|
|
assert exc.value.short_message == 'Invalid token: service id is not the right data type'
|
2017-03-16 10:42:45 +00:00
|
|
|
|
|
|
|
|
|
2021-07-27 17:25:22 +01:00
|
|
|
def test_requires_auth_returns_error_when_service_doesnt_exist(
|
2017-03-16 10:42:45 +00:00
|
|
|
client,
|
2016-09-23 11:07:49 +01:00
|
|
|
sample_api_key
|
2016-09-16 08:36:44 +01:00
|
|
|
):
|
2017-03-16 10:42:45 +00:00
|
|
|
# get service ID and secret the wrong way around
|
|
|
|
|
token = create_jwt_token(
|
|
|
|
|
secret=str(sample_api_key.service_id),
|
2021-07-29 11:18:43 +01:00
|
|
|
client_id=str(sample_api_key.id),
|
2017-03-16 10:42:45 +00:00
|
|
|
)
|
2021-07-29 11:18:43 +01:00
|
|
|
|
|
|
|
|
request.headers = {'Authorization': 'Bearer {}'.format(token)}
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
requires_auth()
|
|
|
|
|
assert exc.value.short_message == 'Invalid token: service not found'
|
2016-09-16 08:36:44 +01:00
|
|
|
|
|
|
|
|
|
2021-07-27 17:25:22 +01:00
|
|
|
def test_requires_auth_returns_error_when_service_inactive(
|
|
|
|
|
client,
|
|
|
|
|
sample_api_key,
|
|
|
|
|
service_jwt_token,
|
|
|
|
|
):
|
2016-11-10 11:07:12 +00:00
|
|
|
sample_api_key.service.active = False
|
|
|
|
|
|
2021-07-29 11:18:43 +01:00
|
|
|
request.headers = {'Authorization': 'Bearer {}'.format(service_jwt_token)}
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
requires_auth()
|
|
|
|
|
assert exc.value.short_message == 'Invalid token: service is archived'
|
2016-11-10 11:07:12 +00:00
|
|
|
|
|
|
|
|
|
2021-07-29 12:09:01 +01:00
|
|
|
def test_requires_auth_should_assign_global_variables(
|
2021-07-29 11:18:43 +01:00
|
|
|
client,
|
2021-07-27 17:25:22 +01:00
|
|
|
sample_api_key,
|
|
|
|
|
service_jwt_token,
|
|
|
|
|
):
|
2021-07-29 11:18:43 +01:00
|
|
|
request.headers = {'Authorization': 'Bearer {}'.format(service_jwt_token)}
|
|
|
|
|
requires_auth()
|
2021-07-29 12:09:01 +01:00
|
|
|
assert g.api_user.id == sample_api_key.id
|
|
|
|
|
assert g.service_id == sample_api_key.service_id
|
|
|
|
|
assert g.authenticated_service.id == str(sample_api_key.service_id)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_requires_auth_errors_if_service_has_no_api_keys(
|
|
|
|
|
client,
|
|
|
|
|
sample_api_key,
|
|
|
|
|
service_jwt_token,
|
|
|
|
|
):
|
|
|
|
|
db.session.delete(sample_api_key)
|
|
|
|
|
request.headers = {'Authorization': 'Bearer {}'.format(service_jwt_token)}
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
requires_auth()
|
|
|
|
|
assert exc.value.short_message == 'Invalid token: service has no API keys'
|
2016-07-22 15:10:37 +01:00
|
|
|
|
|
|
|
|
|
2021-07-29 11:55:04 +01:00
|
|
|
def test_requires_auth_should_cache_service_and_api_key_lookups(
|
|
|
|
|
mocker,
|
|
|
|
|
client,
|
|
|
|
|
service_jwt_token
|
|
|
|
|
):
|
|
|
|
|
mock_get_api_keys = mocker.patch(
|
|
|
|
|
'app.serialised_models.get_model_api_keys',
|
|
|
|
|
wraps=get_model_api_keys,
|
|
|
|
|
)
|
|
|
|
|
mock_get_service = mocker.patch(
|
|
|
|
|
'app.serialised_models.dao_fetch_service_by_id',
|
|
|
|
|
wraps=dao_fetch_service_by_id,
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
request.headers = {'Authorization': f'Bearer {service_jwt_token}'}
|
|
|
|
|
requires_auth()
|
|
|
|
|
requires_auth() # second request
|
|
|
|
|
|
|
|
|
|
mock_get_api_keys.assert_called_once()
|
|
|
|
|
mock_get_service.assert_called_once()
|
|
|
|
|
|
|
|
|
|
|
2021-07-29 11:52:25 +01:00
|
|
|
def test_requires_internal_auth_checks_proxy_key(
|
|
|
|
|
client,
|
|
|
|
|
mocker,
|
|
|
|
|
internal_jwt_token,
|
2021-07-27 17:25:22 +01:00
|
|
|
):
|
2021-07-29 11:52:25 +01:00
|
|
|
proxy_check_mock = mocker.patch(
|
|
|
|
|
'app.authentication.auth.request_helper.check_proxy_header_before_request'
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
request.headers = {'Authorization': 'Bearer {}'.format(internal_jwt_token)}
|
|
|
|
|
requires_my_internal_app_auth()
|
|
|
|
|
proxy_check_mock.assert_called_once()
|
2018-03-27 17:37:09 +01:00
|
|
|
|
2021-07-29 11:52:25 +01:00
|
|
|
|
|
|
|
|
def test_requires_internal_auth_errors_for_unknown_app(client):
|
|
|
|
|
with pytest.raises(TypeError) as exc:
|
|
|
|
|
requires_internal_auth('another-app')
|
|
|
|
|
assert str(exc.value) == 'Unknown client_id for internal auth'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_requires_internal_auth_errors_for_api_app_mismatch(
|
|
|
|
|
client,
|
|
|
|
|
internal_jwt_token,
|
|
|
|
|
service_jwt_token
|
|
|
|
|
):
|
|
|
|
|
request.headers = {'Authorization': 'Bearer {}'.format(service_jwt_token)}
|
|
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
requires_my_internal_app_auth()
|
|
|
|
|
assert exc.value.short_message == 'Unauthorized: not allowed to perform this action'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_requires_internal_auth_sets_global_variables(
|
|
|
|
|
client,
|
|
|
|
|
internal_jwt_token,
|
|
|
|
|
):
|
|
|
|
|
request.headers = {'Authorization': 'Bearer {}'.format(internal_jwt_token)}
|
|
|
|
|
requires_my_internal_app_auth()
|
|
|
|
|
assert g.service_id == 'my-internal-app'
|