aurweb/test/test_pkgmaint.py
moson-mo 8d2e176c2f
housekeep: stop "pkgmaint" script (cron job)
With the removal of the "setup-repo" command this script becomes obsolete,
because it is not possible to reserve a repo anymore.
Hence we don't need cleanup.

We've also seen issues in case the last packager's user account is removed,
leading to the deletion of a Package.

Let's deactivate this for now.

Issue report: #425

Signed-off-by: moson-mo <mo-son@mailbox.org>
2023-02-21 11:19:02 +01:00

73 lines
1.9 KiB
Python

import pytest
from aurweb import db, time
from aurweb.models import Package, PackageBase, User
from aurweb.models.account_type import USER_ID
from aurweb.scripts import pkgmaint
@pytest.fixture(autouse=True)
def setup(db_test):
return
@pytest.fixture
def user() -> User:
with db.begin():
user = db.create(
User,
Username="test",
Email="test@example.org",
Passwd="testPassword",
AccountTypeID=USER_ID,
)
yield user
@pytest.fixture
def packages(user: User) -> list[Package]:
output = []
now = time.utcnow()
with db.begin():
for i in range(5):
pkgbase = db.create(
PackageBase, Name=f"pkg_{i}", SubmittedTS=now, ModifiedTS=now
)
pkg = db.create(
Package, PackageBase=pkgbase, Name=f"pkg_{i}", Version=f"{i}.0"
)
output.append(pkg)
yield output
def test_pkgmaint_noop(packages: list[Package]):
assert len(packages) == 5
pkgmaint.main()
packages = db.query(Package).all()
assert len(packages) == 5
def test_pkgmaint(packages: list[Package]):
assert len(packages) == 5
# Modify the first package so it's out of date and gets deleted.
with db.begin():
# Reduce SubmittedTS by a day + 10 seconds.
packages[0].PackageBase.SubmittedTS -= 86400 + 10
# Run pkgmaint.
pkgmaint.main()
# Query package objects again and assert that the
# first package was deleted but all others are intact.
packages = db.query(Package).all()
# !Cleanup of packages without last packager deactivated.
# We should still have 5 packages
assert len(packages) == 5
# assert len(packages) == 4
# expected = ["pkg_1", "pkg_2", "pkg_3", "pkg_4"]
# for i, pkgname in enumerate(expected):
# assert packages[i].Name == pkgname