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
bd88ae75
Commit
bd88ae75
authored
Sep 02, 2020
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab master
parents
1a12d008
afec9e8d
Changes
24
Show whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
453 additions
and
73 deletions
+453
-73
app/assets/javascripts/vue_shared/components/filtered_search_bar/constants.js
...ts/vue_shared/components/filtered_search_bar/constants.js
+0
-2
app/assets/javascripts/vue_shared/components/filtered_search_bar/tokens/author_token.vue
...ed/components/filtered_search_bar/tokens/author_token.vue
+9
-5
app/assets/javascripts/vue_shared/components/filtered_search_bar/tokens/label_token.vue
...red/components/filtered_search_bar/tokens/label_token.vue
+1
-1
app/assets/javascripts/vue_shared/components/filtered_search_bar/tokens/milestone_token.vue
...components/filtered_search_bar/tokens/milestone_token.vue
+1
-1
app/views/layouts/_head.html.haml
app/views/layouts/_head.html.haml
+1
-1
changelogs/unreleased/update-lodash-4-17-15-to-4-17-20.yml
changelogs/unreleased/update-lodash-4-17-15-to-4-17-20.yml
+5
-0
ee/app/assets/javascripts/iterations/components/iteration_form.vue
...sets/javascripts/iterations/components/iteration_form.vue
+21
-7
ee/app/assets/javascripts/iterations/components/iteration_report_tabs.vue
...vascripts/iterations/components/iteration_report_tabs.vue
+8
-3
ee/app/assets/javascripts/iterations/components/iterations.vue
...p/assets/javascripts/iterations/components/iterations.vue
+7
-1
ee/app/assets/javascripts/requirements/components/requirements_root.vue
...javascripts/requirements/components/requirements_root.vue
+2
-2
ee/app/views/layouts/nav/sidebar/_group_iterations_link.html.haml
...iews/layouts/nav/sidebar/_group_iterations_link.html.haml
+1
-1
ee/spec/features/boards/swimlanes/epics_swimlanes_spec.rb
ee/spec/features/boards/swimlanes/epics_swimlanes_spec.rb
+56
-0
package.json
package.json
+1
-1
qa/qa/ee.rb
qa/qa/ee.rb
+8
-1
qa/qa/ee/page/group/iteration/index.rb
qa/qa/ee/page/group/iteration/index.rb
+21
-0
qa/qa/ee/page/group/iteration/new.rb
qa/qa/ee/page/group/iteration/new.rb
+41
-0
qa/qa/ee/page/group/iteration/show.rb
qa/qa/ee/page/group/iteration/show.rb
+24
-0
qa/qa/ee/page/group/menu.rb
qa/qa/ee/page/group/menu.rb
+28
-16
qa/qa/ee/resource/group_iteration.rb
qa/qa/ee/resource/group_iteration.rb
+46
-0
qa/qa/specs/features/ee/browser_ui/2_plan/iterations/create_group_iteration_spec.rb
...owser_ui/2_plan/iterations/create_group_iteration_spec.rb
+36
-0
spec/frontend/vue_shared/components/filtered_search_bar/tokens/author_token_spec.js
...omponents/filtered_search_bar/tokens/author_token_spec.js
+82
-13
spec/frontend/vue_shared/components/filtered_search_bar/tokens/label_token_spec.js
...components/filtered_search_bar/tokens/label_token_spec.js
+25
-7
spec/frontend/vue_shared/components/filtered_search_bar/tokens/milestone_token_spec.js
...onents/filtered_search_bar/tokens/milestone_token_spec.js
+25
-7
yarn.lock
yarn.lock
+4
-4
No files found.
app/assets/javascripts/vue_shared/components/filtered_search_bar/constants.js
View file @
bd88ae75
/* eslint-disable @gitlab/require-i18n-strings */
import
{
__
}
from
'
~/locale
'
;
export
const
ANY_AUTHOR
=
'
Any
'
;
const
DEFAULT_LABEL_NO_LABEL
=
{
value
:
'
No label
'
,
text
:
__
(
'
No label
'
)
};
export
const
DEFAULT_LABEL_NONE
=
{
value
:
'
None
'
,
text
:
__
(
'
None
'
)
};
export
const
DEFAULT_LABEL_ANY
=
{
value
:
'
Any
'
,
text
:
__
(
'
Any
'
)
};
...
...
app/assets/javascripts/vue_shared/components/filtered_search_bar/tokens/author_token.vue
View file @
bd88ae75
...
...
@@ -11,10 +11,9 @@ import { debounce } from 'lodash';
import
{
deprecatedCreateFlash
as
createFlash
}
from
'
~/flash
'
;
import
{
__
}
from
'
~/locale
'
;
import
{
ANY_AUTHOR
,
DEBOUNCE_DELAY
}
from
'
../constants
'
;
import
{
DEFAULT_LABEL_ANY
,
DEBOUNCE_DELAY
}
from
'
../constants
'
;
export
default
{
anyAuthor
:
ANY_AUTHOR
,
components
:
{
GlFilteredSearchToken
,
GlAvatar
,
...
...
@@ -35,6 +34,7 @@ export default {
data
()
{
return
{
authors
:
this
.
config
.
initialAuthors
||
[],
defaultAuthors
:
this
.
config
.
defaultAuthors
||
[
DEFAULT_LABEL_ANY
],
loading
:
true
,
};
},
...
...
@@ -99,10 +99,14 @@ export default {
<span>
{{
activeAuthor
?
activeAuthor
.
name
:
inputValue
}}
</span>
</
template
>
<
template
#suggestions
>
<gl-filtered-search-suggestion
:value=
"$options.anyAuthor"
>
{{
__
(
'
Any
'
)
}}
<gl-filtered-search-suggestion
v-for=
"author in defaultAuthors"
:key=
"author.value"
:value=
"author.value"
>
{{
author
.
text
}}
</gl-filtered-search-suggestion>
<gl-deprecated-dropdown-divider
/>
<gl-deprecated-dropdown-divider
v-if=
"defaultAuthors.length"
/>
<gl-loading-icon
v-if=
"loading"
/>
<template
v-else
>
<gl-filtered-search-suggestion
...
...
app/assets/javascripts/vue_shared/components/filtered_search_bar/tokens/label_token.vue
View file @
bd88ae75
...
...
@@ -112,7 +112,7 @@ export default {
>
{{
label
.
text
}}
</gl-filtered-search-suggestion>
<gl-dropdown-divider
/>
<gl-dropdown-divider
v-if=
"defaultLabels.length"
/>
<gl-loading-icon
v-if=
"loading"
/>
<template
v-else
>
<gl-filtered-search-suggestion
v-for=
"label in labels"
:key=
"label.id"
:value=
"label.title"
>
...
...
app/assets/javascripts/vue_shared/components/filtered_search_bar/tokens/milestone_token.vue
View file @
bd88ae75
...
...
@@ -95,7 +95,7 @@ export default {
>
{{
milestone
.
text
}}
</gl-filtered-search-suggestion>
<gl-dropdown-divider
/>
<gl-dropdown-divider
v-if=
"defaultMilestones.length"
/>
<gl-loading-icon
v-if=
"loading"
/>
<template
v-else
>
<gl-filtered-search-suggestion
...
...
app/views/layouts/_head.html.haml
View file @
bd88ae75
-
page_description
brand_title
unless
page_description
-# Needs a redirect on the client side since it's using an anchor to dist
uing
ish
-# Needs a redirect on the client side since it's using an anchor to dist
ingu
ish
-# between sign in and registration. We need to inline the JS to not render
-# anything from this page beforehand.
-# Part of an experiment to build a new sign up flow. Will be removed again with
...
...
changelogs/unreleased/update-lodash-4-17-15-to-4-17-20.yml
0 → 100644
View file @
bd88ae75
---
title
:
Update lodash to 4.17.20
merge_request
:
41036
author
:
Takuya Noguchi
type
:
security
ee/app/assets/javascripts/iterations/components/iteration_form.vue
View file @
bd88ae75
...
...
@@ -154,7 +154,12 @@ export default {
<label
for=
"iteration-title"
>
{{
__
(
'
Title
'
)
}}
</label>
</div>
<div
class=
"col-sm-10"
>
<gl-form-input
id=
"iteration-title"
v-model=
"title"
autocomplete=
"off"
/>
<gl-form-input
id=
"iteration-title"
v-model=
"title"
autocomplete=
"off"
data-qa-selector=
"iteration_title_field"
/>
</div>
</div>
...
...
@@ -181,6 +186,7 @@ export default {
dir=
"auto"
data-supports-quick-actions=
"false"
:aria-label=
"__('Description')"
data-qa-selector=
"iteration_description_field"
>
</textarea>
</
template
>
...
...
@@ -201,6 +207,7 @@ export default {
class=
"datepicker form-control"
:placeholder=
"__('Select start date')"
autocomplete=
"off"
data-qa-selector=
"iteration_start_date_field"
@
change=
"updateStartDate"
/>
<a
class=
"inline float-right gl-mt-2 js-clear-start-date"
href=
"#"
>
{{
...
...
@@ -219,6 +226,7 @@ export default {
class=
"datepicker form-control"
:placeholder=
"__('Select due date')"
autocomplete=
"off"
data-qa-selector=
"iteration_due_date_field"
@
change=
"updateDueDate"
/>
<a
class=
"inline float-right gl-mt-2 js-clear-due-date"
href=
"#"
>
{{
...
...
@@ -230,12 +238,18 @@ export default {
</gl-form>
<div
class=
"form-actions d-flex"
>
<gl-button
:loading=
"loading"
data-testid=
"save-iteration"
variant=
"success"
@
click=
"save"
>
{{
isEditing ? __('Update iteration') : __('Create iteration')
}}
</gl-button>
<gl-button
class=
"ml-auto"
data-testid=
"cancel-iteration"
@
click=
"cancel"
>
{{
__('Cancel')
}}
</gl-button>
<gl-button
:loading=
"loading"
data-testid=
"save-iteration"
variant=
"success"
data-qa-selector=
"save_iteration_button"
@
click=
"save"
>
{{ isEditing ? __('Update iteration') : __('Create iteration') }}
</gl-button>
<gl-button
class=
"ml-auto"
data-testid=
"cancel-iteration"
@
click=
"cancel"
>
{{ __('Cancel') }}
</gl-button>
</div>
</div>
</template>
ee/app/assets/javascripts/iterations/components/iteration_report_tabs.vue
View file @
bd88ae75
...
...
@@ -193,12 +193,17 @@ export default {
:show-empty=
"true"
fixed
stacked=
"sm"
data-qa-selector=
"iteration_issues_container"
>
<
template
#cell(title)=
"{ item: { iid, title, webUrl } }"
>
<div
class=
"gl-text-truncate"
>
<gl-link
class=
"gl-text-gray-900 gl-font-weight-bold"
:href=
"webUrl"
>
{{
title
}}
</gl-link>
<gl-link
class=
"gl-text-gray-900 gl-font-weight-bold"
:href=
"webUrl"
data-qa-selector=
"iteration_issue_link"
:data-qa-issue-title=
"title"
>
{{
title
}}
</gl-link
>
<!-- TODO: add references.relative (project name) -->
<!-- Depends on https://gitlab.com/gitlab-org/gitlab/-/issues/222763 -->
<div
class=
"gl-text-secondary"
>
#
{{
iid
}}
</div>
...
...
ee/app/assets/javascripts/iterations/components/iterations.vue
View file @
bd88ae75
...
...
@@ -166,7 +166,13 @@ export default {
</gl-tab>
<
template
v-if=
"canAdmin"
#tabs-end
>
<li
class=
"gl-ml-auto gl-display-flex gl-align-items-center"
>
<gl-button
variant=
"success"
:href=
"newIterationPath"
>
{{
__
(
'
New iteration
'
)
}}
</gl-button>
<gl-button
variant=
"success"
data-qa-selector=
"new_iteration_button"
:href=
"newIterationPath"
>
{{
__
(
'
New iteration
'
)
}}
</gl-button>
</li>
</
template
>
</gl-tabs>
...
...
ee/app/assets/javascripts/requirements/components/requirements_root.vue
View file @
bd88ae75
...
...
@@ -9,7 +9,7 @@ import { updateHistory, setUrlParams } from '~/lib/utils/url_utility';
import
FilteredSearchBar
from
'
~/vue_shared/components/filtered_search_bar/filtered_search_bar_root.vue
'
;
import
AuthorToken
from
'
~/vue_shared/components/filtered_search_bar/tokens/author_token.vue
'
;
import
{
ANY_AUTHOR
}
from
'
~/vue_shared/components/filtered_search_bar/constants
'
;
import
{
DEFAULT_LABEL_ANY
}
from
'
~/vue_shared/components/filtered_search_bar/constants
'
;
import
RequirementsTabs
from
'
./requirements_tabs.vue
'
;
import
RequirementsLoading
from
'
./requirements_loading.vue
'
;
...
...
@@ -472,7 +472,7 @@ export default {
filters
.
forEach
(
filter
=>
{
if
(
typeof
filter
===
'
string
'
)
{
textSearch
=
filter
;
}
else
if
(
filter
.
value
.
data
!==
ANY_AUTHOR
)
{
}
else
if
(
filter
.
value
.
data
!==
DEFAULT_LABEL_ANY
.
value
)
{
authors
.
push
(
filter
.
value
.
data
);
}
});
...
...
ee/app/views/layouts/nav/sidebar/_group_iterations_link.html.haml
View file @
bd88ae75
-
if
group_sidebar_link?
(
:iterations
)
=
nav_link
(
path:
'iterations#index'
)
do
=
link_to
group_iterations_path
(
@group
)
do
=
link_to
group_iterations_path
(
@group
)
,
data:
{
qa_selector:
'group_iterations_link'
}
do
%span
=
_
(
'Iterations'
)
ee/spec/features/boards/swimlanes/epics_swimlanes_spec.rb
0 → 100644
View file @
bd88ae75
# frozen_string_literal: true
require
'spec_helper'
RSpec
.
describe
'epics swimlanes'
,
:js
do
let_it_be
(
:user
)
{
create
(
:user
)
}
let_it_be
(
:group
)
{
create
(
:group
,
:public
)
}
let_it_be
(
:project
)
{
create
(
:project
,
:public
,
group:
group
)
}
let_it_be
(
:board
)
{
create
(
:board
,
project:
project
)
}
let_it_be
(
:label
)
{
create
(
:label
,
project:
project
,
name:
'Label 1'
)
}
let_it_be
(
:list
)
{
create
(
:list
,
board:
board
,
label:
label
,
position:
0
)
}
let_it_be
(
:issue1
)
{
create
(
:issue
,
project:
project
,
labels:
[
label
])
}
let_it_be
(
:issue2
)
{
create
(
:issue
,
project:
project
)
}
let_it_be
(
:issue3
)
{
create
(
:issue
,
project:
project
)
}
let_it_be
(
:epic1
)
{
create
(
:epic
,
group:
group
)
}
let_it_be
(
:epic2
)
{
create
(
:epic
,
group:
group
)
}
let_it_be
(
:epic_issue1
)
{
create
(
:epic_issue
,
epic:
epic1
,
issue:
issue1
)
}
let_it_be
(
:epic_issue2
)
{
create
(
:epic_issue
,
epic:
epic2
,
issue:
issue2
)
}
context
'switch to swimlanes view'
do
context
'feature flag on'
do
before
do
stub_licensed_features
(
epics:
true
)
sign_in
(
user
)
visit_board_page
page
.
within
(
'.board-swimlanes-toggle-wrapper'
)
do
page
.
find
(
'.dropdown-toggle'
).
click
page
.
find
(
'.dropdown-item'
,
text:
'Epic'
).
click
end
end
it
'displays epics swimlanes when selecting Epic in Group by dropdown'
do
expect
(
page
).
to
have_css
(
'.board-swimlanes'
)
epic_lanes
=
page
.
all
(
:css
,
'.board-epic-lane'
)
expect
(
epic_lanes
.
length
).
to
eq
(
2
)
end
it
'displays issue not assigned to epic in unassigned issues lane'
do
page
.
within
(
'.board-lane-unassigned-issues'
)
do
expect
(
page
.
find
(
'span[data-testid="issues-lane-issue-count"]'
)).
to
have_content
(
'1'
)
end
end
end
end
def
visit_board_page
visit
project_boards_path
(
project
)
wait_for_requests
end
end
package.json
View file @
bd88ae75
...
...
@@ -106,7 +106,7 @@
"
jszip
"
:
"
^3.1.3
"
,
"
jszip-utils
"
:
"
^0.0.2
"
,
"
katex
"
:
"
^0.10.0
"
,
"
lodash
"
:
"
^4.17.
15
"
,
"
lodash
"
:
"
^4.17.
20
"
,
"
marked
"
:
"
^0.3.12
"
,
"
mermaid
"
:
"
^8.5.2
"
,
"
mersenne-twister
"
:
"
1.1.0
"
,
...
...
qa/qa/ee.rb
View file @
bd88ae75
...
...
@@ -38,6 +38,12 @@ module QA
autoload
:Members
,
'qa/ee/page/group/members'
autoload
:ContributionAnalytics
,
'qa/ee/page/group/contribution_analytics'
module
Iteration
autoload
:Index
,
'qa/ee/page/group/iteration/index'
autoload
:New
,
'qa/ee/page/group/iteration/new'
autoload
:Show
,
'qa/ee/page/group/iteration/show'
end
module
Settings
autoload
:SamlSSO
,
'qa/ee/page/group/settings/saml_sso'
autoload
:LDAPSync
,
'qa/ee/page/group/settings/ldap_sync'
...
...
@@ -188,7 +194,8 @@ module QA
module
Resource
autoload
:License
,
'qa/ee/resource/license'
autoload
:Epic
,
'qa/ee/resource/epic'
autoload
:GroupLabel
,
'qa/ee/resource/group_label.rb'
autoload
:GroupLabel
,
'qa/ee/resource/group_label'
autoload
:GroupIteration
,
'qa/ee/resource/group_iteration'
module
Board
autoload
:BaseBoard
,
'qa/ee/resource/board/base_board'
...
...
qa/qa/ee/page/group/iteration/index.rb
0 → 100644
View file @
bd88ae75
# frozen_string_literal: true
module
QA
module
EE
module
Page
module
Group
module
Iteration
class
Index
<
QA
::
Page
::
Base
view
'ee/app/assets/javascripts/iterations/components/iterations.vue'
do
element
:new_iteration_button
end
def
click_new_iteration_button
click_element
(
:new_iteration_button
,
EE
::
Page
::
Group
::
Iteration
::
New
)
end
end
end
end
end
end
end
qa/qa/ee/page/group/iteration/new.rb
0 → 100644
View file @
bd88ae75
# frozen_string_literal: true
module
QA
module
EE
module
Page
module
Group
module
Iteration
class
New
<
QA
::
Page
::
Base
view
'ee/app/assets/javascripts/iterations/components/iteration_form.vue'
do
element
:iteration_description_field
element
:iteration_due_date_field
element
:iteration_start_date_field
element
:iteration_title_field
,
required:
true
element
:save_iteration_button
end
def
click_create_iteration_button
click_element
(
:save_iteration_button
,
EE
::
Page
::
Group
::
Iteration
::
Show
)
end
def
fill_description
(
description
)
fill_element
(
:iteration_description_field
,
description
)
end
def
fill_due_date
(
due_date
)
fill_element
(
:iteration_due_date_field
,
due_date
)
end
def
fill_start_date
(
start_date
)
fill_element
(
:iteration_start_date_field
,
start_date
)
end
def
fill_title
(
title
)
fill_element
(
:iteration_title_field
,
title
)
end
end
end
end
end
end
end
qa/qa/ee/page/group/iteration/show.rb
0 → 100644
View file @
bd88ae75
# frozen_string_literal: true
module
QA
module
EE
module
Page
module
Group
module
Iteration
class
Show
<
QA
::
Page
::
Base
view
'ee/app/assets/javascripts/iterations/components/iteration_report_tabs.vue'
do
element
:iteration_issues_container
,
required:
true
element
:iteration_issue_link
end
def
has_issue?
(
issue
)
within_element
(
:iteration_issues_container
)
do
has_element?
(
:iteration_issue_link
,
issue_title:
issue
.
title
)
end
end
end
end
end
end
end
end
qa/qa/ee/page/group/menu.rb
View file @
bd88ae75
...
...
@@ -13,6 +13,24 @@ module QA
base
.
class_eval
do
prepend
QA
::
Page
::
Group
::
SubMenus
::
Common
view
'app/views/layouts/nav/sidebar/_group.html.haml'
do
element
:group_issue_boards_link
element
:group_issues_item
element
:group_sidebar
element
:group_sidebar_submenu
element
:group_settings_item
end
view
'app/views/layouts/nav/sidebar/_wiki_link.html.haml'
do
element
:wiki_link
end
view
'ee/app/views/groups/ee/_administration_nav.html.haml'
do
element
:group_administration_link
element
:group_sidebar_submenu_content
element
:group_saml_sso_link
end
view
'ee/app/views/groups/ee/_settings_nav.html.haml'
do
element
:ldap_synchronization_link
element
:audit_events_settings_link
...
...
@@ -32,22 +50,8 @@ module QA
element
:group_insights_link
end
view
'app/views/layouts/nav/sidebar/_group.html.haml'
do
element
:group_issue_boards_link
element
:group_issues_item
element
:group_sidebar
element
:group_sidebar_submenu
element
:group_settings_item
end
view
'ee/app/views/groups/ee/_administration_nav.html.haml'
do
element
:group_administration_link
element
:group_sidebar_submenu_content
element
:group_saml_sso_link
end
view
'app/views/layouts/nav/sidebar/_wiki_link.html.haml'
do
element
:wiki_link
view
'ee/app/views/layouts/nav/sidebar/_group_iterations_link.html.haml'
do
element
:group_iterations_link
end
end
end
...
...
@@ -68,6 +72,14 @@ module QA
end
end
def
go_to_group_iterations
hover_element
(
:group_issues_item
)
do
within_submenu
(
:group_issues_sidebar_submenu
)
do
click_element
(
:group_iterations_link
)
end
end
end
def
go_to_saml_sso_group_settings
hover_element
(
:group_administration_link
)
do
within_submenu
(
:group_sidebar_submenu_content
)
do
...
...
qa/qa/ee/resource/group_iteration.rb
0 → 100644
View file @
bd88ae75
# frozen_string_literal: true
module
QA
module
EE
module
Resource
class
GroupIteration
<
QA
::
Resource
::
Base
include
Support
::
Dates
attr_accessor
:title
attribute
:group
do
QA
::
Resource
::
Group
.
fabricate_via_api!
end
attribute
:id
attribute
:start_date
attribute
:due_date
attribute
:description
attribute
:title
def
initialize
@start_date
=
current_date_yyyy_mm_dd
@due_date
=
next_month_yyyy_mm_dd
@title
=
"Iteration-
#{
SecureRandom
.
hex
(
8
)
}
"
@description
=
"This is a test iteration."
end
def
fabricate!
group
.
visit!
QA
::
Page
::
Group
::
Menu
.
perform
(
&
:go_to_group_iterations
)
QA
::
EE
::
Page
::
Group
::
Iteration
::
Index
.
perform
(
&
:click_new_iteration_button
)
QA
::
EE
::
Page
::
Group
::
Iteration
::
New
.
perform
do
|
new
|
new
.
fill_title
(
@title
)
new
.
fill_description
(
@description
)
new
.
fill_start_date
(
@start_date
)
new
.
fill_due_date
(
@due_date
)
new
.
click_create_iteration_button
end
end
end
end
end
end
qa/qa/specs/features/ee/browser_ui/2_plan/iterations/create_group_iteration_spec.rb
0 → 100644
View file @
bd88ae75
# frozen_string_literal: true
module
QA
RSpec
.
describe
'Plan'
do
describe
'Group Iterations'
do
include
Support
::
Dates
let
(
:title
)
{
"Group iteration created via GUI
#{
SecureRandom
.
hex
(
8
)
}
"
}
let
(
:start_date
)
{
current_date_yyyy_mm_dd
}
let
(
:due_date
)
{
next_month_yyyy_mm_dd
}
let
(
:description
)
{
"This is a group test iteration."
}
before
do
Flow
::
Login
.
sign_in
end
it
'creates a group iteration'
,
testcase:
'https://gitlab.com/gitlab-org/quality/testcases/-/issues/957'
do
EE
::
Resource
::
GroupIteration
.
fabricate_via_browser_ui!
do
|
iteration
|
iteration
.
title
=
title
iteration
.
description
=
description
iteration
.
due_date
=
due_date
iteration
.
start_date
=
start_date
end
EE
::
Page
::
Group
::
Iteration
::
Show
.
perform
do
|
iteration
|
aggregate_failures
"iteration created successfully"
do
expect
(
iteration
).
to
have_content
(
title
)
expect
(
iteration
).
to
have_content
(
description
)
expect
(
iteration
).
to
have_content
(
format_date
(
start_date
))
expect
(
iteration
).
to
have_content
(
format_date
(
due_date
))
end
end
end
end
end
end
spec/frontend/vue_shared/components/filtered_search_bar/tokens/author_token_spec.js
View file @
bd88ae75
import
{
mount
}
from
'
@vue/test-utils
'
;
import
{
GlFilteredSearchToken
,
GlFilteredSearchTokenSegment
}
from
'
@gitlab/ui
'
;
import
{
GlFilteredSearchToken
,
GlFilteredSearchTokenSegment
,
GlFilteredSearchSuggestion
,
GlNewDropdownDivider
as
GlDropdownDivider
,
}
from
'
@gitlab/ui
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
waitForPromises
from
'
helpers/wait_for_promises
'
;
import
axios
from
'
~/lib/utils/axios_utils
'
;
import
{
deprecatedCreateFlash
as
createFlash
}
from
'
~/flash
'
;
import
{
DEFAULT_LABEL_NONE
,
DEFAULT_LABEL_ANY
,
}
from
'
~/vue_shared/components/filtered_search_bar/constants
'
;
import
AuthorToken
from
'
~/vue_shared/components/filtered_search_bar/tokens/author_token.vue
'
;
import
{
mockAuthorToken
,
mockAuthors
}
from
'
../mock_data
'
;
jest
.
mock
(
'
~/flash
'
);
const
createComponent
=
({
config
=
mockAuthorToken
,
value
=
{
data
:
''
},
active
=
false
}
=
{})
=>
mount
(
AuthorToken
,
{
const
defaultStubs
=
{
Portal
:
true
,
GlFilteredSearchSuggestionList
:
{
template
:
'
<div></div>
'
,
methods
:
{
getValue
:
()
=>
'
=
'
,
},
},
};
function
createComponent
(
options
=
{})
{
const
{
config
=
mockAuthorToken
,
value
=
{
data
:
''
},
active
=
false
,
stubs
=
defaultStubs
,
}
=
options
;
return
mount
(
AuthorToken
,
{
propsData
:
{
config
,
value
,
...
...
@@ -22,16 +46,9 @@ const createComponent = ({ config = mockAuthorToken, value = { data: '' }, activ
portalName
:
'
fake target
'
,
alignSuggestions
:
function
fakeAlignSuggestions
()
{},
},
stubs
:
{
Portal
:
true
,
GlFilteredSearchSuggestionList
:
{
template
:
'
<div></div>
'
,
methods
:
{
getValue
:
()
=>
'
=
'
,
},
},
},
stubs
,
});
}
describe
(
'
AuthorToken
'
,
()
=>
{
let
mock
;
...
...
@@ -139,5 +156,57 @@ describe('AuthorToken', () => {
expect
(
tokenSegments
.
at
(
2
).
text
()).
toBe
(
mockAuthors
[
0
].
name
);
// "Administrator"
});
});
it
(
'
renders provided defaultAuthors as suggestions
'
,
async
()
=>
{
const
defaultAuthors
=
[
DEFAULT_LABEL_NONE
,
DEFAULT_LABEL_ANY
];
wrapper
=
createComponent
({
active
:
true
,
config
:
{
...
mockAuthorToken
,
defaultAuthors
},
stubs
:
{
Portal
:
true
},
});
const
tokenSegments
=
wrapper
.
findAll
(
GlFilteredSearchTokenSegment
);
const
suggestionsSegment
=
tokenSegments
.
at
(
2
);
suggestionsSegment
.
vm
.
$emit
(
'
activate
'
);
await
wrapper
.
vm
.
$nextTick
();
const
suggestions
=
wrapper
.
findAll
(
GlFilteredSearchSuggestion
);
expect
(
suggestions
).
toHaveLength
(
defaultAuthors
.
length
);
defaultAuthors
.
forEach
((
label
,
index
)
=>
{
expect
(
suggestions
.
at
(
index
).
text
()).
toBe
(
label
.
text
);
});
});
it
(
'
does not render divider when no defaultAuthors
'
,
async
()
=>
{
wrapper
=
createComponent
({
active
:
true
,
config
:
{
...
mockAuthorToken
,
defaultAuthors
:
[]
},
stubs
:
{
Portal
:
true
},
});
const
tokenSegments
=
wrapper
.
findAll
(
GlFilteredSearchTokenSegment
);
const
suggestionsSegment
=
tokenSegments
.
at
(
2
);
suggestionsSegment
.
vm
.
$emit
(
'
activate
'
);
await
wrapper
.
vm
.
$nextTick
();
expect
(
wrapper
.
contains
(
GlFilteredSearchSuggestion
)).
toBe
(
false
);
expect
(
wrapper
.
contains
(
GlDropdownDivider
)).
toBe
(
false
);
});
it
(
'
renders `DEFAULT_LABEL_ANY` as default suggestions
'
,
async
()
=>
{
wrapper
=
createComponent
({
active
:
true
,
config
:
{
...
mockAuthorToken
},
stubs
:
{
Portal
:
true
},
});
const
tokenSegments
=
wrapper
.
findAll
(
GlFilteredSearchTokenSegment
);
const
suggestionsSegment
=
tokenSegments
.
at
(
2
);
suggestionsSegment
.
vm
.
$emit
(
'
activate
'
);
await
wrapper
.
vm
.
$nextTick
();
const
suggestions
=
wrapper
.
findAll
(
GlFilteredSearchSuggestion
);
expect
(
suggestions
).
toHaveLength
(
1
);
expect
(
suggestions
.
at
(
0
).
text
()).
toBe
(
DEFAULT_LABEL_ANY
.
text
);
});
});
});
spec/frontend/vue_shared/components/filtered_search_bar/tokens/label_token_spec.js
View file @
bd88ae75
...
...
@@ -3,6 +3,7 @@ import {
GlFilteredSearchToken
,
GlFilteredSearchSuggestion
,
GlFilteredSearchTokenSegment
,
GlNewDropdownDivider
as
GlDropdownDivider
,
}
from
'
@gitlab/ui
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
waitForPromises
from
'
helpers/wait_for_promises
'
;
...
...
@@ -33,13 +34,14 @@ const defaultStubs = {
},
};
const
createComponent
=
({
function
createComponent
(
options
=
{})
{
const
{
config
=
mockLabelToken
,
value
=
{
data
:
''
},
active
=
false
,
stubs
=
defaultStubs
,
}
=
{})
=>
mount
(
LabelToken
,
{
}
=
options
;
return
mount
(
LabelToken
,
{
propsData
:
{
config
,
value
,
...
...
@@ -51,6 +53,7 @@ const createComponent = ({
},
stubs
,
});
}
describe
(
'
LabelToken
'
,
()
=>
{
let
mock
;
...
...
@@ -204,6 +207,21 @@ describe('LabelToken', () => {
});
});
it
(
'
does not render divider when no defaultLabels
'
,
async
()
=>
{
wrapper
=
createComponent
({
active
:
true
,
config
:
{
...
mockLabelToken
,
defaultLabels
:
[]
},
stubs
:
{
Portal
:
true
},
});
const
tokenSegments
=
wrapper
.
findAll
(
GlFilteredSearchTokenSegment
);
const
suggestionsSegment
=
tokenSegments
.
at
(
2
);
suggestionsSegment
.
vm
.
$emit
(
'
activate
'
);
await
wrapper
.
vm
.
$nextTick
();
expect
(
wrapper
.
contains
(
GlFilteredSearchSuggestion
)).
toBe
(
false
);
expect
(
wrapper
.
contains
(
GlDropdownDivider
)).
toBe
(
false
);
});
it
(
'
renders `DEFAULT_LABELS` as default suggestions
'
,
async
()
=>
{
wrapper
=
createComponent
({
active
:
true
,
...
...
spec/frontend/vue_shared/components/filtered_search_bar/tokens/milestone_token_spec.js
View file @
bd88ae75
...
...
@@ -3,6 +3,7 @@ import {
GlFilteredSearchToken
,
GlFilteredSearchSuggestion
,
GlFilteredSearchTokenSegment
,
GlNewDropdownDivider
as
GlDropdownDivider
,
}
from
'
@gitlab/ui
'
;
import
MockAdapter
from
'
axios-mock-adapter
'
;
import
waitForPromises
from
'
helpers/wait_for_promises
'
;
...
...
@@ -31,13 +32,14 @@ const defaultStubs = {
},
};
const
createComponent
=
({
function
createComponent
(
options
=
{})
{
const
{
config
=
mockMilestoneToken
,
value
=
{
data
:
''
},
active
=
false
,
stubs
=
defaultStubs
,
}
=
{})
=>
mount
(
MilestoneToken
,
{
}
=
options
;
return
mount
(
MilestoneToken
,
{
propsData
:
{
config
,
value
,
...
...
@@ -49,6 +51,7 @@ const createComponent = ({
},
stubs
,
});
}
describe
(
'
MilestoneToken
'
,
()
=>
{
let
mock
;
...
...
@@ -176,6 +179,21 @@ describe('MilestoneToken', () => {
});
});
it
(
'
does not render divider when no defaultMilestones
'
,
async
()
=>
{
wrapper
=
createComponent
({
active
:
true
,
config
:
{
...
mockMilestoneToken
,
defaultMilestones
:
[]
},
stubs
:
{
Portal
:
true
},
});
const
tokenSegments
=
wrapper
.
findAll
(
GlFilteredSearchTokenSegment
);
const
suggestionsSegment
=
tokenSegments
.
at
(
2
);
suggestionsSegment
.
vm
.
$emit
(
'
activate
'
);
await
wrapper
.
vm
.
$nextTick
();
expect
(
wrapper
.
contains
(
GlFilteredSearchSuggestion
)).
toBe
(
false
);
expect
(
wrapper
.
contains
(
GlDropdownDivider
)).
toBe
(
false
);
});
it
(
'
renders `DEFAULT_MILESTONES` as default suggestions
'
,
async
()
=>
{
wrapper
=
createComponent
({
active
:
true
,
...
...
yarn.lock
View file @
bd88ae75
...
...
@@ -7744,10 +7744,10 @@ lodash.values@^4.3.0:
resolved "https://registry.yarnpkg.com/lodash.values/-/lodash.values-4.3.0.tgz#a3a6c2b0ebecc5c2cba1c17e6e620fe81b53d347"
integrity sha1-o6bCsOvsxcLLocF+bmIP6BtT00c=
lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@~4.17.10:
version "4.17.
15
"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.
15.tgz#b447f6670a0455bbfeedd11392eff330ea097548
"
integrity sha512-
8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1
A==
lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@
^4.17.20, lodash@
~4.17.10:
version "4.17.
20
"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.
20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52
"
integrity sha512-
PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGm
A==
log-symbols@^2.1.0, log-symbols@^2.2.0:
version "2.2.0"
...
...
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