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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
7592137f
Commit
7592137f
authored
Apr 04, 2017
by
Jose Ivan Vargas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix rspec and spinach tests
parent
0e325ea6
Changes
18
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
33 additions
and
33 deletions
+33
-33
app/views/projects/_commit_button.html.haml
app/views/projects/_commit_button.html.haml
+1
-1
app/views/projects/blob/_template_selectors.html.haml
app/views/projects/blob/_template_selectors.html.haml
+1
-1
app/views/shared/_personal_access_tokens_form.html.haml
app/views/shared/_personal_access_tokens_form.html.haml
+1
-1
features/project/source/browse_files.feature
features/project/source/browse_files.feature
+7
-7
features/steps/dashboard/dashboard.rb
features/steps/dashboard/dashboard.rb
+3
-3
features/steps/project/source/browse_files.rb
features/steps/project/source/browse_files.rb
+2
-2
spec/features/admin/admin_users_impersonation_tokens_spec.rb
spec/features/admin/admin_users_impersonation_tokens_spec.rb
+1
-1
spec/features/auto_deploy_spec.rb
spec/features/auto_deploy_spec.rb
+1
-1
spec/features/projects/blobs/edit_spec.rb
spec/features/projects/blobs/edit_spec.rb
+1
-1
spec/features/projects/blobs/user_create_spec.rb
spec/features/projects/blobs/user_create_spec.rb
+1
-1
spec/features/projects/files/creating_a_file_spec.rb
spec/features/projects/files/creating_a_file_spec.rb
+1
-1
spec/features/projects/files/editing_a_file_spec.rb
spec/features/projects/files/editing_a_file_spec.rb
+1
-1
spec/features/projects/files/project_owner_creates_license_file_spec.rb
...projects/files/project_owner_creates_license_file_spec.rb
+2
-2
spec/features/projects/files/project_owner_sees_link_to_create_license_file_in_empty_project_spec.rb
...sees_link_to_create_license_file_in_empty_project_spec.rb
+2
-2
spec/features/projects/files/template_type_dropdown_spec.rb
spec/features/projects/files/template_type_dropdown_spec.rb
+2
-2
spec/features/projects/files/undo_template_spec.rb
spec/features/projects/files/undo_template_spec.rb
+2
-2
spec/features/u2f_spec.rb
spec/features/u2f_spec.rb
+3
-3
spec/javascripts/u2f/register_spec.js
spec/javascripts/u2f/register_spec.js
+1
-1
No files found.
app/views/projects/_commit_button.html.haml
View file @
7592137f
.form-actions
=
button_tag
'Commit
C
hanges'
,
class:
'btn commit-btn js-commit-button btn-create'
=
button_tag
'Commit
c
hanges'
,
class:
'btn commit-btn js-commit-button btn-create'
=
link_to
'Cancel'
,
cancel_path
,
class:
'btn btn-cancel'
,
data:
{
confirm:
leave_edit_message
}
...
...
app/views/projects/blob/_template_selectors.html.haml
View file @
7592137f
...
...
@@ -5,7 +5,7 @@
.template-type-selector.js-template-type-selector-wrap.hidden
=
dropdown_tag
(
"Choose type"
,
options:
{
toggle_class:
'btn js-template-type-selector'
,
title:
"Choose a template type"
}
)
.license-selector.js-license-selector-wrap.js-template-selector-wrap.hidden
=
dropdown_tag
(
"Apply a
L
icense template"
,
options:
{
toggle_class:
'btn js-license-selector'
,
title:
"Apply a license"
,
filter:
true
,
placeholder:
"Filter"
,
data:
{
data:
licenses_for_select
,
project:
@project
.
name
,
fullname:
@project
.
namespace
.
human_name
}
}
)
=
dropdown_tag
(
"Apply a
l
icense template"
,
options:
{
toggle_class:
'btn js-license-selector'
,
title:
"Apply a license"
,
filter:
true
,
placeholder:
"Filter"
,
data:
{
data:
licenses_for_select
,
project:
@project
.
name
,
fullname:
@project
.
namespace
.
human_name
}
}
)
.gitignore-selector.js-gitignore-selector-wrap.js-template-selector-wrap.hidden
=
dropdown_tag
(
"Apply a .gitignore template"
,
options:
{
toggle_class:
'btn js-gitignore-selector'
,
title:
"Apply a template"
,
filter:
true
,
placeholder:
"Filter"
,
data:
{
data:
gitignore_names
}
}
)
.gitlab-ci-yml-selector.js-gitlab-ci-yml-selector-wrap.js-template-selector-wrap.hidden
...
...
app/views/shared/_personal_access_tokens_form.html.haml
View file @
7592137f
-
type
=
impersonation
?
"impersonation"
:
"personal
A
ccess"
-
type
=
impersonation
?
"impersonation"
:
"personal
a
ccess"
%h5
.prepend-top-0
Add a
#{
type
}
Token
...
...
features/project/source/browse_files.feature
View file @
7592137f
...
...
@@ -36,7 +36,7 @@ Feature: Project Source Browse Files
And
I edit code
And
I fill the new file name
And
I fill the commit message
And
I click on
"Commit
C
hanges"
And
I click on
"Commit
c
hanges"
Then
I am redirected to the new file
And
I should see its new content
...
...
@@ -47,7 +47,7 @@ Feature: Project Source Browse Files
And
I edit code
And
I fill the new file name
And
I fill the commit message
And
I click on
"Commit
C
hanges"
And
I click on
"Commit
c
hanges"
Then
I am redirected to the fork's new merge request page
And
I can see the new commit message
...
...
@@ -57,7 +57,7 @@ Feature: Project Source Browse Files
And
I edit code with new lines at end of file
And
I fill the new file name
And
I fill the commit message
And
I click on
"Commit
C
hanges"
And
I click on
"Commit
c
hanges"
Then
I am redirected to the new file
And
I click button
"Edit"
And
I should see its content with new lines preserved at end of file
...
...
@@ -69,7 +69,7 @@ Feature: Project Source Browse Files
And
I fill the new file name
And
I fill the commit message
And
I fill the new branch name
And
I click on
"Commit
C
hanges"
And
I click on
"Commit
c
hanges"
Then
I am redirected to the new merge request page
When
I click on
"Changes"
tab
And
I should see its new content
...
...
@@ -173,7 +173,7 @@ Feature: Project Source Browse Files
And
I click button
"Edit"
And
I edit code
And
I fill the commit message
And
I click on
"Commit
C
hanges"
And
I click on
"Commit
c
hanges"
Then
I am redirected to the
".gitignore"
And
I should see its new content
...
...
@@ -186,7 +186,7 @@ Feature: Project Source Browse Files
And
I click button
"Fork"
And
I edit code
And
I fill the commit message
And
I click on
"Commit
C
hanges"
And
I click on
"Commit
c
hanges"
Then
I am redirected to the fork's new merge request page
And
I can see the new commit message
...
...
@@ -197,7 +197,7 @@ Feature: Project Source Browse Files
And
I edit code
And
I fill the commit message
And
I fill the new branch name
And
I click on
"Commit
C
hanges"
And
I click on
"Commit
c
hanges"
Then
I am redirected to the new merge request page
Then
I click on
"Changes"
tab
And
I should see its new content
...
...
features/steps/dashboard/dashboard.rb
View file @
7592137f
...
...
@@ -18,11 +18,11 @@ class Spinach::Features::Dashboard < Spinach::FeatureSteps
step
'I should see last push widget'
do
expect
(
page
).
to
have_content
"You pushed to fix"
expect
(
page
).
to
have_link
"Create
Merge R
equest"
expect
(
page
).
to
have_link
"Create
merge r
equest"
end
step
'I click "Create
Merge R
equest" link'
do
click_link
"Create
Merge R
equest"
step
'I click "Create
merge r
equest" link'
do
click_link
"Create
merge r
equest"
end
step
'I see prefilled new Merge Request page'
do
...
...
features/steps/project/source/browse_files.rb
View file @
7592137f
...
...
@@ -108,8 +108,8 @@ class Spinach::Features::ProjectSourceBrowseFiles < Spinach::FeatureSteps
click_link
'Preview Changes'
end
step
'I click on "Commit
C
hanges"'
do
click_button
'Commit
C
hanges'
step
'I click on "Commit
c
hanges"'
do
click_button
'Commit
c
hanges'
end
step
'I click on "Changes" tab'
do
...
...
spec/features/admin/admin_users_impersonation_tokens_spec.rb
View file @
7592137f
...
...
@@ -30,7 +30,7 @@ describe 'Admin > Users > Impersonation Tokens', feature: true, js: true do
check
"api"
check
"read_user"
expect
{
click_on
"Create
Impersonation T
oken"
}.
to
change
{
PersonalAccessTokensFinder
.
new
(
impersonation:
true
).
execute
.
count
}
expect
{
click_on
"Create
impersonation t
oken"
}.
to
change
{
PersonalAccessTokensFinder
.
new
(
impersonation:
true
).
execute
.
count
}
expect
(
active_impersonation_tokens
).
to
have_text
(
name
)
expect
(
active_impersonation_tokens
).
to
have_text
(
'In'
)
expect
(
active_impersonation_tokens
).
to
have_text
(
'api'
)
...
...
spec/features/auto_deploy_spec.rb
View file @
7592137f
...
...
@@ -56,7 +56,7 @@ describe 'Auto deploy' do
click_on
'OpenShift'
end
wait_for_ajax
click_button
'Commit
C
hanges'
click_button
'Commit
c
hanges'
expect
(
page
).
to
have_content
(
'New Merge Request From auto-deploy into master'
)
end
...
...
spec/features/projects/blobs/edit_spec.rb
View file @
7592137f
...
...
@@ -22,7 +22,7 @@ feature 'Editing file blob', feature: true, js: true do
wait_for_ajax
find
(
'.js-edit-blob'
).
click
execute_script
(
'ace.edit("editor").setValue("class NextFeature\nend\n")'
)
click_button
'Commit
C
hanges'
click_button
'Commit
c
hanges'
end
context
'from MR diff'
do
...
...
spec/features/projects/blobs/user_create_spec.rb
View file @
7592137f
...
...
@@ -22,7 +22,7 @@ feature 'New blob creation', feature: true, js: true do
end
def
commit_file
click_button
'Commit
C
hanges'
click_button
'Commit
c
hanges'
end
context
'with default target branch'
do
...
...
spec/features/projects/files/creating_a_file_spec.rb
View file @
7592137f
...
...
@@ -19,7 +19,7 @@ feature 'User wants to create a file', feature: true do
file_content
=
find
(
'#file-content'
)
file_content
.
set
options
[
:file_content
]
||
'Some content'
click_button
'Commit
C
hanges'
click_button
'Commit
c
hanges'
end
scenario
'file name contains Chinese characters'
do
...
...
spec/features/projects/files/editing_a_file_spec.rb
View file @
7592137f
...
...
@@ -27,7 +27,7 @@ feature 'User wants to edit a file', feature: true do
scenario
'file has been updated since the user opened the edit page'
do
Files
::
UpdateService
.
new
(
project
,
user
,
commit_params
).
execute
click_button
'Commit
C
hanges'
click_button
'Commit
c
hanges'
expect
(
page
).
to
have_content
'Someone edited the file the same time you did.'
end
...
...
spec/features/projects/files/project_owner_creates_license_file_spec.rb
View file @
7592137f
...
...
@@ -29,7 +29,7 @@ feature 'project owner creates a license file', feature: true, js: true do
expect
(
file_content
).
to
have_content
(
"Copyright (c)
#{
Time
.
now
.
year
}
#{
project
.
namespace
.
human_name
}
"
)
fill_in
:commit_message
,
with:
'Add a LICENSE file'
,
visible:
true
click_button
'Commit
C
hanges'
click_button
'Commit
c
hanges'
expect
(
current_path
).
to
eq
(
namespace_project_blob_path
(
project
.
namespace
,
project
,
'master/LICENSE'
))
...
...
@@ -63,7 +63,7 @@ feature 'project owner creates a license file', feature: true, js: true do
def
select_template
(
template
)
page
.
within
(
'.js-license-selector-wrap'
)
do
click_button
'Apply a
k
icense template'
click_button
'Apply a
l
icense template'
click_link
template
wait_for_ajax
end
...
...
spec/features/projects/files/project_owner_sees_link_to_create_license_file_in_empty_project_spec.rb
View file @
7592137f
...
...
@@ -30,7 +30,7 @@ feature 'project owner sees a link to create a license file in empty project', f
fill_in
:commit_message
,
with:
'Add a LICENSE file'
,
visible:
true
# Remove pre-receive hook so we can push without auth
FileUtils
.
rm_f
(
File
.
join
(
project
.
repository
.
path
,
'hooks'
,
'pre-receive'
))
click_button
'Commit
C
hanges'
click_button
'Commit
c
hanges'
expect
(
current_path
).
to
eq
(
namespace_project_blob_path
(
project
.
namespace
,
project
,
'master/LICENSE'
))
...
...
@@ -40,7 +40,7 @@ feature 'project owner sees a link to create a license file in empty project', f
def
select_template
(
template
)
page
.
within
(
'.js-license-selector-wrap'
)
do
click_button
'Apply a
L
icense template'
click_button
'Apply a
l
icense template'
click_link
template
wait_for_ajax
end
...
...
spec/features/projects/files/template_type_dropdown_spec.rb
View file @
7592137f
...
...
@@ -102,7 +102,7 @@ def check_type_selector_display(is_visible)
end
def
try_selecting_all_types
try_selecting_template_type
(
'LICENSE'
,
'Apply a
L
icense template'
)
try_selecting_template_type
(
'LICENSE'
,
'Apply a
l
icense template'
)
try_selecting_template_type
(
'Dockerfile'
,
'Apply a Dockerfile template'
)
try_selecting_template_type
(
'.gitlab-ci.yml'
,
'Apply a GitLab CI Yaml template'
)
try_selecting_template_type
(
'.gitignore'
,
'Apply a .gitignore template'
)
...
...
@@ -130,6 +130,6 @@ end
def
create_and_edit_file
(
file_name
)
visit
namespace_project_new_blob_path
(
project
.
namespace
,
project
,
'master'
,
file_name:
file_name
)
click_button
"Commit
C
hanges"
click_button
"Commit
c
hanges"
visit
namespace_project_edit_blob_path
(
project
.
namespace
,
project
,
File
.
join
(
project
.
default_branch
,
file_name
))
end
spec/features/projects/files/undo_template_spec.rb
View file @
7592137f
...
...
@@ -17,7 +17,7 @@ feature 'Template Undo Button', js: true do
end
scenario
'reverts template application'
do
try_template_undo
(
'http://www.apache.org/licenses/'
,
'Apply a
L
icense template'
)
try_template_undo
(
'http://www.apache.org/licenses/'
,
'Apply a
l
icense template'
)
end
end
...
...
@@ -29,7 +29,7 @@ feature 'Template Undo Button', js: true do
end
scenario
'reverts template application'
do
try_template_undo
(
'http://www.apache.org/licenses/'
,
'Apply a
L
icense template'
)
try_template_undo
(
'http://www.apache.org/licenses/'
,
'Apply a
l
icense template'
)
end
end
end
...
...
spec/features/u2f_spec.rb
View file @
7592137f
...
...
@@ -7,17 +7,17 @@ feature 'Using U2F (Universal 2nd Factor) Devices for Authentication', :js do
def
manage_two_factor_authentication
click_on
'Manage two-factor authentication'
expect
(
page
).
to
have_content
(
"Setup
New U2F D
evice"
)
expect
(
page
).
to
have_content
(
"Setup
new U2F d
evice"
)
wait_for_ajax
end
def
register_u2f_device
(
u2f_device
=
nil
,
name:
'My device'
)
u2f_device
||=
FakeU2fDevice
.
new
(
page
,
name
)
u2f_device
.
respond_to_u2f_registration
click_on
'Setup
New U2F D
evice'
click_on
'Setup
new U2F d
evice'
expect
(
page
).
to
have_content
(
'Your device was successfully set up'
)
fill_in
"Pick a name"
,
with:
name
click_on
'Register U2F
D
evice'
click_on
'Register U2F
d
evice'
u2f_device
end
...
...
spec/javascripts/u2f/register_spec.js
View file @
7592137f
...
...
@@ -22,7 +22,7 @@ require('./mock_u2f_device');
it
(
'
allows registering a U2F device
'
,
function
()
{
var
deviceResponse
,
inProgressMessage
,
registeredMessage
,
setupButton
;
setupButton
=
this
.
container
.
find
(
"
#js-setup-u2f-device
"
);
expect
(
setupButton
.
text
()).
toBe
(
'
Setup
New U2F D
evice
'
);
expect
(
setupButton
.
text
()).
toBe
(
'
Setup
new U2F d
evice
'
);
setupButton
.
trigger
(
'
click
'
);
inProgressMessage
=
this
.
container
.
children
(
"
p
"
);
expect
(
inProgressMessage
.
text
()).
toContain
(
"
Trying to communicate with your device
"
);
...
...
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