Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F9312266
conftest.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
conftest.py
View Options
# Copyright (C) 2016-2021 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
datetime
import
datetime
,
timezone
import
os
from
typing
import
Dict
,
List
from
unittest.mock
import
patch
import
pytest
from
swh.scheduler.model
import
ListedOrigin
,
Lister
from
swh.scheduler.tests.common
import
LISTERS
# make sure we are not fooled by CELERY_ config environment vars
for
var
in
[
x
for
x
in
os
.
environ
.
keys
()
if
x
.
startswith
(
"CELERY"
)]:
os
.
environ
.
pop
(
var
)
# test_cli tests depends on a en/C locale, so ensure it
os
.
environ
[
"LC_ALL"
]
=
"C.UTF-8"
@pytest.fixture
def
stored_lister
(
swh_scheduler
)
->
Lister
:
"""Store a lister in the scheduler and return its information"""
return
swh_scheduler
.
get_or_create_lister
(
**
LISTERS
[
0
])
@pytest.fixture
def
visit_types
()
->
List
[
str
]:
"""Possible visit types in `ListedOrigin`s"""
return
[
"test-git"
,
"test-svn"
]
@pytest.fixture
def
listed_origins_by_type
(
stored_lister
:
Lister
,
visit_types
:
List
[
str
]
)
->
Dict
[
str
,
List
[
ListedOrigin
]]:
"""A fixed list of `ListedOrigin`s, for each `visit_type`."""
count_per_type
=
1000
assert
stored_lister
.
id
return
{
visit_type
:
[
ListedOrigin
(
lister_id
=
stored_lister
.
id
,
url
=
f
"https://{visit_type}.example.com/{i:04d}"
,
visit_type
=
visit_type
,
last_update
=
datetime
(
2020
,
6
,
15
,
16
,
0
,
0
,
j
*
count_per_type
+
i
,
tzinfo
=
timezone
.
utc
),
)
for
i
in
range
(
count_per_type
)
]
for
j
,
visit_type
in
enumerate
(
visit_types
)
}
@pytest.fixture
def
listed_origins
(
listed_origins_by_type
)
->
List
[
ListedOrigin
]:
"""Return a (fixed) set of listed origins"""
return
sum
(
listed_origins_by_type
.
values
(),
[])
@pytest.fixture
def
storage
(
swh_storage
):
"""An instance of in-memory storage that gets injected
into the CLI functions."""
with
patch
(
"swh.storage.get_storage"
)
as
get_storage_mock
:
get_storage_mock
.
return_value
=
swh_storage
yield
swh_storage
File Metadata
Details
Attached
Mime Type
text/x-python
Expires
Thu, Jul 3, 10:47 AM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3285062
Attached To
rDSCH Scheduling utilities
Event Timeline
Log In to Comment