From 1dee061e974b8bed403413b667016b680a469771 Mon Sep 17 00:00:00 2001 From: bsquillari Date: Mon, 4 Dec 2023 14:04:08 +0000 Subject: [PATCH] Delete unused code --- .../src/tests/functional/test_auth.py | 66 +------------------ gateway/src/api/routes/auth.py | 16 +---- 2 files changed, 3 insertions(+), 79 deletions(-) diff --git a/auth-domain/user-manager/src/tests/functional/test_auth.py b/auth-domain/user-manager/src/tests/functional/test_auth.py index 844b191..2f29906 100644 --- a/auth-domain/user-manager/src/tests/functional/test_auth.py +++ b/auth-domain/user-manager/src/tests/functional/test_auth.py @@ -1,75 +1,11 @@ import json import time -import pytest - TEST_USERNAME = "fede_auth" TEST_EMAIL = "fede_auth@gmail.com" TEST_PASSWD = "password1234" -def test_user_registration(test_app, test_database): - client = test_app.test_client() - resp = client.post( - "/auth/register", - data=json.dumps( - { - "username": TEST_USERNAME, - "email": TEST_EMAIL, - "password": TEST_PASSWD, - } - ), - content_type="application/json", - ) - data = json.loads(resp.data.decode()) - assert resp.status_code == 201 - assert resp.content_type == "application/json" - assert TEST_USERNAME in data["username"] - assert TEST_EMAIL in data["email"] - assert "password" not in data - - -def test_user_registration_duplicate_email(test_app, test_database, add_user): - add_user(TEST_USERNAME, TEST_EMAIL, TEST_PASSWD) - client = test_app.test_client() - resp = client.post( - "/auth/register", - data=json.dumps( - {"username": "martin", "email": TEST_EMAIL, "password": "test"} - ), - content_type="application/json", - ) - data = json.loads(resp.data.decode()) - assert resp.status_code == 400 - assert resp.content_type == "application/json" - assert "Sorry. That email already exists." == data["message"] - - -@pytest.mark.parametrize( - "payload", - [ - {}, - {"email": TEST_EMAIL, "password": TEST_PASSWD}, - {"username": TEST_USERNAME, "password": TEST_PASSWD}, - {"email": TEST_EMAIL, "username": TEST_USERNAME}, - {"mail": TEST_EMAIL, "username": TEST_USERNAME, "password": TEST_PASSWD}, - {"email": TEST_EMAIL, "user": TEST_USERNAME, "password": TEST_PASSWD}, - {"email": TEST_EMAIL, "username": TEST_USERNAME, "passwd": TEST_PASSWD}, - ], -) -def test_user_registration_invalid_json(test_app, test_database, payload): - client = test_app.test_client() - resp = client.post( - "/auth/register", - data=json.dumps(payload), - content_type="application/json", - ) - data = json.loads(resp.data.decode()) - assert resp.status_code == 400 - assert resp.content_type == "application/json" - assert "Input payload validation failed" in data["message"] - - def test_registered_user_login(test_app, test_database, add_user): add_user(TEST_USERNAME, TEST_EMAIL, TEST_PASSWD) client = test_app.test_client() @@ -174,7 +110,7 @@ def test_user_status(test_app, test_database, add_user): data = json.loads(resp.data.decode()) assert resp.status_code == 200 assert resp.content_type == "application/json" - assert not data["airline"] + assert data["role"] == 0 assert "password" not in data diff --git a/gateway/src/api/routes/auth.py b/gateway/src/api/routes/auth.py index e9d2ec7..b404917 100644 --- a/gateway/src/api/routes/auth.py +++ b/gateway/src/api/routes/auth.py @@ -5,23 +5,11 @@ from fastapi import APIRouter, Header, HTTPException, Request from src.api.config import API_AUTH from src.api.schemas.auth import RefreshToken, Token -from src.api.schemas.user import UserLogin, UserMin, UserRegister, UserStatus +from src.api.schemas.user import UserLogin, UserStatus router = APIRouter() -@router.post("/register", response_model=UserMin) -async def register(user: UserRegister, req: Request): - request_id = req.state.request_id - header = {"x-api-request-id": request_id} - (response, status, _) = await request( - f"{API_AUTH}/register", "POST", json=user.model_dump(), headers=header - ) - if status < 200 or status > 204: - raise HTTPException(status_code=status, detail=response) - return response - - @router.post("/login", response_model=Token) async def login(user: UserLogin, req: Request): request_id = req.state.request_id @@ -67,7 +55,7 @@ async def checkAuth( ): response = await status(req, authorization) if isAirline: - if response["airline"]: + if response["role"] == 1: return response["id"] else: raise HTTPException(