forked from breatheco-de/apiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,177 additions
and
398 deletions.
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
Large diffs are not rendered by default.
Oops, something went wrong.
176 changes: 176 additions & 0 deletions
176
breathecode/authenticate/tests/urls/tests_google_callback.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,176 @@ | ||
""" | ||
Test /v1/auth/subscribe | ||
""" | ||
|
||
from datetime import datetime, timedelta | ||
import random | ||
from unittest.mock import call | ||
|
||
import pytest | ||
from django.urls.base import reverse_lazy | ||
from rest_framework import status | ||
|
||
import capyc.pytest as capy | ||
import staging.pytest as staging | ||
from urllib.parse import quote | ||
|
||
|
||
@pytest.fixture(autouse=True) | ||
def setup(monkeypatch: pytest.MonkeyPatch, db): | ||
monkeypatch.setenv("GOOGLE_CLIENT_ID", "123456.apps.googleusercontent.com") | ||
monkeypatch.setenv("GOOGLE_SECRET", "123456") | ||
monkeypatch.setenv("GOOGLE_REDIRECT_URL", "https://breathecode.herokuapp.com/v1/auth/google/callback") | ||
|
||
yield | ||
|
||
|
||
@pytest.fixture | ||
def validation_res(patch_request): | ||
validation_res = { | ||
"quality_score": (random.random() * 0.4) + 0.6, | ||
"email_quality": (random.random() * 0.4) + 0.6, | ||
"is_valid_format": { | ||
"value": True, | ||
}, | ||
"is_mx_found": { | ||
"value": True, | ||
}, | ||
"is_smtp_valid": { | ||
"value": True, | ||
}, | ||
"is_catchall_email": { | ||
"value": True, | ||
}, | ||
"is_role_email": { | ||
"value": True, | ||
}, | ||
"is_disposable_email": { | ||
"value": False, | ||
}, | ||
"is_free_email": { | ||
"value": True, | ||
}, | ||
} | ||
patch_request( | ||
[ | ||
( | ||
call( | ||
"get", | ||
"https://emailvalidation.abstractapi.com/v1/?api_key=None&[email protected]", | ||
params=None, | ||
timeout=10, | ||
), | ||
validation_res, | ||
), | ||
] | ||
) | ||
return validation_res | ||
|
||
|
||
def test_no_token(database: capy.Database, client: capy.Client): | ||
url = reverse_lazy("authenticate:google_callback") | ||
|
||
response = client.get(url, format="json") | ||
|
||
json = response.json() | ||
expected = {"detail": "no-callback-url", "status_code": 400} | ||
|
||
assert json == expected | ||
assert response.status_code == status.HTTP_400_BAD_REQUEST | ||
|
||
assert database.list_of("authenticate.Token") == [] | ||
assert database.list_of("authenticate.CredentialsGoogle") == [] | ||
|
||
|
||
def test_no_url(database: capy.Database, client: capy.Client): | ||
url = reverse_lazy("authenticate:google_callback") + "?state=url%3Dhttps://4geeks.com" | ||
|
||
response = client.get(url, format="json") | ||
|
||
json = response.json() | ||
expected = {"detail": "no-user-token", "status_code": 400} | ||
|
||
assert json == expected | ||
assert response.status_code == status.HTTP_400_BAD_REQUEST | ||
|
||
assert database.list_of("authenticate.Token") == [] | ||
assert database.list_of("authenticate.CredentialsGoogle") == [] | ||
|
||
|
||
def test_no_code(database: capy.Database, client: capy.Client): | ||
url = reverse_lazy("authenticate:google_callback") + "?state=token%3Dabc123%26url%3Dhttps://4geeks.com" | ||
|
||
response = client.get(url, format="json") | ||
|
||
json = response.json() | ||
expected = {"detail": "no-code", "status_code": 400} | ||
|
||
assert json == expected | ||
assert response.status_code == status.HTTP_400_BAD_REQUEST | ||
|
||
assert database.list_of("authenticate.Token") == [] | ||
assert database.list_of("authenticate.CredentialsGoogle") == [] | ||
|
||
|
||
def test_token_not_found(database: capy.Database, client: capy.Client): | ||
url = ( | ||
reverse_lazy("authenticate:google_callback") | ||
+ "?state=token%3Dabc123%26url%3Dhttps://4geeks.com&code=12345&scope=https://www.googleapis.com/auth/calendar.events" | ||
) | ||
|
||
response = client.get(url, format="json") | ||
|
||
json = response.json() | ||
expected = {"detail": "token-not-found", "status_code": 404} | ||
|
||
assert json == expected | ||
assert response.status_code == status.HTTP_404_NOT_FOUND | ||
|
||
assert database.list_of("authenticate.Token") == [] | ||
assert database.list_of("authenticate.CredentialsGoogle") == [] | ||
|
||
|
||
def test_token( | ||
database: capy.Database, client: capy.Client, format: capy.Format, utc_now: datetime, requests: staging.Requests | ||
): | ||
model = database.create(token={"token_type": "temporal"}) | ||
url = ( | ||
reverse_lazy("authenticate:google_callback") | ||
+ f"?state=token%3D{model.token.key}%26url%3Dhttps://4geeks.com&code=12345&scope=https://www.googleapis.com/auth/calendar.events" | ||
) | ||
|
||
requests.post( | ||
"https://oauth2.googleapis.com/token", | ||
json={"access_token": "test_access_token", "expires_in": 3600, "refresh_token": "test_refresh_token"}, | ||
status_code=200, | ||
) | ||
|
||
response = client.get(url, format="json") | ||
|
||
assert response.status_code == status.HTTP_302_FOUND | ||
assert response.url == f"https://4geeks.com?token={quote(model.token.key)}" | ||
|
||
assert requests.call_count == 1 | ||
last_request = requests.last_request | ||
|
||
assert last_request.method == "POST" | ||
assert last_request.url == "https://oauth2.googleapis.com/token" | ||
assert last_request.qs == {} | ||
assert last_request.json() == { | ||
"client_id": "123456.apps.googleusercontent.com", | ||
"client_secret": "123456", | ||
"redirect_uri": "https://breathecode.herokuapp.com/v1/auth/google/callback", | ||
"grant_type": "authorization_code", | ||
"code": "12345", | ||
} | ||
|
||
assert database.list_of("authenticate.Token") == [format.to_obj_repr(model.token)] | ||
assert database.list_of("authenticate.CredentialsGoogle") == [ | ||
{ | ||
"expires_at": utc_now + timedelta(seconds=3600), | ||
"id": 1, | ||
"refresh_token": "test_refresh_token", | ||
"token": "test_access_token", | ||
"user_id": 1, | ||
}, | ||
] |
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,88 @@ | ||
""" | ||
Test /v1/auth/subscribe | ||
""" | ||
|
||
from typing import Any | ||
from urllib.parse import urlencode | ||
|
||
import pytest | ||
from django.urls.base import reverse_lazy | ||
from django.utils import timezone | ||
from rest_framework import status | ||
from rest_framework.test import APIClient | ||
|
||
from breathecode.tests.mixins.breathecode_mixin.breathecode import Breathecode | ||
import capyc.pytest as capy | ||
|
||
now = timezone.now() | ||
|
||
|
||
@pytest.fixture(autouse=True) | ||
def setup(monkeypatch: pytest.MonkeyPatch, db): | ||
monkeypatch.setenv("GOOGLE_CLIENT_ID", "123456.apps.googleusercontent.com") | ||
monkeypatch.setenv("GOOGLE_SECRET", "123456") | ||
monkeypatch.setenv("GOOGLE_REDIRECT_URL", "https://breathecode.herokuapp.com/v1/auth/google/callback") | ||
|
||
yield | ||
|
||
|
||
def test_no_url(bc: Breathecode, client: APIClient): | ||
url = reverse_lazy("authenticate:google_token", kwargs={"token": "78c9c2defd3be7f3f5b3ddd542ade55a2d35281b"}) | ||
response = client.get(url, format="json") | ||
|
||
json = response.json() | ||
expected = {"detail": "no-callback-url", "status_code": 400} | ||
|
||
assert json == expected | ||
assert response.status_code == status.HTTP_400_BAD_REQUEST | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"token", | ||
[ | ||
0, | ||
{"token_type": "one_time"}, | ||
{"token_type": "permanent"}, | ||
{"token_type": "login"}, | ||
], | ||
) | ||
def test_invalid_token(database: capy.Database, client: capy.Client, token: Any): | ||
key = "78c9c2defd3be7f3f5b3ddd542ade55a2d35281b" | ||
model = database.create(token=token) | ||
if "token" in model: | ||
key = model.token.key | ||
|
||
url = reverse_lazy("authenticate:google_token", kwargs={"token": key}) + "?url=https://4geeks.com" | ||
response = client.get(url, format="json") | ||
|
||
json = response.json() | ||
expected = {"detail": "invalid-token", "status_code": 403} | ||
|
||
assert json == expected | ||
assert response.status_code == status.HTTP_403_FORBIDDEN | ||
|
||
|
||
@pytest.mark.parametrize( | ||
"token", | ||
[ | ||
{"token_type": "temporal"}, | ||
], | ||
) | ||
def test_redirect(database: capy.Database, client: capy.Client, token: Any): | ||
model = database.create(token=token) | ||
callback_url = "https://4geeks.com/" | ||
|
||
url = reverse_lazy("authenticate:google_token", kwargs={"token": model.token.key}) + f"?url={callback_url}" | ||
response = client.get(url, format="json") | ||
|
||
assert response.status_code == status.HTTP_302_FOUND | ||
params = { | ||
"response_type": "code", | ||
"client_id": "123456.apps.googleusercontent.com", | ||
"redirect_uri": "https://breathecode.herokuapp.com/v1/auth/google/callback", | ||
"access_type": "offline", | ||
"scope": "https://www.googleapis.com/auth/calendar.events", | ||
"state": f"token={model.token.key}&url={callback_url}", | ||
} | ||
|
||
assert response.url == f"https://accounts.google.com/o/oauth2/v2/auth?{urlencode(params)}" |
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
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
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
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
Empty file.
Oops, something went wrong.