forked from VallariAg/teuthology-api
-
Notifications
You must be signed in to change notification settings - Fork 10
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
Auth service tests #31
Open
dikwickley
wants to merge
2
commits into
ceph:main
Choose a base branch
from
dikwickley:auth-service-tests
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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,114 @@ | ||
import abc | ||
import os | ||
import httpx | ||
import logging | ||
from dotenv import load_dotenv | ||
from fastapi import HTTPException | ||
|
||
load_dotenv() | ||
log = logging.getLogger(__name__) | ||
|
||
class AuthService(abc.ABC): | ||
@abc.abstractmethod | ||
async def _get_token(self, status_code: int) -> dict: | ||
"""Returns a dict of response JSON from GH.""" | ||
pass | ||
|
||
@abc.abstractmethod | ||
async def _get_org(self, token: str) -> dict: | ||
"""Returns org info of user.""" | ||
pass | ||
|
||
class AuthServiceGH(AuthService): | ||
|
||
def __init__(self): | ||
self.GH_CLIENT_ID = os.getenv("GH_CLIENT_ID") | ||
self.GH_CLIENT_SECRET = os.getenv("GH_CLIENT_SECRET") | ||
self.GH_AUTHORIZATION_BASE_URL = os.getenv("GH_AUTHORIZATION_BASE_URL") | ||
self.GH_TOKEN_URL = os.getenv("GH_TOKEN_URL") | ||
self.GH_FETCH_MEMBERSHIP_URL = os.getenv("GH_FETCH_MEMBERSHIP_URL") | ||
self.PULPITO_URL = os.getenv("PULPITO_URL") | ||
|
||
async def _get_token(self, status_code: int) -> str: | ||
params = { | ||
"client_id": self.GH_CLIENT_ID, | ||
"client_secret": self.GH_CLIENT_SECRET, | ||
"code": status_code, | ||
} | ||
headers = {"Accept": "application/json"} | ||
async with httpx.AsyncClient as client: | ||
response_token = await client.post( | ||
url=self.GH_TOKEN_URL, params=params, headers=headers | ||
) | ||
log.info(response_token.json()) | ||
response_token_dict = dict(response_token.json()) | ||
token = response_token_dict.get("access_token") | ||
if response_token_dict.get("error") or not token: | ||
log.error("The code is incorrect or expired.") | ||
raise HTTPException( | ||
status_code=401, detail="The code is incorrect or expired." | ||
) | ||
return token | ||
|
||
async def _get_org(self, token: str) -> dict: | ||
headers = {"Authorization": "token " + token} | ||
async with httpx.AsyncClient as client: | ||
response_org = await client.get(url=self.GH_FETCH_MEMBERSHIP_URL, headers=headers) | ||
response_org_dict = dict(response_org.json()) | ||
log.info(response_org) | ||
if response_org.status_code == 404: | ||
log.error("User is not part of the Ceph Organization") | ||
raise HTTPException( | ||
status_code=404, | ||
detail="User is not part of the Ceph Organization, please contact <admin>.", | ||
) | ||
if response_org.status_code == 403: | ||
log.error("The application doesn't have permission to view github org.") | ||
raise HTTPException( | ||
status_code=403, | ||
detail="The application doesn't have permission to view github org.", | ||
) | ||
return response_org_dict | ||
|
||
class AuthServiceMock(AuthService): | ||
async def _get_token(self, status_code: int) -> dict: | ||
if status_code == 200: | ||
return "admin" | ||
elif status_code == 403: | ||
return "user" | ||
elif status_code == 404: | ||
return "" | ||
elif status_code == 500: | ||
raise HTTPException( | ||
status_code=401, detail="The code is incorrect or expired." | ||
) | ||
else: | ||
return "" | ||
|
||
async def _get_org(self, token: str) -> dict: | ||
if token == "admin": | ||
return { | ||
"id": "admin_id", | ||
"username": "admin", | ||
"state": "state", | ||
"role": "admin" | ||
} | ||
elif token == "": | ||
log.error("The application doesn't have permission to view github org.") | ||
raise HTTPException( | ||
status_code=403, | ||
detail="The application doesn't have permission to view github org.", | ||
) | ||
else: | ||
log.error("User is not part of the Ceph Organization") | ||
raise HTTPException( | ||
status_code=404, | ||
detail="User is not part of the Ceph Organization, please contact <admin>.", | ||
) | ||
|
||
|
||
def get_github_auth_service(): | ||
return AuthServiceGH() | ||
|
||
def get_mock_auth_service(): | ||
return AuthServiceMock() |
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.
This class is used only for testing so it should be defined somewhere under /tests directory
You can probably create similar dir structure in /tests as it is in /src.
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.
Also to mock functions, you can look into
unittest.mock
functions and pytest fixtureshttps://docs.python.org/3/library/unittest.mock.html
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.
@dikwickley ping!
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.
Oh you added these 2 weeks ago, I am only able to see them now. I'll make these changes.