Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
e53b350c
Commit
e53b350c
authored
Dec 07, 2015
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs for showing lfs object in UI.
parent
b2c4675c
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
111 additions
and
21 deletions
+111
-21
app/controllers/projects/raw_controller.rb
app/controllers/projects/raw_controller.rb
+17
-7
app/helpers/blob_helper.rb
app/helpers/blob_helper.rb
+13
-1
app/helpers/tree_helper.rb
app/helpers/tree_helper.rb
+4
-0
app/models/lfs_object.rb
app/models/lfs_object.rb
+4
-0
app/views/projects/blob/_actions.html.haml
app/views/projects/blob/_actions.html.haml
+3
-3
app/views/projects/blob/_blob.html.haml
app/views/projects/blob/_blob.html.haml
+1
-1
app/views/projects/blob/_download.html.haml
app/views/projects/blob/_download.html.haml
+1
-5
app/views/projects/blob/show.html.haml
app/views/projects/blob/show.html.haml
+1
-1
app/views/projects/diffs/_file.html.haml
app/views/projects/diffs/_file.html.haml
+2
-2
features/project/source/browse_files.feature
features/project/source/browse_files.feature
+6
-0
features/steps/project/source/browse_files.rb
features/steps/project/source/browse_files.rb
+26
-0
spec/controllers/projects/raw_controller_spec.rb
spec/controllers/projects/raw_controller_spec.rb
+32
-0
spec/support/test_env.rb
spec/support/test_env.rb
+1
-1
No files found.
app/controllers/projects/raw_controller.rb
View file @
e53b350c
...
...
@@ -38,18 +38,28 @@ class Projects::RawController < Projects::ApplicationController
type
=
get_blob_type
send_data
(
@blob
.
data
,
type:
type
,
disposition:
'inline'
)
@blob
.
data
,
type:
type
,
disposition:
'inline'
)
end
def
send_lfs_object
lfs_object
=
LfsObject
.
find_by_oid
(
@blob
.
lfs_oid
)
return
nil
unless
lfs_object
&&
lfs_object
.
file
.
exists?
lfs_object
=
find_lfs_object
if
lfs_object
.
projects
.
exists?
(
lfs_object
.
storage_project
(
@project
).
id
)
if
lfs_object
&&
lfs_object
.
project_allowed_access?
(
@project
)
send_file
lfs_object
.
file
.
path
,
filename:
@blob
.
name
,
disposition:
'attachment'
else
render_404
end
end
def
find_lfs_object
lfs_object
=
LfsObject
.
find_by_oid
(
@blob
.
lfs_oid
)
if
lfs_object
&&
lfs_object
.
file
.
exists?
lfs_object
else
nil
end
end
end
app/helpers/blob_helper.rb
View file @
e53b350c
...
...
@@ -30,7 +30,7 @@ module BlobHelper
nil
end
if
blob
&&
blob
.
text?
if
blob
&&
blob
.
text?
&&
!
blob
.
lfs_pointer?
text
=
'Edit'
after
=
options
[
:after
]
||
''
from_mr
=
options
[
:from_merge_request_id
]
...
...
@@ -71,4 +71,16 @@ module BlobHelper
def
blob_icon
(
mode
,
name
)
icon
(
"
#{
file_type_icon_class
(
'file'
,
mode
,
name
)
}
fw"
)
end
def
viewable?
(
blob
)
blob
.
text?
&&
!
blob
.
lfs_pointer?
end
def
blob_size
(
blob
)
if
blob
.
lfs_pointer?
blob
.
lfs_size
else
blob
.
size
end
end
end
app/helpers/tree_helper.rb
View file @
e53b350c
...
...
@@ -54,6 +54,10 @@ module TreeHelper
::
Gitlab
::
GitAccess
.
new
(
current_user
,
project
).
can_push_to_branch?
(
ref
)
end
def
can_delete_or_replace?
(
blob
)
allowed_tree_edit?
&&
!
blob
.
lfs_pointer?
end
def
tree_breadcrumbs
(
tree
,
max_links
=
2
)
if
@path
.
present?
part_path
=
""
...
...
app/models/lfs_object.rb
View file @
e53b350c
...
...
@@ -13,4 +13,8 @@ class LfsObject < ActiveRecord::Base
project
end
end
def
project_allowed_access?
(
project
)
projects
.
exists?
(
storage_project
(
project
).
id
)
end
end
app/views/projects/blob/_actions.html.haml
View file @
e53b350c
.btn-group.tree-btn-group
=
edit_blob_link
(
@project
,
@ref
,
@path
)
unless
@blob
.
lfs_pointer?
=
edit_blob_link
(
@project
,
@ref
,
@path
)
=
link_to
'Raw'
,
namespace_project_raw_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'btn btn-sm'
,
target:
'_blank'
-# only show normal/blame view links for text files
-
if
@blob
.
text?
&&
!
@blob
.
lfs_pointer?
-
if
viewable?
(
@blob
)
-
if
current_page?
namespace_project_blame_path
(
@project
.
namespace
,
@project
,
@id
)
=
link_to
'Normal View'
,
namespace_project_blob_path
(
@project
.
namespace
,
@project
,
@id
),
class:
'btn btn-sm'
...
...
@@ -16,7 +16,7 @@
=
link_to
'Permalink'
,
namespace_project_blob_path
(
@project
.
namespace
,
@project
,
tree_join
(
@commit
.
sha
,
@path
)),
class:
'btn btn-sm'
-
if
allowed_tree_edit?
&&
!
@blob
.
lfs_pointer?
-
if
can_delete_or_replace?
(
@blob
)
.btn-group
{
role:
"group"
}
%button
.btn.btn-default
{
'data-target'
=>
'#modal-upload-blob'
,
'data-toggle'
=>
'modal'
}
Replace
%button
.btn.btn-remove
{
'data-target'
=>
'#modal-remove-blob'
,
'data-toggle'
=>
'modal'
}
Delete
app/views/projects/blob/_blob.html.haml
View file @
e53b350c
...
...
@@ -29,7 +29,7 @@
%strong
=
blob
.
name
%small
=
number_to_human_size
(
blob
.
size
)
unless
blob
.
lfs_pointer?
=
number_to_human_size
(
blob
_size
(
blob
))
.file-actions.hidden-xs
=
render
"actions"
-
if
blob
.
lfs_pointer?
...
...
app/views/projects/blob/_download.html.haml
View file @
e53b350c
...
...
@@ -4,8 +4,4 @@
%h1
.light
%i
.fa.fa-download
%h4
-
if
blob
.
lfs_pointer?
-
size
=
blob
.
lfs_size
-
else
-
size
=
blob
.
size
Download (
#{
number_to_human_size
size
}
)
Download (
#{
number_to_human_size
blob_size
(
blob
)
}
)
app/views/projects/blob/show.html.haml
View file @
e53b350c
...
...
@@ -6,7 +6,7 @@
%div
#tree-holder
.tree-holder
=
render
'blob'
,
blob:
@blob
-
if
allowed_tree_edit?
-
if
can_delete_or_replace?
(
@blob
)
=
render
'projects/blob/remove'
-
title
=
"Replace
#{
@blob
.
name
}
"
...
...
app/views/projects/diffs/_file.html.haml
View file @
e53b350c
...
...
@@ -25,7 +25,7 @@
=
"
#{
diff_file
.
diff
.
a_mode
}
→
#{
diff_file
.
diff
.
b_mode
}
"
.diff-controls
-
if
blob
.
text?
&&
!
blob
.
lfs_pointer?
-
if
viewable?
(
blob
)
=
link_to
'#'
,
class:
'js-toggle-diff-comments btn btn-sm active has_tooltip'
,
title:
"Toggle comments for this file"
do
%i
.fa.fa-comments
...
...
@@ -40,7 +40,7 @@
.diff-content.diff-wrap-lines
-# Skipp all non non-supported blobs
-
return
unless
blob
.
respond_to?
(
'text?'
)
-
if
blob
.
text?
&&
!
blob
.
lfs_pointer?
-
if
viewable?
(
blob
)
-
if
diff_view
==
'parallel'
=
render
"projects/diffs/parallel_view"
,
diff_file:
diff_file
,
project:
project
,
blob:
blob
,
index:
i
-
else
...
...
features/project/source/browse_files.feature
View file @
e53b350c
...
...
@@ -221,3 +221,9 @@ Feature: Project Source Browse Files
Given
I switch ref to fix
And
I visit the fix tree
Then
I see the commit data for a directory with a leading dot
Scenario
:
I
browse LFS object
Given
I click on
"files/lfs/lfs_object.iso"
file in repo
Then
I should see download link and object size
And
I should not see lfs pointer details
And
I should see buttons for allowed commands
features/steps/project/source/browse_files.rb
View file @
e53b350c
...
...
@@ -305,6 +305,32 @@ class Spinach::Features::ProjectSourceBrowseFiles < Spinach::FeatureSteps
expect
(
page
).
not_to
have_content
(
'Loading commit data...'
)
end
step
'I click on "files/lfs/lfs_object.iso" file in repo'
do
click_link
'files'
click_link
"lfs"
click_link
"lfs_object.iso"
end
step
'I should see download link and object size'
do
expect
(
page
).
to
have_content
'Download (1.5 MB)'
end
step
'I should not see lfs pointer details'
do
expect
(
page
).
not_to
have_content
'version https://git-lfs.github.com/spec/v1'
expect
(
page
).
not_to
have_content
'oid sha256:91eff75a492a3ed0dfcb544d7f31326bc4014c8551849c192fd1e48d4dd2c897'
expect
(
page
).
not_to
have_content
'size 1575078'
end
step
'I should see buttons for allowed commands'
do
expect
(
page
).
to
have_content
'Raw'
expect
(
page
).
to
have_content
'History'
expect
(
page
).
to
have_content
'Permalink'
expect
(
page
).
not_to
have_content
'Edit'
expect
(
page
).
not_to
have_content
'Blame'
expect
(
page
).
not_to
have_content
'Delete'
expect
(
page
).
not_to
have_content
'Replace'
end
private
def
set_new_content
...
...
spec/controllers/projects/raw_controller_spec.rb
View file @
e53b350c
...
...
@@ -33,5 +33,37 @@ describe Projects::RawController do
expect
(
response
.
header
[
'Content-Type'
]).
to
eq
(
'image/jpeg'
)
end
end
context
'lfs object'
do
let
(
:id
)
{
'master/files/lfs/lfs_object.iso'
}
let!
(
:lfs_object
)
{
create
(
:lfs_object
,
oid:
'91eff75a492a3ed0dfcb544d7f31326bc4014c8551849c192fd1e48d4dd2c897'
,
size:
'1575078'
)
}
context
'when project has access'
do
before
do
public_project
.
lfs_objects
<<
lfs_object
end
it
'serves the file'
do
get
(
:show
,
namespace_id:
public_project
.
namespace
.
to_param
,
project_id:
public_project
.
to_param
,
id:
id
)
expect
(
response
.
status
).
to
eq
(
200
)
expect
(
response
.
header
[
'Content-Type'
]).
to
eq
(
'application/octet-stream'
)
end
end
context
'when project does not have access'
do
it
'does not serve the file'
do
get
(
:show
,
namespace_id:
public_project
.
namespace
.
to_param
,
project_id:
public_project
.
to_param
,
id:
id
)
expect
(
response
.
status
).
to
eq
(
404
)
end
end
end
end
end
spec/support/test_env.rb
View file @
e53b350c
...
...
@@ -12,7 +12,7 @@ module TestEnv
'fix'
=>
'48f0be4'
,
'improve/awesome'
=>
'5937ac0'
,
'markdown'
=>
'0ed8c6c'
,
'master'
=>
'
5937ac0
'
,
'master'
=>
'
be93687
'
,
"'test'"
=>
'e56497b'
,
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment