mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 23:37:18 +00:00
The new --(no-)increment flag has been added to add, update and rebuild subcommands. In case if it is true and package version is the same as in repository, it will automatically bump pkgrel appending (increasing) minor part of it (e.g. 1.0.0-1 -> 1.0.0-1.1). Inn order to implement this, the shadow (e.g. it will not store it in database) patch for pkgrel will be created
95 lines
2.3 KiB
Python
95 lines
2.3 KiB
Python
import logging
|
|
import pytest
|
|
|
|
from ahriman.core.alpm.repo import Repo
|
|
from ahriman.core.build_tools.task import Task
|
|
from ahriman.core.configuration import Configuration
|
|
from ahriman.core.sign.gpg import GPG
|
|
from ahriman.core.tree import Leaf
|
|
from ahriman.models.package import Package
|
|
from ahriman.models.repository_paths import RepositoryPaths
|
|
|
|
|
|
@pytest.fixture
|
|
def leaf_ahriman(package_ahriman: Package) -> Leaf:
|
|
"""
|
|
fixture for tree leaf with package
|
|
|
|
Args:
|
|
package_ahriman(Package): package fixture
|
|
|
|
Returns:
|
|
Leaf: tree leaf test instance
|
|
"""
|
|
return Leaf(package_ahriman)
|
|
|
|
|
|
@pytest.fixture
|
|
def leaf_python_schedule(package_python_schedule: Package) -> Leaf:
|
|
"""
|
|
fixture for tree leaf with package
|
|
|
|
Args:
|
|
package_python_schedule(Package): package fixture
|
|
|
|
Returns:
|
|
Leaf: tree leaf test instance
|
|
"""
|
|
return Leaf(package_python_schedule)
|
|
|
|
|
|
@pytest.fixture
|
|
def log_record() -> logging.LogRecord:
|
|
"""
|
|
fixture for log record object
|
|
|
|
Returns:
|
|
logging.LogRecord: log record test instance
|
|
"""
|
|
return logging.LogRecord("record", logging.INFO, "path", 42, "log message", args=(), exc_info=None)
|
|
|
|
|
|
@pytest.fixture
|
|
def repo(configuration: Configuration, repository_paths: RepositoryPaths) -> Repo:
|
|
"""
|
|
fixture for repository wrapper
|
|
|
|
Args:
|
|
configuration(Configuration): configuration fixture
|
|
repository_paths(RepositoryPaths): repository paths fixture
|
|
|
|
Returns:
|
|
Repo: repository wrapper test instance
|
|
"""
|
|
return Repo(configuration.get("repository", "name"), repository_paths, [])
|
|
|
|
|
|
@pytest.fixture
|
|
def gpg(configuration: Configuration) -> GPG:
|
|
"""
|
|
fixture for empty GPG
|
|
|
|
Args:
|
|
configuration(Configuration): configuration fixture
|
|
|
|
Returns:
|
|
GPG: GPG test instance
|
|
"""
|
|
return GPG(configuration)
|
|
|
|
|
|
@pytest.fixture
|
|
def task_ahriman(package_ahriman: Package, configuration: Configuration, repository_paths: RepositoryPaths) -> Task:
|
|
"""
|
|
fixture for built task
|
|
|
|
Args:
|
|
package_ahriman(Package): package fixture
|
|
configuration(Configuration): configuration fixture
|
|
repository_paths(RepositoryPaths): repository paths fixture
|
|
|
|
Returns:
|
|
Task: built task test instance
|
|
"""
|
|
return Task(package_ahriman, configuration, "x86_64", repository_paths)
|