Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-web-client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Platform
Development
swh-web-client
Commits
19bef61f
Commit
19bef61f
authored
2 years ago
by
David Douard
Browse files
Options
Downloads
Patches
Plain Diff
Fix WebAPICLient.iter() method
And add a simple test for it.
parent
40ae50f9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!34
Fix WebAPICLient.iter() method
Pipeline
#5613
passed
1 year ago
Stage: external
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
swh/web/client/client.py
+5
-5
5 additions, 5 deletions
swh/web/client/client.py
swh/web/client/tests/test_web_api_client.py
+32
-3
32 additions, 3 deletions
swh/web/client/tests/test_web_api_client.py
with
37 additions
and
8 deletions
swh/web/client/client.py
+
5
−
5
View file @
19bef61f
...
...
@@ -241,15 +241,15 @@ class WebAPIClient:
obj_type
=
CoreSWHID
.
from_string
(
swhid
).
object_type
else
:
obj_type
=
swhid
.
object_type
if
obj_type
==
SNAPSHOT
:
if
obj_type
==
ObjectType
.
SNAPSHOT
:
yield
from
self
.
snapshot
(
swhid
,
typify
)
elif
obj_type
==
REVISION
:
elif
obj_type
==
ObjectType
.
REVISION
:
yield
from
[
self
.
revision
(
swhid
,
typify
)]
elif
obj_type
==
RELEASE
:
elif
obj_type
==
ObjectType
.
RELEASE
:
yield
from
[
self
.
release
(
swhid
,
typify
)]
elif
obj_type
==
DIRECTORY
:
elif
obj_type
==
ObjectType
.
DIRECTORY
:
yield
from
self
.
directory
(
swhid
,
typify
)
elif
obj_type
==
CONTENT
:
elif
obj_type
==
ObjectType
.
CONTENT
:
yield
from
[
self
.
content
(
swhid
,
typify
)]
else
:
raise
ValueError
(
f
"
invalid object type:
{
obj_type
}
"
)
...
...
This diff is collapsed.
Click to expand it.
swh/web/client/tests/test_web_api_client.py
+
32
−
3
View file @
19bef61f
...
...
@@ -7,8 +7,8 @@ import json
from
dateutil.parser
import
parse
as
parse_date
import
pytest
from
swh.model.swhids
import
CoreSWHID
from
swh.web.client.client
import
typify_json
from
.api_data
import
API_DATA
...
...
@@ -117,7 +117,6 @@ def test_iter_snapshot(web_api_client, web_api_mock):
def
test_authentication
(
web_api_client
,
web_api_mock
):
rel_id
=
"
b9db10d00835e9a43e2eebef2db1d04d4ae82342
"
url
=
f
"
{
web_api_client
.
api_url
}
/release/
{
rel_id
}
/
"
...
...
@@ -184,7 +183,7 @@ def test_origin_search(web_api_client, web_api_mock):
"
https://archive.softwareheritage.org/api/1/origin/https://bitbucket.org/foobarbazqux/rp.git/visits/
"
,
# NoQA: B950
),
]
for
(
url
,
visit
)
in
expected
:
for
url
,
visit
in
expected
:
assert
url
in
actual_urls
assert
visit
in
actual_visits
...
...
@@ -262,3 +261,33 @@ def test_typify_json_minimal_revision():
pid
=
"
swh:1:rev:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
"
assert
revision_typed
[
"
id
"
]
==
CoreSWHID
.
from_string
(
pid
)
assert
revision_typed
[
"
date
"
]
is
None
@pytest.mark.parametrize
(
"
swhid
"
,
[
"
swh:1:cnt:fe95a46679d128ff167b7c55df5d02356c5a1ae1
"
,
"
swh:1:dir:977fc4b98c0e85816348cebd3b12026407c368b6
"
,
"
swh:1:rev:aafb16d69fd30ff58afdd69036a26047f3aebdc6
"
,
"
swh:1:rel:b9db10d00835e9a43e2eebef2db1d04d4ae82342
"
,
"
swh:1:snp:6a3a2cf0b2b90ce7ae1cf0a221ed68035b686f5a
"
,
],
)
@pytest.mark.parametrize
(
"
swhid_type
"
,
[
"
str
"
,
"
CoreSWHID
"
])
@pytest.mark.parametrize
(
"
typify
"
,
[
True
,
False
])
def
test_iter
(
web_api_client
,
web_api_mock
,
swhid
,
swhid_type
,
typify
):
# full list of SWHIDs for which we mock a {known: True} answer
swhids
=
[
"
swh:1:cnt:fe95a46679d128ff167b7c55df5d02356c5a1ae1
"
,
"
swh:1:dir:977fc4b98c0e85816348cebd3b12026407c368b6
"
,
"
swh:1:rev:aafb16d69fd30ff58afdd69036a26047f3aebdc6
"
,
"
swh:1:rel:b9db10d00835e9a43e2eebef2db1d04d4ae82342
"
,
"
swh:1:snp:6a3a2cf0b2b90ce7ae1cf0a221ed68035b686f5a
"
,
]
for
swhid
in
swhids
:
if
swhid_type
==
"
CoreSWHID
"
:
assert
list
(
web_api_client
.
iter
(
CoreSWHID
.
from_string
(
swhid
),
typify
=
typify
)
)
else
:
assert
list
(
web_api_client
.
iter
(
swhid
,
typify
=
typify
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment