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
2ca32a09
Commit
2ca32a09
authored
Jun 03, 2016
by
Alfredo Sumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test for the case when user can't prioritize labels
parent
a966e6e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
47 deletions
+77
-47
spec/features/projects/labels/update_prioritization_spec.rb
spec/features/projects/labels/update_prioritization_spec.rb
+77
-47
No files found.
spec/features/projects/labels/update_prioritization_spec.rb
View file @
2ca32a09
...
...
@@ -3,76 +3,106 @@ require 'spec_helper'
feature
'Prioritize labels'
,
feature:
true
do
include
WaitForAjax
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
,
name:
'test'
,
namespace:
user
.
namespace
)
}
context
'when project belongs to user'
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
,
name:
'test'
,
namespace:
user
.
namespace
)
}
scenario
'user can prioritize a label'
,
js:
true
do
bug
=
create
(
:label
,
title:
'bug'
)
wontfix
=
create
(
:label
,
title:
'wontfix'
)
scenario
'user can prioritize a label'
,
js:
true
do
bug
=
create
(
:label
,
title:
'bug'
)
wontfix
=
create
(
:label
,
title:
'wontfix'
)
project
.
labels
<<
bug
project
.
labels
<<
wontfix
project
.
labels
<<
bug
project
.
labels
<<
wontfix
login_as
user
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
login_as
user
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
expect
(
page
).
to
have_content
(
'No prioritized labels yet'
)
expect
(
page
).
to
have_content
(
'No prioritized labels yet'
)
page
.
within
(
'.other-labels'
)
do
first
(
'.js-toggle-priority'
).
click
wait_for_ajax
expect
(
page
).
not_to
have_content
(
'bug'
)
page
.
within
(
'.other-labels'
)
do
first
(
'.js-toggle-priority'
).
click
wait_for_ajax
expect
(
page
).
not_to
have_content
(
'bug'
)
end
page
.
within
(
'.prioritized-labels'
)
do
expect
(
page
).
not_to
have_content
(
'No prioritized labels yet'
)
expect
(
page
).
to
have_content
(
'bug'
)
end
end
page
.
within
(
'.prioritized-labels'
)
do
expect
(
page
).
not_to
have_content
(
'No prioritized labels yet'
)
scenario
'user can unprioritize a label'
,
js:
true
do
bug
=
create
(
:label
,
title:
'bug'
,
priority:
1
)
wontfix
=
create
(
:label
,
title:
'wontfix'
)
project
.
labels
<<
bug
project
.
labels
<<
wontfix
login_as
user
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
expect
(
page
).
to
have_content
(
'bug'
)
page
.
within
(
'.prioritized-labels'
)
do
first
(
'.js-toggle-priority'
).
click
wait_for_ajax
expect
(
page
).
not_to
have_content
(
'bug'
)
end
page
.
within
(
'.other-labels'
)
do
expect
(
page
).
to
have_content
(
'bug'
)
expect
(
page
).
to
have_content
(
'wontfix'
)
end
end
end
scenario
'user can unprioritize a label
'
,
js:
true
do
bug
=
create
(
:label
,
title:
'bug'
,
priority:
1
)
wontfix
=
create
(
:label
,
title:
'wontfix'
)
scenario
'user can sort prioritized labels
'
,
js:
true
do
bug
=
create
(
:label
,
title:
'bug'
,
priority:
1
)
wontfix
=
create
(
:label
,
title:
'wontfix'
,
priority:
2
)
project
.
labels
<<
bug
project
.
labels
<<
wontfix
project
.
labels
<<
bug
project
.
labels
<<
wontfix
login_as
user
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
login_as
user
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
expect
(
page
).
to
have_content
(
'bug'
)
expect
(
page
).
to
have_content
'bug'
expect
(
page
).
to
have_content
'wontfix'
page
.
within
(
'.prioritized-labels'
)
do
first
(
'.js-toggle-priority'
).
click
wait_for_ajax
expect
(
page
).
not_to
have_content
(
'bug'
)
end
# Sort labels
find
(
"#label_
#{
bug
.
id
}
"
).
drag_to
find
(
"#label_
#{
wontfix
.
id
}
"
)
page
.
within
(
'.other-labels'
)
do
expect
(
page
).
to
have_content
(
'bug'
)
expect
(
page
).
to
have_content
(
'wontfix'
)
page
.
within
(
'.prioritized-labels'
)
do
expect
(
first
(
'li'
)).
to
have_content
(
'wontfix'
)
expect
(
page
.
all
(
'li'
).
last
).
to
have_content
(
'bug'
)
end
end
end
scenario
'user can sort prioritized labels'
,
js:
true
do
bug
=
create
(
:label
,
title:
'bug'
,
priority:
1
)
wontfix
=
create
(
:label
,
title:
'wontfix'
,
priority:
2
)
context
'as a guest'
do
it
'can not prioritize labels'
do
user
=
create
(
:user
)
guest
=
create
(
:user
)
project
=
create
(
:project
,
name:
'test'
,
namespace:
user
.
namespace
)
create
(
:label
,
title:
'bug'
)
project
.
labels
<<
bug
project
.
labels
<<
wontfix
login_as
guest
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
expect
(
page
).
not_to
have_css
(
'.prioritized-labels'
)
end
end
login_as
user
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
context
'as a non signed in user'
do
it
'can not prioritize labels'
do
user
=
create
(
:user
)
project
=
create
(
:project
,
name:
'test'
,
namespace:
user
.
namespace
)
expect
(
page
).
to
have_content
'bug'
expect
(
page
).
to
have_content
'wontfix'
create
(
:label
,
title:
'bug'
)
# Sort labels
find
(
"#label_
#{
bug
.
id
}
"
).
drag_to
find
(
"#label_
#{
wontfix
.
id
}
"
)
visit
namespace_project_labels_path
(
project
.
namespace
,
project
)
page
.
within
(
'.prioritized-labels'
)
do
expect
(
first
(
'li'
)).
to
have_content
(
'wontfix'
)
expect
(
page
.
all
(
'li'
).
last
).
to
have_content
(
'bug'
)
expect
(
page
).
not_to
have_css
(
'.prioritized-labels'
)
end
end
end
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