Compare commits
No commits in common. "ff18fc8994a7cd469c275f4a67baffce57ac2b2e" and "cd693e6014a5bd902cedd6ce72b5e4f5bbd5b2f4" have entirely different histories.
ff18fc8994
...
cd693e6014
8 changed files with 23 additions and 59 deletions
|
|
@ -16,7 +16,6 @@ class Teil(models.Model):
|
||||||
|
|
||||||
verbose_name = "Teil"
|
verbose_name = "Teil"
|
||||||
verbose_name_plural = "Teile"
|
verbose_name_plural = "Teile"
|
||||||
ordering = ["-modified"]
|
|
||||||
|
|
||||||
def __str__(self) -> str:
|
def __str__(self) -> str:
|
||||||
modified = self.modified.isoformat(timespec="seconds")
|
modified = self.modified.isoformat(timespec="seconds")
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,9 @@
|
||||||
from typing import Callable
|
from typing import Callable
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
from django.test import Client
|
from django.test import Client
|
||||||
from django.urls import reverse
|
from django.urls import reverse
|
||||||
from hypothesis import given
|
from hypothesis import given, strategies as st
|
||||||
from hypothesis import strategies as st
|
from logot import Logot, logged
|
||||||
from structlog.testing import capture_logs
|
|
||||||
|
|
||||||
from .models import Teil
|
from .models import Teil
|
||||||
|
|
||||||
|
|
@ -58,47 +56,16 @@ def test_enter_endpoint_accepts_only_post_requests(
|
||||||
assert response.status_code == expected_status
|
assert response.status_code == expected_status
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.xfail(reason="WIP, kein Plan warum nichts gecaptured zu werden scheint")
|
||||||
def test_enter_endpoints_emits_expected_logs(
|
def test_enter_endpoints_emits_expected_logs(
|
||||||
client: Client, random_name: Callable[[int], str]
|
client: Client, logot: Logot, random_name: Callable[[int], str]
|
||||||
):
|
):
|
||||||
"""
|
|
||||||
note: capture_logs() yields a list of dicts, not a list of logfmt lines
|
|
||||||
that we configured for the app
|
|
||||||
"""
|
|
||||||
same_name = random_name(10)
|
same_name = random_name(10)
|
||||||
|
|
||||||
with capture_logs() as logs:
|
response = client.post(reverse("collector:enter"), data={"new_name": same_name})
|
||||||
response = client.post(reverse("collector:enter"), data={"new_name": same_name})
|
assert response.status_code == 302
|
||||||
assert response.status_code == 302
|
logot.assert_logged(logged.info("New Teil entered"))
|
||||||
assert any(
|
|
||||||
(
|
|
||||||
le["event"].lower() == "New Teil entered".lower()
|
|
||||||
and le["log_level"].lower() == "info"
|
|
||||||
and "teil_id" in le
|
|
||||||
for le in logs
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
with capture_logs() as logs:
|
response = client.post(reverse("collector:enter"), data={"new_name": same_name})
|
||||||
response = client.post(reverse("collector:enter"), data={"new_name": same_name})
|
assert response.status_code == 302
|
||||||
assert response.status_code == 302
|
logot.assert_logged(logged.warning("Teil already existed"))
|
||||||
assert any(
|
|
||||||
(
|
|
||||||
le["event"].lower() == "Teil already existed".lower()
|
|
||||||
and le["log_level"].lower() == "warning"
|
|
||||||
and "teil_id" not in le
|
|
||||||
for le in logs
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def test_model_manager_lists_newest_teil_first():
|
|
||||||
t1 = Teil.objects.create(name="Teil 1")
|
|
||||||
t2 = Teil.objects.create(name="Teil 2")
|
|
||||||
t3 = Teil.objects.create(name="Teil 3")
|
|
||||||
|
|
||||||
assert t1.modified < t2.modified < t3.modified
|
|
||||||
|
|
||||||
all_teile = Teil.objects.all()
|
|
||||||
|
|
||||||
assert all_teile[2].modified < all_teile[1].modified < all_teile[0].modified
|
|
||||||
|
|
|
||||||
5
justfile
5
justfile
|
|
@ -4,8 +4,6 @@ deps:
|
||||||
sync:
|
sync:
|
||||||
pip-sync requirements/dev.txt
|
pip-sync requirements/dev.txt
|
||||||
|
|
||||||
freshdeps: deps sync
|
|
||||||
|
|
||||||
lint: lint-ruff lint-django lint-woodpecker
|
lint: lint-ruff lint-django lint-woodpecker
|
||||||
|
|
||||||
lint-ruff:
|
lint-ruff:
|
||||||
|
|
@ -13,7 +11,6 @@ lint-ruff:
|
||||||
|
|
||||||
lint-django:
|
lint-django:
|
||||||
python -m django check
|
python -m django check
|
||||||
python -m django validate_templates
|
|
||||||
|
|
||||||
lint-woodpecker:
|
lint-woodpecker:
|
||||||
-woodpecker-cli lint .woodpecker/workflow.yaml
|
-woodpecker-cli lint .woodpecker/workflow.yaml
|
||||||
|
|
@ -23,5 +20,3 @@ serve:
|
||||||
|
|
||||||
test *ARGS:
|
test *ARGS:
|
||||||
ENV_PATH=.env.test python -m pytest {{ARGS}}
|
ENV_PATH=.env.test python -m pytest {{ARGS}}
|
||||||
|
|
||||||
alias fd := freshdeps
|
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@ addopts = [
|
||||||
"--no-migrations",
|
"--no-migrations",
|
||||||
"--capture=sys",
|
"--capture=sys",
|
||||||
]
|
]
|
||||||
|
logot_capturer = "logot.structlog.StructlogCapturer"
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["pdm-backend"]
|
requires = ["pdm-backend"]
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
-r test.in
|
-r test.in
|
||||||
|
|
||||||
django-debug-toolbar # debugging in the browser
|
django-debug-toolbar
|
||||||
django-stubs # type hints for django
|
django-stubs
|
||||||
ipython # more colorful repl
|
ipython
|
||||||
pip-compile-multi # superior dependency management
|
pip-compile-multi
|
||||||
rich # pretty exceptions on dev/console
|
rich
|
||||||
ruff # linter
|
ruff
|
||||||
uv # resolver for pip-compile-multi
|
uv
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# SHA1:d8e7f5aef64e2e1e161d339a9c1c53d42cdd0981
|
# SHA1:48c3af154036b224a6b21f175ea0a949febaf6f5
|
||||||
#
|
#
|
||||||
# This file is autogenerated by pip-compile-multi
|
# This file is autogenerated by pip-compile-multi
|
||||||
# To update, run:
|
# To update, run:
|
||||||
|
|
|
||||||
|
|
@ -3,3 +3,4 @@
|
||||||
hypothesis[django]
|
hypothesis[django]
|
||||||
pytest
|
pytest
|
||||||
pytest-django
|
pytest-django
|
||||||
|
logot[pytest,structlog]
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# SHA1:9bf147356ad56dbe073ef0973141bdfb94631c9b
|
# SHA1:40e4b481355fc16525f8944d39904264b6e382a6
|
||||||
#
|
#
|
||||||
# This file is autogenerated by pip-compile-multi
|
# This file is autogenerated by pip-compile-multi
|
||||||
# To update, run:
|
# To update, run:
|
||||||
|
|
@ -7,8 +7,9 @@
|
||||||
#
|
#
|
||||||
-r prod.txt
|
-r prod.txt
|
||||||
attrs==25.3.0
|
attrs==25.3.0
|
||||||
hypothesis==6.129.3
|
hypothesis==6.129.2
|
||||||
iniconfig==2.0.0
|
iniconfig==2.0.0
|
||||||
|
logot==1.3.0
|
||||||
packaging==24.2
|
packaging==24.2
|
||||||
pluggy==1.5.0
|
pluggy==1.5.0
|
||||||
pytest==8.3.5
|
pytest==8.3.5
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue