Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chenhao Ma
core
Commits
27fc60e3
Commit
27fc60e3
authored
7 years ago
by
Megan Henning
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #951 from scitran/analysis-dl
Fix analysis download
parents
8271c60f
fe045d8b
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
api/handlers/refererhandler.py
+5
-3
5 additions, 3 deletions
api/handlers/refererhandler.py
test/integration_tests/python/test_download.py
+14
-3
14 additions, 3 deletions
test/integration_tests/python/test_download.py
with
19 additions
and
6 deletions
api/handlers/refererhandler.py
+
5
−
3
View file @
27fc60e3
...
...
@@ -265,7 +265,7 @@ class AnalysesHandler(RefererHandler):
file_cnt
=
1
ticket
=
util
.
download_ticket
(
self
.
request
.
client_addr
,
'
file
'
,
cid
,
filename
,
total_size
,
origin
=
self
.
origin
)
else
:
targets
,
total_size
,
file_cnt
=
self
.
_prepare_batch
(
fileinfo
)
targets
,
total_size
,
file_cnt
=
self
.
_prepare_batch
(
fileinfo
,
analysis
)
label
=
util
.
sanitize_string_to_filename
(
self
.
storage
.
get_container
(
_id
).
get
(
'
label
'
,
'
No Label
'
))
filename
=
'
analysis_
'
+
label
+
'
.tar
'
ticket
=
util
.
download_ticket
(
self
.
request
.
client_addr
,
'
batch
'
,
targets
,
filename
,
total_size
,
origin
=
self
.
origin
)
...
...
@@ -357,7 +357,7 @@ class AnalysesHandler(RefererHandler):
return
ticket
def
_prepare_batch
(
self
,
fileinfo
):
def
_prepare_batch
(
self
,
fileinfo
,
analysis
):
## duplicated code from download.py
## we need a way to avoid this
targets
=
[]
...
...
@@ -366,7 +366,9 @@ class AnalysesHandler(RefererHandler):
for
f
in
fileinfo
:
filepath
=
os
.
path
.
join
(
data_path
,
util
.
path_from_hash
(
f
[
'
hash
'
]))
if
os
.
path
.
exists
(
filepath
):
# silently skip missing files
targets
.
append
((
filepath
,
'
analyses/
'
+
f
[
'
name
'
],
f
[
'
size
'
]))
targets
.
append
((
filepath
,
util
.
sanitize_string_to_filename
(
analysis
[
'
label
'
])
+
'
/
'
+
f
[
'
name
'
],
'
analyses
'
,
analysis
[
'
_id
'
],
f
[
'
size
'
]))
total_size
+=
f
[
'
size
'
]
total_cnt
+=
1
return
targets
,
total_size
,
total_cnt
...
...
This diff is collapsed.
Click to expand it.
test/integration_tests/python/test_download.py
+
14
−
3
View file @
27fc60e3
...
...
@@ -40,7 +40,7 @@ def test_download(data_builder, file_form, as_admin, api_db):
'
-
'
:
[
'
minus
'
]
}}],
'
nodes
'
:
[
{
'
level
'
:
'
project
'
,
'
_id
'
:
project
},
{
'
level
'
:
'
project
'
,
'
_id
'
:
project
},
]
})
assert
r
.
ok
...
...
@@ -54,7 +54,7 @@ def test_download(data_builder, file_form, as_admin, api_db):
tar
=
tarfile
.
open
(
mode
=
"
r
"
,
fileobj
=
tar_file
)
# Verify a single file in tar with correct file name
found_second_session
=
False
found_second_session
=
False
for
tarinfo
in
tar
:
assert
os
.
path
.
basename
(
tarinfo
.
name
)
==
file_name
if
'
session1_0
'
in
str
(
tarinfo
.
name
):
...
...
@@ -88,7 +88,7 @@ def test_download(data_builder, file_form, as_admin, api_db):
tar
=
tarfile
.
open
(
mode
=
"
r
"
,
fileobj
=
tar_file
)
# Verify a single file in tar with correct file name
found_second_session
=
False
found_second_session
=
False
for
tarinfo
in
tar
:
assert
os
.
path
.
basename
(
tarinfo
.
name
)
==
file_name
if
'
session1_0
'
in
str
(
tarinfo
.
name
):
...
...
@@ -251,6 +251,17 @@ def test_analysis_download(data_builder, file_form, as_admin):
r
=
as_admin
.
get
(
'
/download
'
,
params
=
{
'
ticket
'
:
ticket
})
assert
r
.
ok
# Check to make sure files are in tar
tar_file
=
cStringIO
.
StringIO
(
r
.
content
)
tar
=
tarfile
.
open
(
mode
=
"
r
"
,
fileobj
=
tar_file
)
members
=
tar
.
getmembers
()
assert
len
(
members
)
==
2
for
tarinfo
in
members
:
assert
os
.
path
.
basename
(
tarinfo
.
name
)
in
[
'
one.csv
'
,
'
two.zip
'
]
tar
.
close
()
# try to get download ticket for non-existent analysis file
r
=
as_admin
.
get
(
analysis_files
+
'
/non-existent.csv
'
)
assert
r
.
status_code
==
404
...
...
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