Skip to content
Snippets Groups Projects
Verified Commit 6d2e7aa1 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

nixguix: Register task

Related to T3781
parent fbfdf88e
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,7 @@ setup(
lister.golang=swh.lister.golang:register
lister.hackage=swh.lister.hackage:register
lister.launchpad=swh.lister.launchpad:register
lister.nixguix=swh.lister.nixguix:register
lister.npm=swh.lister.npm:register
lister.nuget=swh.lister.nuget:register
lister.opam=swh.lister.opam:register
......
......@@ -8,5 +8,5 @@ def register():
return {
"lister": NixGuixLister,
"task_modules": ["%s.tasks" % __name__],
"task_modules": [f"{__name__}.tasks"],
}
# Copyright (C) 2022 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
from celery import shared_task
@shared_task(name=__name__ + ".NixGuixListerTask")
def list_nixguix(**lister_args):
"""Lister task for Arch Linux"""
from swh.lister.nixguix.lister import NixGuixLister
return NixGuixLister.from_configfile(**lister_args).run().dict()
# Copyright (C) 2022 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
from swh.lister.pattern import ListerStats
NAMESPACE = "swh.lister.nixguix"
def test_nixguix_lister(swh_scheduler_celery_app, swh_scheduler_celery_worker, mocker):
# setup the mocked ArchLister
lister = mocker.patch(f"{NAMESPACE}.lister.NixGuixLister")
lister.from_configfile.return_value = lister
stats = ListerStats(pages=1, origins=42)
lister.run.return_value = stats
res = swh_scheduler_celery_app.send_task(
f"{NAMESPACE}.tasks.NixGuixListerTask",
)
assert res
res.wait()
assert res.successful()
assert res.result == stats.dict()
lister.from_configfile.assert_called_once_with()
lister.run.assert_called_once_with()
......@@ -35,6 +35,10 @@ lister_args = {
"url": "https://try.gogs.io/",
"api_token": "secret",
},
"nixguix": {
"url": "https://guix.gnu.org/sources.json",
"origin_upstream": "https://git.savannah.gnu.org/cgit/guix.git/",
},
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment