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
41c3324c
Commit
41c3324c
authored
Jan 21, 2022
by
Andrew Smith
Committed by
Kushal Pandya
Jan 21, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clear childrenEpic state when changing roadmap sort order
Changelog: fixed EE: true
parent
59f4fa71
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
93 additions
and
3 deletions
+93
-3
ee/app/assets/javascripts/roadmap/store/mutations.js
ee/app/assets/javascripts/roadmap/store/mutations.js
+1
-0
ee/spec/features/groups/group_roadmap_spec.rb
ee/spec/features/groups/group_roadmap_spec.rb
+88
-0
ee/spec/frontend/roadmap/store/mutations_spec.js
ee/spec/frontend/roadmap/store/mutations_spec.js
+4
-3
No files found.
ee/app/assets/javascripts/roadmap/store/mutations.js
View file @
41c3324c
...
...
@@ -123,6 +123,7 @@ export default {
},
[
types
.
SET_SORTED_BY
](
state
,
sortedBy
)
{
state
.
childrenEpics
=
{};
state
.
sortedBy
=
sortedBy
;
resetEpics
(
state
);
},
...
...
ee/spec/features/groups/group_roadmap_spec.rb
View file @
41c3324c
...
...
@@ -26,6 +26,19 @@ RSpec.describe 'group epic roadmap', :js do
page
.
find
(
'.gl-search-box-by-click-search-button'
).
click
end
def
expand_epic_at
(
index
)
expand_buttons
=
page
.
all
(
"button[aria-label='Expand']"
)
expand_buttons
[
index
].
click
wait_for_requests
end
def
toggle_sort_direction
page
.
within
(
'.vue-filtered-search-bar-container .sort-dropdown-container'
)
do
page
.
find
(
"button[title^='Sort direction']"
).
click
wait_for_requests
end
end
before
do
stub_licensed_features
(
epics:
true
)
stub_feature_flags
(
unfiltered_epic_aggregates:
false
)
...
...
@@ -196,6 +209,81 @@ RSpec.describe 'group epic roadmap', :js do
end
end
describe
'roadmap page with sort order applied'
do
let!
(
:parent_epic1
)
{
create
(
:epic
,
title:
'Parent Epic 1'
,
group:
group
,
start_date:
19
.
days
.
ago
,
end_date:
9
.
days
.
ago
)
}
let!
(
:child_epic1
)
{
create
(
:epic
,
title:
'Child Epic 1'
,
group:
group
,
parent_id:
parent_epic1
.
id
,
start_date:
18
.
days
.
ago
,
end_date:
4
.
days
.
ago
)
}
let!
(
:child_epic2
)
{
create
(
:epic
,
title:
'Child Epic 2'
,
group:
group
,
parent_id:
parent_epic1
.
id
,
start_date:
17
.
days
.
ago
,
end_date:
6
.
days
.
ago
)
}
let!
(
:parent_epic2
)
{
create
(
:epic
,
title:
'Parent Epic 2'
,
group:
group
,
start_date:
14
.
days
.
ago
,
end_date:
4
.
days
.
ago
)
}
let!
(
:child_epic3
)
{
create
(
:epic
,
title:
'Child Epic 3'
,
group:
group
,
parent_id:
parent_epic2
.
id
,
end_date:
4
.
days
.
ago
)
}
let!
(
:child_epic4
)
{
create
(
:epic
,
title:
'Child Epic 4'
,
group:
group
,
parent_id:
parent_epic2
.
id
,
end_date:
6
.
days
.
ago
)
}
before
do
visit
group_roadmap_path
(
group
)
wait_for_requests
end
it
'renders the epics in expected order'
do
page
.
within
(
'.roadmap-container .epics-list-section'
)
do
expect
(
page
).
to
have_selector
(
'.epics-list-item .epic-title'
,
count:
5
)
epic_titles
=
page
.
all
(
'.epics-list-item .epic-title'
).
collect
(
&
:text
)
expect
(
epic_titles
).
to
eq
([
closed_epic
.
title
,
epic_with_critical
.
title
,
parent_epic1
.
title
,
parent_epic2
.
title
,
epic_with_bug
.
title
])
expand_epic_at
(
0
)
expect
(
page
).
to
have_selector
(
'.epics-list-item .epic-title'
,
count:
7
)
epic_titles
=
page
.
all
(
'.epics-list-item .epic-title'
).
collect
(
&
:text
)
expect
(
epic_titles
).
to
eq
([
closed_epic
.
title
,
epic_with_critical
.
title
,
parent_epic1
.
title
,
child_epic1
.
title
,
child_epic2
.
title
,
parent_epic2
.
title
,
epic_with_bug
.
title
])
end
toggle_sort_direction
page
.
within
(
'.roadmap-container .epics-list-section'
)
do
expect
(
page
).
to
have_selector
(
'.epics-list-item .epic-title'
,
count:
5
)
epic_titles
=
page
.
all
(
'.epics-list-item .epic-title'
).
collect
(
&
:text
)
expect
(
epic_titles
).
to
eq
([
epic_with_bug
.
title
,
parent_epic2
.
title
,
parent_epic1
.
title
,
closed_epic
.
title
,
epic_with_critical
.
title
])
expand_epic_at
(
1
)
expect
(
page
).
to
have_selector
(
'.epics-list-item .epic-title'
,
count:
7
)
epic_titles
=
page
.
all
(
'.epics-list-item .epic-title'
).
collect
(
&
:text
)
expect
(
epic_titles
).
to
eq
([
epic_with_bug
.
title
,
parent_epic2
.
title
,
parent_epic1
.
title
,
child_epic2
.
title
,
child_epic1
.
title
,
closed_epic
.
title
,
epic_with_critical
.
title
])
end
end
end
describe
'filtered search tokens'
do
let!
(
:epic1
)
{
create
(
:epic
,
group:
group
,
end_date:
10
.
days
.
ago
)
}
let!
(
:epic2
)
{
create
(
:epic
,
group:
group
,
start_date:
2
.
days
.
ago
)
}
...
...
ee/spec/frontend/roadmap/store/mutations_spec.js
View file @
41c3324c
...
...
@@ -304,17 +304,18 @@ describe('Roadmap Store Mutations', () => {
});
describe
(
'
SET_SORTED_BY
'
,
()
=>
{
it
(
'
Should set `sortedBy` to the state and reset existing epics
'
,
()
=>
{
it
(
'
Should set `sortedBy` to the state and reset existing
parent epics and children
epics
'
,
()
=>
{
const
sortedBy
=
'
start_date_asc
'
;
setEpicMockData
(
state
);
mutations
[
types
.
SET_SORTED_BY
](
state
,
sortedBy
);
expect
(
state
).
toMatchObject
({
sortedBy
,
epics
:
[],
childrenEpics
:
{},
childrenFlags
:
{},
epicIds
:
[],
epics
:
[],
sortedBy
,
});
});
});
...
...
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