Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
swh-web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Commits
ee31579f
Commit
ee31579f
authored
9 years ago
by
Antoine R. Dumont
Browse files
Options
Downloads
Patches
Plain Diff
Refactor - Factorize common conversion behavior
parent
94a5ebaf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
swh/web/ui/converters.py
+43
-33
43 additions, 33 deletions
swh/web/ui/converters.py
swh/web/ui/tests/test_converters.py
+24
-0
24 additions, 0 deletions
swh/web/ui/tests/test_converters.py
with
67 additions
and
33 deletions
swh/web/ui/converters.py
+
43
−
33
View file @
ee31579f
...
...
@@ -6,20 +6,43 @@
from
swh.core
import
hashutil
def
from_origin
(
origin
):
"""
Convert from an SWH origin to an origin dictionary.
def
from_swh
(
dict_swh
,
hashess
=
[],
bytess
=
[]):
"""
Convert from an swh dictionary to something reasonably json
serializable.
Args:
- dict_swh: the origin dictionary needed to be transformed
- hashess: list/set of keys representing hashes values (sha1, sha256,
sha1_git, etc...) as bytes. Those need to be transformed in hexadecimal
string
- bytess: list/set of keys representing bytes values which needs to
be decoded
The remaining keys are copied as is in the output.
Returns:
dictionary equivalent as dict_swh only with its keys `converted`.
"""
new_
origin
=
{}
for
key
,
value
in
origin
.
items
():
if
key
==
'
revision
'
:
new_
origin
[
key
]
=
hashutil
.
hash_to_hex
(
value
)
elif
key
==
'
path
'
:
new_
origin
[
key
]
=
value
.
decode
(
'
utf-8
'
)
new_
dict
=
{}
for
key
,
value
in
dict_swh
.
items
():
if
key
in
hashess
:
new_
dict
[
key
]
=
hashutil
.
hash_to_hex
(
value
)
if
value
else
None
elif
key
in
bytess
:
new_
dict
[
key
]
=
value
.
decode
(
'
utf-8
'
)
else
:
new_origin
[
key
]
=
value
new_dict
[
key
]
=
value
return
new_dict
return
new_origin
def
from_origin
(
origin
):
"""
Convert from an SWH origin to an origin dictionary.
"""
return
from_swh
(
origin
,
hashess
=
set
([
'
revision
'
]),
bytess
=
set
([
'
path
'
]))
def
from_release
(
release
):
...
...
@@ -45,15 +68,9 @@ def from_release(release):
- synthetic: the synthetic property (boolean)
"""
new_release
=
{}
for
key
,
value
in
release
.
items
():
if
key
in
[
'
id
'
,
'
revision
'
]:
new_release
[
key
]
=
hashutil
.
hash_to_hex
(
value
)
if
value
else
None
elif
key
==
'
comment
'
:
new_release
[
key
]
=
value
.
decode
(
'
utf-8
'
)
else
:
new_release
[
key
]
=
value
return
new_release
return
from_swh
(
release
,
hashess
=
set
([
'
id
'
,
'
revision
'
]),
bytess
=
set
([
'
comment
'
]))
def
from_revision
(
revision
):
...
...
@@ -83,17 +100,10 @@ def from_revision(revision):
- remaining keys are left as is
"""
new_revision
=
{}
for
key
,
value
in
revision
.
items
():
if
key
in
[
'
id
'
,
'
directory
'
]:
new_revision
[
key
]
=
hashutil
.
hash_to_hex
(
value
)
if
value
else
None
elif
key
in
[
'
author_name
'
,
'
committer_name
'
,
'
author_email
'
,
'
committer_email
'
,
'
message
'
]:
new_revision
[
key
]
=
value
.
decode
(
'
utf-8
'
)
else
:
new_revision
[
key
]
=
value
return
new_revision
return
from_swh
(
revision
,
hashess
=
set
([
'
id
'
,
'
directory
'
]),
bytess
=
set
([
'
author_name
'
,
'
committer_name
'
,
'
author_email
'
,
'
committer_email
'
,
'
message
'
]))
This diff is collapsed.
Click to expand it.
swh/web/ui/tests/test_converters.py
+
24
−
0
View file @
ee31579f
...
...
@@ -14,6 +14,30 @@ from swh.web.ui import converters
class
ConvertersTestCase
(
unittest
.
TestCase
):
@istest
def
from_swh
(
self
):
some_input
=
{
'
a
'
:
'
something
'
,
'
b
'
:
'
someone
'
,
'
c
'
:
b
'
sharp-0.3.4.tgz
'
,
'
d
'
:
b
'
\xb0
L
\xaf\x10\xe9
SQ`
\xd9\x0e\x87
KE
\xaa
Bm
\xe7
b
\xf1\x9f
'
,
'
e
'
:
b
'
sharp.html/doc_002dS_005fISREG.html
'
}
expected_output
=
{
'
a
'
:
'
something
'
,
'
b
'
:
'
someone
'
,
'
c
'
:
'
sharp-0.3.4.tgz
'
,
'
d
'
:
'
b04caf10e9535160d90e874b45aa426de762f19f
'
,
'
e
'
:
'
sharp.html/doc_002dS_005fISREG.html
'
}
actual_output
=
converters
.
from_swh
(
some_input
,
hashess
=
set
([
'
d
'
]),
bytess
=
set
([
'
c
'
,
'
e
'
]))
self
.
assertEquals
(
expected_output
,
actual_output
)
@istest
def
from_origin
(
self
):
# given
...
...
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