feat: Switch to postgres

WIP!

Signed-off-by: moson <moson@archlinux.org>
This commit is contained in:
moson 2023-10-26 18:45:35 +02:00
parent 40c1d3e8ee
commit e36b405689
No known key found for this signature in database
GPG key ID: 4A4760AB4EE15296
52 changed files with 395 additions and 463 deletions

View file

@ -83,7 +83,7 @@ def test_login_logout(client: TestClient, user: User):
def test_login_suspended(client: TestClient, user: User):
with db.begin():
user.Suspended = 1
user.Suspended = True
data = {"user": user.Username, "passwd": "testPassword", "next": "/"}
with client as request:
@ -370,5 +370,4 @@ def test_generate_unique_sid_exhausted(
assert re.search(expr, caplog.text)
assert "IntegrityError" in caplog.text
expr = r"Duplicate entry .+ for key .+SessionID.+"
assert re.search(expr, response.text)
assert "duplicate key value" in response.text