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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
18fa1550
Commit
18fa1550
authored
Sep 28, 2014
by
Ciro Santilli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for disabled blob edit button cases.
parent
394e2ec5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
0 deletions
+28
-0
features/project/source/browse_files.feature
features/project/source/browse_files.feature
+10
-0
features/steps/project/source/browse_files.rb
features/steps/project/source/browse_files.rb
+8
-0
features/steps/shared/paths.rb
features/steps/shared/paths.rb
+10
-0
No files found.
features/project/source/browse_files.feature
View file @
18fa1550
...
@@ -50,6 +50,16 @@ Feature: Project Source Browse Files
...
@@ -50,6 +50,16 @@ Feature: Project Source Browse Files
And
I click button
"Edit"
And
I click button
"Edit"
Then
I can edit code
Then
I can edit code
Scenario
:
If the file is binary the edit link is hidden
Given
I visit a binary file in the repo
Then
I cannot see the edit button
Scenario
:
If I don't have edit permission the edit link is disabled
Given
public project
"Community"
And
I visit project
"Community"
source page
And
I click on
".gitignore"
file in repo
Then
The edit button is disabled
@javascript
@javascript
Scenario
:
I
can edit and commit file
Scenario
:
I
can edit and commit file
Given
I click on
".gitignore"
file in repo
Given
I click on
".gitignore"
file in repo
...
...
features/steps/project/source/browse_files.rb
View file @
18fa1550
...
@@ -48,6 +48,14 @@ class Spinach::Features::ProjectSourceBrowseFiles < Spinach::FeatureSteps
...
@@ -48,6 +48,14 @@ class Spinach::Features::ProjectSourceBrowseFiles < Spinach::FeatureSteps
click_link
'Edit'
click_link
'Edit'
end
end
step
'I cannot see the edit button'
do
page
.
should_not
have_link
'edit'
end
step
'The edit button is disabled'
do
page
.
should
have_css
'.disabled'
,
text:
'Edit'
end
step
'I can edit code'
do
step
'I can edit code'
do
set_new_content
set_new_content
evaluate_script
(
'editor.getValue()'
).
should
==
new_gitignore_content
evaluate_script
(
'editor.getValue()'
).
should
==
new_gitignore_content
...
...
features/steps/shared/paths.rb
View file @
18fa1550
...
@@ -183,6 +183,11 @@ module SharedPaths
...
@@ -183,6 +183,11 @@ module SharedPaths
visit
project_tree_path
(
@project
,
root_ref
)
visit
project_tree_path
(
@project
,
root_ref
)
end
end
step
'I visit a binary file in the repo'
do
visit
project_blob_path
(
@project
,
File
.
join
(
root_ref
,
'files/images/logo-black.png'
))
end
step
"I visit my project's commits page"
do
step
"I visit my project's commits page"
do
visit
project_commits_path
(
@project
,
root_ref
,
{
limit:
5
})
visit
project_commits_path
(
@project
,
root_ref
,
{
limit:
5
})
end
end
...
@@ -385,6 +390,11 @@ module SharedPaths
...
@@ -385,6 +390,11 @@ module SharedPaths
visit
project_path
(
project
)
visit
project_path
(
project
)
end
end
step
'I visit project "Community" source page'
do
project
=
Project
.
find_by
(
name:
'Community'
)
visit
project_tree_path
(
project
,
root_ref
)
end
step
'I visit project "Internal" page'
do
step
'I visit project "Internal" page'
do
project
=
Project
.
find_by
(
name:
"Internal"
)
project
=
Project
.
find_by
(
name:
"Internal"
)
visit
project_path
(
project
)
visit
project_path
(
project
)
...
...
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