nvchecker/tests/test_archpkg.py

36 lines
867 B
Python
Raw Normal View History

2017-02-28 07:24:53 +00:00
# MIT licensed
2020-08-17 08:31:59 +00:00
# Copyright (c) 2013-2020 lilydjwg <lilydjwg@gmail.com>, et al.
2017-02-28 07:24:53 +00:00
2017-07-04 09:04:29 +00:00
from flaky import flaky
2017-02-04 08:29:59 +00:00
import pytest
pytestmark = [pytest.mark.asyncio, pytest.mark.needs_net]
2015-11-05 03:42:07 +00:00
2017-07-04 09:04:29 +00:00
@flaky
async def test_archpkg(get_version):
assert await get_version("base", {
2020-08-17 08:31:59 +00:00
"source": "archpkg",
}) == "3-1"
2015-11-05 03:42:07 +00:00
2017-07-04 09:04:29 +00:00
@flaky
async def test_archpkg_strip_release(get_version):
assert await get_version("base", {
2020-08-17 08:31:59 +00:00
"source": "archpkg",
"strip_release": True,
}) == "3"
2019-10-28 16:19:07 +00:00
@flaky
async def test_archpkg_provided(get_version):
assert await get_version("dbus", {
2020-08-17 08:31:59 +00:00
"source": "archpkg",
"provided": "libdbus-1.so",
}) == "3-64"
2019-10-28 16:19:07 +00:00
@flaky
async def test_archpkg_provided_strip(get_version):
assert await get_version("jsoncpp", {
2020-08-17 08:31:59 +00:00
"source": "archpkg",
2019-10-28 16:19:07 +00:00
"provided": "libjsoncpp.so",
2020-08-17 08:31:59 +00:00
"strip_release": True,
2021-12-29 08:36:23 +00:00
}) == "25"
2019-10-28 16:19:07 +00:00