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
|
2022-10-25 11:53:24 -04:00
|
|
|
from flask import 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
|
|
|
)
|
2023-08-25 08:10:33 -07:00
|
|
|
from app.dao.api_key_dao import expire_api_key, get_model_api_keys, get_unsigned_secrets
|
2020-06-26 14:10:12 +01:00
|
|
|
from app.dao.services_dao import dao_fetch_service_by_id
|
2023-08-25 08:10:33 -07:00
|
|
|
from tests import create_admin_authorization_header, create_service_authorization_header
|
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):
|
2023-08-23 10:35:43 -07:00
|
|
|
with set_config_values(
|
|
|
|
|
notify_api,
|
|
|
|
|
{
|
|
|
|
|
"INTERNAL_CLIENT_API_KEYS": {
|
|
|
|
|
"my-internal-app": ["my-internal-app-secret"],
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
):
|
2021-07-29 11:52:25 +01:00
|
|
|
yield create_jwt_token(
|
2023-08-23 10:35:43 -07:00
|
|
|
client_id="my-internal-app", secret="my-internal-app-secret"
|
2021-07-29 11:52:25 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def requires_my_internal_app_auth():
|
2023-08-23 10:35:43 -07:00
|
|
|
requires_internal_auth("my-internal-app")
|
2021-07-29 11:52:25 +01:00
|
|
|
|
|
|
|
|
|
2021-08-03 15:36:41 +01:00
|
|
|
def create_custom_jwt_token(headers=None, payload=None, secret=None):
|
2021-07-27 15:07:00 +01:00
|
|
|
# code copied from notifications_python_client.authentication.py::create_jwt_token
|
2023-08-23 10:35:43 -07:00
|
|
|
headers = headers or {"typ": "JWT", "alg": "HS256"}
|
2021-08-03 15:36:41 +01:00
|
|
|
return jwt.encode(payload=payload, key=secret or str(uuid.uuid4()), headers=headers)
|
2021-07-27 15:07:00 +01:00
|
|
|
|
|
|
|
|
|
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-08-04 15:24:49 +01:00
|
|
|
def test_requires_auth_should_allow_valid_token_for_request(client, sample_api_key):
|
|
|
|
|
header = create_service_authorization_header(sample_api_key.service_id)
|
2023-08-23 10:35:43 -07:00
|
|
|
response = client.get("/notifications", headers=[header])
|
2021-07-29 11:00:10 +01:00
|
|
|
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):
|
2021-08-04 15:24:49 +01:00
|
|
|
header = create_admin_authorization_header()
|
2023-08-23 10:35:43 -07:00
|
|
|
response = client.get("/service", headers=[header])
|
2021-07-29 11:00:10 +01:00
|
|
|
assert response.status_code == 200
|
|
|
|
|
|
|
|
|
|
|
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)
|
2023-08-23 10:35:43 -07: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):
|
2023-08-23 10:35:43 -07:00
|
|
|
request.headers = {"Authorization": "Basic 1234"}
|
2017-12-12 18:13:31 +00:00
|
|
|
with pytest.raises(AuthError) as exc:
|
2021-07-28 13:55:55 +01:00
|
|
|
_get_auth_token(request)
|
2023-08-23 10:35:43 -07:00
|
|
|
assert (
|
|
|
|
|
exc.value.short_message
|
|
|
|
|
== "Unauthorized: authentication bearer scheme must be used"
|
|
|
|
|
)
|
2017-03-16 10:42:45 +00:00
|
|
|
|
|
|
|
|
|
2023-08-23 10:35:43 -07:00
|
|
|
@pytest.mark.parametrize("scheme", ["bearer", "Bearer"])
|
2021-07-28 13:55:55 +01:00
|
|
|
def test_get_auth_token_should_allow_valid_token(client, scheme):
|
2023-08-23 10:35:43 -07:00
|
|
|
token = create_jwt_token(client_id="something", secret="secret")
|
|
|
|
|
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):
|
2023-08-23 10:35:43 -07: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)
|
2023-08-23 10:35:43 -07: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(
|
2023-08-23 10:35:43 -07:00
|
|
|
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])
|
2023-08-23 10:35:43 -07:00
|
|
|
assert exc.value.short_message == "Invalid token: algorithm used is not HS256"
|
2019-12-11 16:04:38 +00:00
|
|
|
|
|
|
|
|
|
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
|
|
|
):
|
2023-08-23 10:35:43 -07:00
|
|
|
token = create_custom_jwt_token(payload={"iss": "something"})
|
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(
|
2023-08-23 10:35:43 -07:00
|
|
|
payload={"iss": "something", "iat": int(time.time()) - 60},
|
2021-08-03 15:36:41 +01:00
|
|
|
secret=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])
|
2023-08-23 10:35:43 -07: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={
|
2023-08-23 10:35:43 -07:00
|
|
|
"iss": "something",
|
|
|
|
|
"iat": int(time.time()),
|
|
|
|
|
"aud": "notifications.service.gov.uk", # extra claim that we don't support
|
2021-07-27 15:07:00 +01:00
|
|
|
},
|
2021-08-03 15:36:41 +01:00
|
|
|
secret=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
|
|
|
|
|
|
|
|
|
2023-08-23 10:35:43 -07: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(
|
2023-08-23 10:35:43 -07:00
|
|
|
secret="not-so-secret", 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])
|
2023-08-23 10:35:43 -07:00
|
|
|
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:
|
2023-08-23 10:35:43 -07:00
|
|
|
_decode_jwt_token(
|
|
|
|
|
token, [sample_api_key, sample_test_api_key], service_id="1234"
|
|
|
|
|
)
|
2020-02-19 17:50:00 +00:00
|
|
|
|
2023-08-23 10:35:43 -07:00
|
|
|
assert exc.value.short_message == "Invalid token: API key revoked"
|
|
|
|
|
assert exc.value.service_id == "1234"
|
2021-07-28 17:32:23 +01:00
|
|
|
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:
|
2023-08-23 10:35:43 -07:00
|
|
|
_decode_jwt_token("token", [])
|
2021-07-28 17:32:23 +01:00
|
|
|
assert exc.value.short_message == "Invalid token: API key not found"
|
2016-01-20 10:57:46 +00:00
|
|
|
|
|
|
|
|
|
2023-08-23 10:35:43 -07:00
|
|
|
@pytest.mark.parametrize("service_id", ["not-a-valid-id", 1234])
|
2021-07-28 17:32:23 +01:00
|
|
|
def test_requires_auth_should_not_allow_service_id_with_the_wrong_data_type(
|
2023-08-23 10:35:43 -07:00
|
|
|
client, 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
|
|
|
|
2023-08-23 10:35:43 -07:00
|
|
|
request.headers = {"Authorization": "Bearer {}".format(token)}
|
2021-07-29 11:18:43 +01:00
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
requires_auth()
|
2023-08-23 10:35:43 -07:00
|
|
|
assert (
|
|
|
|
|
exc.value.short_message
|
|
|
|
|
== "Invalid token: service id is not the right data type"
|
|
|
|
|
)
|
2017-03-16 10:42:45 +00:00
|
|
|
|
|
|
|
|
|
2023-08-23 10:35:43 -07:00
|
|
|
def test_requires_auth_returns_error_when_service_doesnt_exist(client, sample_api_key):
|
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
|
|
|
|
2023-08-23 10:35:43 -07:00
|
|
|
request.headers = {"Authorization": "Bearer {}".format(token)}
|
2021-07-29 11:18:43 +01:00
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
requires_auth()
|
2023-08-23 10:35:43 -07:00
|
|
|
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
|
|
|
|
|
|
2023-08-23 10:35:43 -07:00
|
|
|
request.headers = {"Authorization": "Bearer {}".format(service_jwt_token)}
|
2021-07-29 11:18:43 +01:00
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
requires_auth()
|
2023-08-23 10:35:43 -07:00
|
|
|
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,
|
|
|
|
|
):
|
2023-08-23 10:35:43 -07:00
|
|
|
request.headers = {"Authorization": "Bearer {}".format(service_jwt_token)}
|
2021-07-29 11:18:43 +01:00
|
|
|
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)
|
2023-08-23 10:35:43 -07:00
|
|
|
request.headers = {"Authorization": "Bearer {}".format(service_jwt_token)}
|
2021-07-29 12:09:01 +01:00
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
requires_auth()
|
2023-08-23 10:35:43 -07:00
|
|
|
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(
|
2023-08-23 10:35:43 -07:00
|
|
|
mocker, client, service_jwt_token
|
2021-07-29 11:55:04 +01:00
|
|
|
):
|
|
|
|
|
mock_get_api_keys = mocker.patch(
|
2023-08-23 10:35:43 -07:00
|
|
|
"app.serialised_models.get_model_api_keys",
|
2021-07-29 11:55:04 +01:00
|
|
|
wraps=get_model_api_keys,
|
|
|
|
|
)
|
|
|
|
|
mock_get_service = mocker.patch(
|
2023-08-23 10:35:43 -07:00
|
|
|
"app.serialised_models.dao_fetch_service_by_id",
|
2021-07-29 11:55:04 +01:00
|
|
|
wraps=dao_fetch_service_by_id,
|
|
|
|
|
)
|
|
|
|
|
|
2023-08-23 10:35:43 -07:00
|
|
|
request.headers = {"Authorization": f"Bearer {service_jwt_token}"}
|
2021-07-29 11:55:04 +01:00
|
|
|
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(
|
2023-08-23 10:35:43 -07:00
|
|
|
"app.authentication.auth.request_helper.check_proxy_header_before_request"
|
2021-07-29 11:52:25 +01:00
|
|
|
)
|
|
|
|
|
|
2023-08-23 10:35:43 -07:00
|
|
|
request.headers = {"Authorization": "Bearer {}".format(internal_jwt_token)}
|
2021-07-29 11:52:25 +01:00
|
|
|
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:
|
2023-08-23 10:35:43 -07:00
|
|
|
requires_internal_auth("another-app")
|
|
|
|
|
assert str(exc.value) == "Unknown client_id for internal auth"
|
2021-07-29 11:52:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_requires_internal_auth_errors_for_api_app_mismatch(
|
2023-08-23 10:35:43 -07:00
|
|
|
client, internal_jwt_token, service_jwt_token
|
2021-07-29 11:52:25 +01:00
|
|
|
):
|
2023-08-23 10:35:43 -07:00
|
|
|
request.headers = {"Authorization": "Bearer {}".format(service_jwt_token)}
|
2021-07-29 11:52:25 +01:00
|
|
|
with pytest.raises(AuthError) as exc:
|
|
|
|
|
requires_my_internal_app_auth()
|
2023-08-23 10:35:43 -07:00
|
|
|
assert exc.value.short_message == "Unauthorized: not allowed to perform this action"
|
2021-07-29 11:52:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_requires_internal_auth_sets_global_variables(
|
|
|
|
|
client,
|
|
|
|
|
internal_jwt_token,
|
|
|
|
|
):
|
2023-08-23 10:35:43 -07:00
|
|
|
request.headers = {"Authorization": "Bearer {}".format(internal_jwt_token)}
|
2021-07-29 11:52:25 +01:00
|
|
|
requires_my_internal_app_auth()
|
2023-08-23 10:35:43 -07:00
|
|
|
assert g.service_id == "my-internal-app"
|