-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mobile app proxy gateway #3449
Merged
Merged
Mobile app proxy gateway #3449
Changes from 5 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
3e9e760
WIP
joeyorlando 3eede8b
disable MOBILE_APP_GATEWAY_ENABLED by default
joeyorlando 2b937cd
WIP
joeyorlando 72f5351
WIP
joeyorlando 120046d
remove outdated todo comment
joeyorlando ad6b7b7
Merge branch 'dev' into jorlando/mobile-app-proxy
joeyorlando bd303e0
update changelog
joeyorlando efe7f11
address PR comment
joeyorlando ceab40a
Merge branch 'dev' into jorlando/mobile-app-proxy
joeyorlando 9856926
update migration file
joeyorlando 4ffdff3
update tests
joeyorlando a4a0cca
Merge branch 'dev' into jorlando/mobile-app-proxy
joeyorlando 08dc307
Merge branch 'dev' into jorlando/mobile-app-proxy
joeyorlando File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
317 changes: 317 additions & 0 deletions
317
engine/apps/mobile_app/tests/test_mobile_app_gateway.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,317 @@ | ||
import json | ||
from unittest.mock import patch | ||
|
||
import pytest | ||
from django.urls import reverse | ||
from django.utils import timezone | ||
from rest_framework import status | ||
from rest_framework.test import APIClient | ||
from rest_framework.views import APIView | ||
|
||
from apps.mobile_app.views import MobileAppGatewayView | ||
|
||
DOWNSTREAM_BACKEND = "incident" | ||
MOCK_DOWNSTREAM_URL = "https://mockdownstream.com" | ||
MOCK_DOWNSTREAM_INCIDENT_API_URL = "https://mockdownstreamincidentapi.com" | ||
MOCK_DOWNSTREAM_HEADERS = {"Authorization": "Bearer mock_jwt"} | ||
MOCK_DOWNSTREAM_RESPONSE_DATA = {"foo": "bar"} | ||
|
||
MOCK_TIMEZONE_NOW = timezone.datetime(2021, 1, 1, 3, 4, 5, tzinfo=timezone.utc) | ||
MOCK_JWT = "mncn,zxcnv,mznxcv" | ||
MOCK_JWT_PRIVATE_KEY = "asd,mzcxn,vmnzxcv,mnzx,cvmnzaslkdjflaksjdf" | ||
|
||
|
||
@pytest.fixture(autouse=True) | ||
def enable_urls(settings, reload_urls): | ||
settings.MOBILE_APP_GATEWAY_ENABLED = True | ||
settings.MOBILE_APP_GATEWAY_RSA_PRIVATE_KEY = MOCK_JWT_PRIVATE_KEY | ||
|
||
reload_urls() | ||
|
||
|
||
class MockResponse: | ||
def __init__(self, status_code=status.HTTP_200_OK, data=MOCK_DOWNSTREAM_RESPONSE_DATA): | ||
self.status_code = status_code | ||
self.data = data | ||
|
||
def json(self): | ||
return self.data | ||
|
||
|
||
@pytest.mark.django_db | ||
@patch("apps.mobile_app.views.requests") | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_headers", return_value=MOCK_DOWNSTREAM_HEADERS) | ||
@pytest.mark.parametrize("path", ["", "thing", "thing/123", "thing/123/otherthing", "thing/123/otherthing/456"]) | ||
def test_mobile_app_gateway_properly_proxies_paths( | ||
_mock_get_downstream_headers, | ||
mock_requests, | ||
make_organization_and_user_with_mobile_app_auth_token, | ||
path, | ||
): | ||
mock_requests.post.return_value = MockResponse() | ||
|
||
org, _, auth_token = make_organization_and_user_with_mobile_app_auth_token() | ||
org.grafana_incident_backend_url = MOCK_DOWNSTREAM_INCIDENT_API_URL | ||
org.save() | ||
|
||
client = APIClient() | ||
url = reverse("mobile_app:gateway", kwargs={"downstream_backend": DOWNSTREAM_BACKEND, "downstream_path": path}) | ||
|
||
response = client.post(url, HTTP_AUTHORIZATION=auth_token) | ||
assert response.status_code == status.HTTP_200_OK | ||
assert response.json() == MOCK_DOWNSTREAM_RESPONSE_DATA | ||
|
||
mock_requests.post.assert_called_once_with( | ||
f"{MOCK_DOWNSTREAM_INCIDENT_API_URL}/{path}", | ||
data={}, | ||
params={}, | ||
headers=MOCK_DOWNSTREAM_HEADERS, | ||
) | ||
|
||
|
||
@pytest.mark.django_db | ||
@patch("apps.mobile_app.views.requests") | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_url", return_value=MOCK_DOWNSTREAM_URL) | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_headers", return_value=MOCK_DOWNSTREAM_HEADERS) | ||
@pytest.mark.parametrize("method", APIView.http_method_names) | ||
def test_mobile_app_gateway_supports_all_methods( | ||
_mock_get_downstream_headers, | ||
_mock_get_downstream_url, | ||
mock_requests, | ||
make_organization_and_user_with_mobile_app_auth_token, | ||
method, | ||
): | ||
mock_http_verb_method = getattr(mock_requests, method.lower()) | ||
mock_http_verb_method.return_value = MockResponse() | ||
|
||
_, _, auth_token = make_organization_and_user_with_mobile_app_auth_token() | ||
|
||
client = APIClient() | ||
url = reverse("mobile_app:gateway", kwargs={"downstream_backend": DOWNSTREAM_BACKEND, "downstream_path": "test"}) | ||
|
||
response = client.generic(method.upper(), url, HTTP_AUTHORIZATION=auth_token) | ||
assert response.status_code == status.HTTP_200_OK | ||
|
||
mock_http_verb_method.assert_called_once() | ||
|
||
|
||
@pytest.mark.django_db | ||
@patch("apps.mobile_app.views.requests") | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_url", return_value=MOCK_DOWNSTREAM_URL) | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_headers", return_value=MOCK_DOWNSTREAM_HEADERS) | ||
def test_mobile_app_gateway_proxies_query_params( | ||
_mock_get_downstream_headers, | ||
_mock_get_downstream_url, | ||
mock_requests, | ||
make_organization_and_user_with_mobile_app_auth_token, | ||
): | ||
mock_requests.post.return_value = MockResponse() | ||
|
||
_, _, auth_token = make_organization_and_user_with_mobile_app_auth_token() | ||
|
||
client = APIClient() | ||
url = reverse("mobile_app:gateway", kwargs={"downstream_backend": DOWNSTREAM_BACKEND, "downstream_path": "test"}) | ||
|
||
response = client.post(f"{url}?foo=bar&baz=hello", HTTP_AUTHORIZATION=auth_token) | ||
assert response.status_code == status.HTTP_200_OK | ||
|
||
mock_requests.post.assert_called_once_with( | ||
MOCK_DOWNSTREAM_URL, | ||
data={}, | ||
params={"foo": "bar", "baz": "hello"}, | ||
headers=MOCK_DOWNSTREAM_HEADERS, | ||
) | ||
|
||
|
||
@pytest.mark.django_db | ||
@patch("apps.mobile_app.views.requests") | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_url", return_value=MOCK_DOWNSTREAM_URL) | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_headers", return_value=MOCK_DOWNSTREAM_HEADERS) | ||
@pytest.mark.parametrize( | ||
"upstream_request_body", | ||
[ | ||
None, | ||
{}, | ||
{"vegetable": "potato", "fruit": "apple"}, | ||
], | ||
) | ||
def test_mobile_app_gateway_properly_proxies_request_body( | ||
_mock_get_downstream_headers, | ||
_mock_get_downstream_url, | ||
mock_requests, | ||
make_organization_and_user_with_mobile_app_auth_token, | ||
upstream_request_body, | ||
): | ||
mock_requests.post.return_value = MockResponse() | ||
|
||
_, _, auth_token = make_organization_and_user_with_mobile_app_auth_token() | ||
|
||
client = APIClient() | ||
url = reverse("mobile_app:gateway", kwargs={"downstream_backend": DOWNSTREAM_BACKEND, "downstream_path": "test"}) | ||
|
||
response = client.post( | ||
url, | ||
data=json.dumps(upstream_request_body), | ||
content_type="application/json", | ||
HTTP_AUTHORIZATION=auth_token, | ||
) | ||
assert response.status_code == status.HTTP_200_OK | ||
|
||
mock_requests.post.assert_called_once_with( | ||
MOCK_DOWNSTREAM_URL, | ||
data=upstream_request_body, | ||
params={}, | ||
headers=MOCK_DOWNSTREAM_HEADERS, | ||
) | ||
|
||
|
||
@pytest.mark.django_db | ||
@patch("apps.mobile_app.views.requests") | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_url", return_value=MOCK_DOWNSTREAM_URL) | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_headers", return_value=MOCK_DOWNSTREAM_HEADERS) | ||
@pytest.mark.parametrize( | ||
"downstream_backend,expected_status", | ||
[ | ||
("incident", status.HTTP_200_OK), | ||
("foo", status.HTTP_404_NOT_FOUND), | ||
], | ||
) | ||
def test_mobile_app_gateway_supported_downstream_backends( | ||
_mock_get_downstream_headers, | ||
_mock_get_downstream_url, | ||
mock_requests, | ||
make_organization_and_user_with_mobile_app_auth_token, | ||
downstream_backend, | ||
expected_status, | ||
): | ||
mock_requests.post.return_value = MockResponse() | ||
|
||
_, _, auth_token = make_organization_and_user_with_mobile_app_auth_token() | ||
|
||
client = APIClient() | ||
url = reverse( | ||
"mobile_app:gateway", kwargs={"downstream_backend": downstream_backend, "downstream_path": "test/123"} | ||
) | ||
|
||
response = client.post(url, HTTP_AUTHORIZATION=auth_token) | ||
assert response.status_code == expected_status | ||
|
||
|
||
@pytest.mark.django_db | ||
@patch("apps.mobile_app.views.requests") | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_url", return_value=MOCK_DOWNSTREAM_URL) | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_headers", return_value=MOCK_DOWNSTREAM_HEADERS) | ||
def test_mobile_app_gateway_mobile_app_auth_token( | ||
_mock_get_downstream_headers, | ||
_mock_get_downstream_url, | ||
mock_requests, | ||
make_organization_and_user_with_mobile_app_auth_token, | ||
): | ||
mock_requests.post.return_value = MockResponse() | ||
|
||
_, _, auth_token = make_organization_and_user_with_mobile_app_auth_token() | ||
|
||
client = APIClient() | ||
url = reverse("mobile_app:gateway", kwargs={"downstream_backend": DOWNSTREAM_BACKEND, "downstream_path": "test"}) | ||
|
||
response = client.post(url, HTTP_AUTHORIZATION="potato") | ||
assert response.status_code == status.HTTP_403_FORBIDDEN | ||
|
||
response = client.post(url, HTTP_AUTHORIZATION=auth_token) | ||
assert response.status_code == status.HTTP_200_OK | ||
|
||
|
||
@pytest.mark.django_db | ||
@patch("apps.mobile_app.views.requests") | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_headers", return_value=MOCK_DOWNSTREAM_HEADERS) | ||
def test_mobile_app_gateway_incident_api_url( | ||
_mock_get_downstream_headers, | ||
mock_requests, | ||
make_organization_and_user_with_mobile_app_auth_token, | ||
): | ||
mock_incident_backend_url = "https://mockincidentbackend.com" | ||
mock_requests.post.return_value = MockResponse() | ||
|
||
client = APIClient() | ||
url = reverse("mobile_app:gateway", kwargs={"downstream_backend": DOWNSTREAM_BACKEND, "downstream_path": "test"}) | ||
|
||
# Organization has no incident backend URL saved | ||
organization, _, auth_token = make_organization_and_user_with_mobile_app_auth_token() | ||
assert organization.grafana_incident_backend_url is None | ||
|
||
response = client.post(url, HTTP_AUTHORIZATION=auth_token) | ||
assert response.status_code == status.HTTP_400_BAD_REQUEST | ||
|
||
# Organization already has incident backend URL saved | ||
organization, _, auth_token = make_organization_and_user_with_mobile_app_auth_token() | ||
organization.grafana_incident_backend_url = mock_incident_backend_url | ||
organization.save() | ||
|
||
response = client.post(url, HTTP_AUTHORIZATION=auth_token) | ||
assert response.status_code == status.HTTP_200_OK | ||
|
||
|
||
@pytest.mark.django_db | ||
@patch("apps.mobile_app.views.requests") | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._construct_jwt", return_value=MOCK_JWT) | ||
@patch("apps.mobile_app.views.MobileAppGatewayView._get_downstream_url", return_value=MOCK_DOWNSTREAM_URL) | ||
def test_mobile_app_gateway_jwt_header( | ||
_mock_get_downstream_url, | ||
_mock_construct_jwt, | ||
mock_requests, | ||
make_organization_and_user_with_mobile_app_auth_token, | ||
): | ||
mock_requests.post.return_value = MockResponse() | ||
|
||
_, _, auth_token = make_organization_and_user_with_mobile_app_auth_token() | ||
|
||
client = APIClient() | ||
url = reverse("mobile_app:gateway", kwargs={"downstream_backend": DOWNSTREAM_BACKEND, "downstream_path": "test"}) | ||
|
||
response = client.post(url, HTTP_AUTHORIZATION=auth_token) | ||
assert response.status_code == status.HTTP_200_OK | ||
|
||
mock_requests.post.assert_called_once_with( | ||
MOCK_DOWNSTREAM_URL, | ||
data={}, | ||
params={}, | ||
headers={"Authorization": f"Bearer {MOCK_JWT}"}, | ||
) | ||
|
||
|
||
@pytest.mark.django_db | ||
@patch("apps.mobile_app.views.jwt.encode", return_value=MOCK_JWT) | ||
@patch("apps.mobile_app.views.timezone.now", return_value=MOCK_TIMEZONE_NOW) | ||
def test_mobile_app_gateway_properly_generates_a_jwt( | ||
_mock_timezone_now, | ||
mock_jwt_encode, | ||
make_organization, | ||
make_user_for_organization, | ||
): | ||
user_id = 90095905 | ||
stack_id = 895 | ||
organization_id = 8905 | ||
stack_slug = "mvcmnvcmnvc" | ||
org_slug = "raintank" | ||
|
||
organization = make_organization( | ||
stack_id=stack_id, org_id=organization_id, stack_slug=stack_slug, org_slug=org_slug | ||
) | ||
user = make_user_for_organization(organization, user_id=user_id) | ||
|
||
encoded_jwt = MobileAppGatewayView._construct_jwt(user) | ||
|
||
assert encoded_jwt == MOCK_JWT | ||
mock_jwt_encode.assert_called_once_with( | ||
{ | ||
"iat": MOCK_TIMEZONE_NOW, | ||
"exp": MOCK_TIMEZONE_NOW + timezone.timedelta(minutes=1), | ||
"user_id": user.user_id, # grafana user ID | ||
"stack_id": organization.stack_id, | ||
"organization_id": organization.org_id, # grafana org ID | ||
"stack_slug": organization.stack_slug, | ||
"org_slug": organization.org_slug, | ||
}, | ||
MOCK_JWT_PRIVATE_KEY, | ||
algorithm="RS256", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
basically this would proxy the following request:
into: