1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

Добавления тестов бекенда

This commit is contained in:
MoonTestUse1
2025-01-02 04:30:51 +06:00
parent 7729acaa09
commit 01677cf5df
16 changed files with 903 additions and 328 deletions

View File

@@ -1,47 +1,70 @@
"""Authentication endpoint tests"""
import pytest
from app.crud import employees
from app.models.employee import EmployeeCreate
from app.models.employee import Employee
from app.utils.auth import get_password_hash
def test_login_success(client, test_db, test_employee):
"""Test successful login"""
def test_admin_login(client):
"""Test admin login endpoint"""
response = client.post("/api/auth/admin", json={
"username": "admin",
"password": "admin123"
})
assert response.status_code == 200
assert "access_token" in response.json()
def test_admin_login_invalid_credentials(client):
"""Test admin login with invalid credentials"""
response = client.post("/api/auth/admin", json={
"username": "wrong",
"password": "wrong"
})
assert response.status_code == 401
assert response.json()["detail"] == "Invalid credentials"
def test_employee_login(client, db_session):
"""Test employee login endpoint"""
# Create test employee
employee_data = EmployeeCreate(**test_employee)
employees.create_employee(test_db, employee_data)
# Attempt login
response = client.post(
"/api/auth/login",
json={
"lastName": test_employee["last_name"],
"password": test_employee["password"]
}
hashed_password = get_password_hash("test123")
employee = Employee(
first_name="Test",
last_name="User",
department="IT",
office="A101",
password=hashed_password
)
db_session.add(employee)
db_session.commit()
# Try to login
response = client.post("/api/auth/login", json={
"last_name": "User",
"password": "test123"
})
assert response.status_code == 200
data = response.json()
assert data["lastName"] == test_employee["last_name"]
assert "password" not in data
assert data["first_name"] == "Test"
assert data["last_name"] == "User"
assert data["department"] == "IT"
assert data["office"] == "A101"
assert "access_token" in data
def test_login_invalid_credentials(client):
"""Test login with invalid credentials"""
response = client.post(
"/api/auth/login",
json={
"lastName": "NonExistent",
"password": "wrongpass"
}
def test_employee_login_invalid_credentials(client, db_session):
"""Test employee login with invalid credentials"""
# Create test employee
hashed_password = get_password_hash("test123")
employee = Employee(
first_name="Test",
last_name="User",
department="IT",
office="A101",
password=hashed_password
)
db_session.add(employee)
db_session.commit()
# Try to login with wrong password
response = client.post("/api/auth/login", json={
"last_name": "User",
"password": "wrong"
})
assert response.status_code == 401
assert response.json()["detail"] == "Неверные учетные данные"
def test_login_missing_fields(client):
"""Test login with missing fields"""
response = client.post(
"/api/auth/login",
json={"lastName": "Test"}
)
assert response.status_code == 400
assert "Необходимо указать" in response.json()["detail"]
assert response.json()["detail"] == "Неверный пароль"