fix all pylint warnings, add tests (wip) fix recap

This commit is contained in:
2026-03-06 00:00:01 +01:00
parent 60812652cf
commit b4b4fa7643
25 changed files with 845 additions and 376 deletions

View File

@@ -1,15 +1,18 @@
import src.contracts.service as service
import tests.factories.contract_products as contract_products_factory
import tests.factories.contracts as contract_factory
import tests.factories.forms as form_factory
from fastapi.exceptions import HTTPException
from src import models
from src.auth.auth import get_current_user
from src.main import app
class TestContracts:
def test_get_all(self, client, mocker, mock_session, mock_user):
def test_get_all(
self,
client,
mocker,
mock_session,
mock_user
):
mock_results = [
contract_factory.contract_public_factory(id=1),
contract_factory.contract_public_factory(id=2),
@@ -32,7 +35,13 @@ class TestContracts:
[],
)
def test_get_all_filters(self, client, mocker, mock_session, mock_user):
def test_get_all_filters(
self,
client,
mocker,
mock_session,
mock_user
):
mock_results = [
contract_factory.contract_public_factory(id=2),
]
@@ -54,11 +63,10 @@ class TestContracts:
)
def test_get_all_unauthorized(
self,
client,
mocker,
mock_session,
mock_user):
self,
client,
mocker,
):
def unauthorized():
raise HTTPException(status_code=401)
@@ -72,7 +80,12 @@ class TestContracts:
app.dependency_overrides.clear()
def test_get_one(self, client, mocker, mock_session, mock_user):
def test_get_one(
self,
client,
mocker,
mock_session,
):
mock_result = contract_factory.contract_public_factory(id=2)
mock = mocker.patch.object(
@@ -95,7 +108,12 @@ class TestContracts:
2
)
def test_get_one_notfound(self, client, mocker, mock_session, mock_user):
def test_get_one_notfound(
self,
client,
mocker,
mock_session,
):
mock_result = None
mock = mocker.patch.object(
service,
@@ -116,11 +134,10 @@ class TestContracts:
)
def test_get_one_unauthorized(
self,
client,
mocker,
mock_session,
mock_user):
self,
client,
mocker,
):
def unauthorized():
raise HTTPException(status_code=401)
@@ -134,7 +151,12 @@ class TestContracts:
app.dependency_overrides.clear()
def test_delete_one(self, client, mocker, mock_session, mock_user):
def test_delete_one(
self,
client,
mocker,
mock_session,
):
contract_result = contract_factory.contract_public_factory()
mock = mocker.patch.object(
@@ -158,11 +180,10 @@ class TestContracts:
)
def test_delete_one_notfound(
self,
client,
mocker,
mock_session,
mock_user
self,
client,
mocker,
mock_session,
):
contract_result = None
@@ -187,11 +208,9 @@ class TestContracts:
)
def test_delete_one_unauthorized(
self,
client,
mocker,
mock_session,
mock_user
self,
client,
mocker,
):
def unauthorized():
raise HTTPException(status_code=401)