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
9c12039f
Commit
9c12039f
authored
Jun 23, 2020
by
Lee Tickett
Committed by
Phil Hughes
Jun 23, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove hyperlink from close reopen button
parent
cc687bc8
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
58 additions
and
57 deletions
+58
-57
app/assets/javascripts/close_reopen_report_toggle.js
app/assets/javascripts/close_reopen_report_toggle.js
+1
-6
app/assets/javascripts/issue.js
app/assets/javascripts/issue.js
+5
-5
app/assets/javascripts/merge_request.js
app/assets/javascripts/merge_request.js
+10
-1
app/assets/javascripts/notes/components/comment_form.vue
app/assets/javascripts/notes/components/comment_form.vue
+5
-1
app/assets/javascripts/notes/stores/actions.js
app/assets/javascripts/notes/stores/actions.js
+0
-1
app/helpers/issuables_helper.rb
app/helpers/issuables_helper.rb
+0
-9
app/views/shared/issuable/_close_reopen_button.html.haml
app/views/shared/issuable/_close_reopen_button.html.haml
+6
-5
app/views/shared/issuable/_close_reopen_report_toggle.html.haml
...ews/shared/issuable/_close_reopen_report_toggle.html.haml
+4
-5
changelogs/unreleased/remove_hyperlink_from_close_reopen_button.yml
.../unreleased/remove_hyperlink_from_close_reopen_button.yml
+5
-0
ee/app/views/projects/issues/_alert_blocked.html.haml
ee/app/views/projects/issues/_alert_blocked.html.haml
+2
-2
ee/spec/features/merge_request/user_selects_branches_for_new_mr_spec.rb
...es/merge_request/user_selects_branches_for_new_mr_spec.rb
+1
-1
ee/spec/frontend/issue_spec.js
ee/spec/frontend/issue_spec.js
+1
-1
locale/gitlab.pot
locale/gitlab.pot
+3
-0
spec/features/issuables/close_reopen_report_toggle_spec.rb
spec/features/issuables/close_reopen_report_toggle_spec.rb
+11
-11
spec/features/merge_request/user_closes_merge_request_spec.rb
.../features/merge_request/user_closes_merge_request_spec.rb
+1
-1
spec/features/merge_request/user_reopens_merge_request_spec.rb
...features/merge_request/user_reopens_merge_request_spec.rb
+1
-1
spec/features/task_lists_spec.rb
spec/features/task_lists_spec.rb
+1
-1
spec/frontend/close_reopen_report_toggle_spec.js
spec/frontend/close_reopen_report_toggle_spec.js
+1
-6
No files found.
app/assets/javascripts/close_reopen_report_toggle.js
View file @
9c12039f
...
@@ -80,12 +80,7 @@ class CloseReopenReportToggle {
...
@@ -80,12 +80,7 @@ class CloseReopenReportToggle {
{
{
input
:
this
.
button
,
input
:
this
.
button
,
valueAttribute
:
'
data-url
'
,
valueAttribute
:
'
data-url
'
,
inputAttribute
:
'
href
'
,
inputAttribute
:
'
data-endpoint
'
,
},
{
input
:
this
.
button
,
valueAttribute
:
'
data-method
'
,
inputAttribute
:
'
data-method
'
,
},
},
],
],
};
};
...
...
app/assets/javascripts/issue.js
View file @
9c12039f
...
@@ -11,7 +11,7 @@ import { __ } from './locale';
...
@@ -11,7 +11,7 @@ import { __ } from './locale';
export
default
class
Issue
{
export
default
class
Issue
{
constructor
()
{
constructor
()
{
if
(
$
(
'
a.btn-close
'
).
length
)
this
.
initIssueBtnEventListeners
();
if
(
$
(
'
.btn-close, .btn-reopen
'
).
length
)
this
.
initIssueBtnEventListeners
();
if
(
$
(
'
.js-close-blocked-issue-warning
'
).
length
)
this
.
initIssueWarningBtnEventListener
();
if
(
$
(
'
.js-close-blocked-issue-warning
'
).
length
)
this
.
initIssueWarningBtnEventListener
();
...
@@ -32,8 +32,8 @@ export default class Issue {
...
@@ -32,8 +32,8 @@ export default class Issue {
Issue
.
initRelatedBranches
();
Issue
.
initRelatedBranches
();
}
}
this
.
closeButtons
=
$
(
'
a
.btn-close
'
);
this
.
closeButtons
=
$
(
'
.btn-close
'
);
this
.
reopenButtons
=
$
(
'
a
.btn-reopen
'
);
this
.
reopenButtons
=
$
(
'
.btn-reopen
'
);
this
.
initCloseReopenReport
();
this
.
initCloseReopenReport
();
...
@@ -103,7 +103,7 @@ export default class Issue {
...
@@ -103,7 +103,7 @@ export default class Issue {
// NOTE: data attribute seems unnecessary but is actually necessary
// NOTE: data attribute seems unnecessary but is actually necessary
return
$
(
'
.js-issuable-buttons[data-action="close-reopen"]
'
).
on
(
return
$
(
'
.js-issuable-buttons[data-action="close-reopen"]
'
).
on
(
'
click
'
,
'
click
'
,
'
a.btn-close, a.btn-reopen, a
.btn-close-anyway
'
,
'
.btn-close, .btn-reopen,
.btn-close-anyway
'
,
e
=>
{
e
=>
{
e
.
preventDefault
();
e
.
preventDefault
();
e
.
stopImmediatePropagation
();
e
.
stopImmediatePropagation
();
...
@@ -120,7 +120,7 @@ export default class Issue {
...
@@ -120,7 +120,7 @@ export default class Issue {
}
else
{
}
else
{
this
.
disableCloseReopenButton
(
$button
);
this
.
disableCloseReopenButton
(
$button
);
const
url
=
$button
.
attr
(
'
href
'
);
const
url
=
$button
.
data
(
'
endpoint
'
);
return
axios
return
axios
.
put
(
url
)
.
put
(
url
)
...
...
app/assets/javascripts/merge_request.js
View file @
9c12039f
/* eslint-disable func-names, no-underscore-dangle, consistent-return */
/* eslint-disable func-names, no-underscore-dangle, consistent-return */
import
$
from
'
jquery
'
;
import
$
from
'
jquery
'
;
import
axios
from
'
./lib/utils/axios_utils
'
;
import
{
__
}
from
'
~/locale
'
;
import
{
__
}
from
'
~/locale
'
;
import
createFlash
from
'
~/flash
'
;
import
createFlash
from
'
~/flash
'
;
import
TaskList
from
'
./task_list
'
;
import
TaskList
from
'
./task_list
'
;
...
@@ -65,9 +66,17 @@ MergeRequest.prototype.showAllCommits = function() {
...
@@ -65,9 +66,17 @@ MergeRequest.prototype.showAllCommits = function() {
MergeRequest
.
prototype
.
initMRBtnListeners
=
function
()
{
MergeRequest
.
prototype
.
initMRBtnListeners
=
function
()
{
const
_this
=
this
;
const
_this
=
this
;
return
$
(
'
a.btn-close, a
.btn-reopen
'
).
on
(
'
click
'
,
function
(
e
)
{
return
$
(
'
.btn-close,
.btn-reopen
'
).
on
(
'
click
'
,
function
(
e
)
{
const
$this
=
$
(
this
);
const
$this
=
$
(
this
);
const
shouldSubmit
=
$this
.
hasClass
(
'
btn-comment
'
);
const
shouldSubmit
=
$this
.
hasClass
(
'
btn-comment
'
);
if
(
$this
.
hasClass
(
'
js-btn-issue-action
'
))
{
const
url
=
$this
.
data
(
'
endpoint
'
);
return
axios
.
put
(
url
)
.
then
(()
=>
window
.
location
.
reload
())
.
catch
(()
=>
createFlash
(
__
(
'
Something went wrong.
'
)));
}
if
(
shouldSubmit
&&
$this
.
data
(
'
submitted
'
))
{
if
(
shouldSubmit
&&
$this
.
data
(
'
submitted
'
))
{
return
;
return
;
}
}
...
...
app/assets/javascripts/notes/components/comment_form.vue
View file @
9c12039f
...
@@ -125,9 +125,13 @@ export default {
...
@@ -125,9 +125,13 @@ export default {
canToggleIssueState
()
{
canToggleIssueState
()
{
return
(
return
(
this
.
getNoteableData
.
current_user
.
can_update
&&
this
.
getNoteableData
.
current_user
.
can_update
&&
this
.
getNoteableData
.
state
!==
constants
.
MERGED
this
.
getNoteableData
.
state
!==
constants
.
MERGED
&&
!
this
.
closedAndLocked
);
);
},
},
closedAndLocked
()
{
return
!
this
.
isOpen
&&
this
.
isLocked
(
this
.
getNoteableData
);
},
endpoint
()
{
endpoint
()
{
return
this
.
getNoteableData
.
create_note_path
;
return
this
.
getNoteableData
.
create_note_path
;
},
},
...
...
app/assets/javascripts/notes/stores/actions.js
View file @
9c12039f
...
@@ -205,7 +205,6 @@ export const closeIssue = ({ commit, dispatch, state }) => {
...
@@ -205,7 +205,6 @@ export const closeIssue = ({ commit, dispatch, state }) => {
commit
(
types
.
CLOSE_ISSUE
);
commit
(
types
.
CLOSE_ISSUE
);
dispatch
(
'
emitStateChangedEvent
'
,
data
);
dispatch
(
'
emitStateChangedEvent
'
,
data
);
dispatch
(
'
toggleStateButtonLoading
'
,
false
);
dispatch
(
'
toggleStateButtonLoading
'
,
false
);
dispatch
(
'
toggleBlockedIssueWarning
'
,
false
);
});
});
};
};
...
...
app/helpers/issuables_helper.rb
View file @
9c12039f
...
@@ -367,15 +367,6 @@ module IssuablesHelper
...
@@ -367,15 +367,6 @@ module IssuablesHelper
end
end
end
end
def
issuable_close_reopen_button_method
(
issuable
)
case
issuable
when
Issue
''
when
MergeRequest
'put'
end
end
def
issuable_author_is_current_user
(
issuable
)
def
issuable_author_is_current_user
(
issuable
)
issuable
.
author
==
current_user
issuable
.
author
==
current_user
end
end
...
...
app/views/shared/issuable/_close_reopen_button.html.haml
View file @
9c12039f
-
is_current_user
=
issuable_author_is_current_user
(
issuable
)
-
is_current_user
=
issuable_author_is_current_user
(
issuable
)
-
display_issuable_type
=
issuable_display_type
(
issuable
)
-
display_issuable_type
=
issuable_display_type
(
issuable
)
-
button_method
=
issuable_close_reopen_button_method
(
issuable
)
-
are_close_and_open_buttons_hidden
=
issuable_button_hidden?
(
issuable
,
true
)
&&
issuable_button_hidden?
(
issuable
,
false
)
-
are_close_and_open_buttons_hidden
=
issuable_button_hidden?
(
issuable
,
true
)
&&
issuable_button_hidden?
(
issuable
,
false
)
-
add_blocked_class
=
false
-
add_blocked_class
=
false
-
if
defined?
warn_before_close
-
if
defined?
warn_before_close
...
@@ -8,11 +7,13 @@
...
@@ -8,11 +7,13 @@
-
if
is_current_user
-
if
is_current_user
-
if
can_update
-
if
can_update
=
link_to
_
(
"Close %{display_issuable_type}"
)
%
{
display_issuable_type:
display_issuable_type
},
close_issuable_path
(
issuable
),
method:
button_method
,
%button
{
class:
"d-none d-sm-none d-md-block btn btn-grouped btn-close js-btn-issue-action #{issuable_button_visibility(issuable, true)} #{(add_blocked_class ? 'btn-issue-blocked' : '')}"
,
class:
"d-none d-sm-none d-md-block btn btn-grouped btn-close js-btn-issue-action
#{
issuable_button_visibility
(
issuable
,
true
)
}
#{
(
add_blocked_class
?
'btn-issue-blocked'
:
''
)
}
"
,
title:
_
(
"Close %{display_issuable_type}"
)
%
{
display_issuable_type:
display_issuable_type
},
data:
{
qa_selector:
'close_issue_button'
}
data:
{
remote:
'true'
,
endpoint:
close_issuable_path
(
issuable
),
qa_selector:
'close_issue_button'
}
}
=
_
(
"Close %{display_issuable_type}"
)
%
{
display_issuable_type:
display_issuable_type
}
-
if
can_reopen
-
if
can_reopen
=
link_to
_
(
"Reopen %{display_issuable_type}"
)
%
{
display_issuable_type:
display_issuable_type
},
reopen_issuable_path
(
issuable
),
method:
button_method
,
%button
{
class:
"d-none d-sm-none d-md-block btn btn-grouped btn-reopen js-btn-issue-action #{issuable_button_visibility(issuable, false)}"
,
class:
"d-none d-sm-none d-md-block btn btn-grouped btn-reopen js-btn-issue-action
#{
issuable_button_visibility
(
issuable
,
false
)
}
"
,
title:
_
(
"Reopen %{display_issuable_type}"
)
%
{
display_issuable_type:
display_issuable_type
},
data:
{
qa_selector:
'reopen_issue_button'
}
data:
{
remote:
'true'
,
endpoint:
reopen_issuable_path
(
issuable
),
qa_selector:
'reopen_issue_button'
}
}
=
_
(
"Reopen %{display_issuable_type}"
)
%
{
display_issuable_type:
display_issuable_type
}
-
else
-
else
-
if
can_update
&&
!
are_close_and_open_buttons_hidden
-
if
can_update
&&
!
are_close_and_open_buttons_hidden
=
render
'shared/issuable/close_reopen_report_toggle'
,
issuable:
issuable
,
warn_before_close:
add_blocked_class
=
render
'shared/issuable/close_reopen_report_toggle'
,
issuable:
issuable
,
warn_before_close:
add_blocked_class
...
...
app/views/shared/issuable/_close_reopen_report_toggle.html.haml
View file @
9c12039f
...
@@ -4,14 +4,13 @@
...
@@ -4,14 +4,13 @@
-
button_responsive_class
=
'd-none d-sm-none d-md-block'
-
button_responsive_class
=
'd-none d-sm-none d-md-block'
-
button_class
=
"
#{
button_responsive_class
}
btn btn-grouped js-issuable-close-button js-btn-issue-action issuable-close-button"
-
button_class
=
"
#{
button_responsive_class
}
btn btn-grouped js-issuable-close-button js-btn-issue-action issuable-close-button"
-
toggle_class
=
"
#{
button_responsive_class
}
btn btn-nr dropdown-toggle js-issuable-close-toggle"
-
toggle_class
=
"
#{
button_responsive_class
}
btn btn-nr dropdown-toggle js-issuable-close-toggle"
-
button_method
=
issuable_close_reopen_button_method
(
issuable
)
-
add_blocked_class
=
false
-
add_blocked_class
=
false
-
if
defined?
warn_before_close
-
if
defined?
warn_before_close
-
add_blocked_class
=
!
issuable
.
closed?
&&
warn_before_close
-
add_blocked_class
=
!
issuable
.
closed?
&&
warn_before_close
.float-left.btn-group.prepend-left-10.issuable-close-dropdown.droplab-dropdown.js-issuable-close-dropdown
.float-left.btn-group.prepend-left-10.issuable-close-dropdown.droplab-dropdown.js-issuable-close-dropdown
=
link_to
"
#{
display_button_action
}
#{
display_issuable_type
}
"
,
close_reopen_issuable_path
(
issuable
),
%button
{
class:
"#{button_class} btn-#{button_action} #{(add_blocked_class ? 'btn-issue-blocked' : '')}"
,
data:
{
qa_selector:
'close_issue_button'
,
endpoint:
close_reopen_issuable_path
(
issuable
)
}
}
method:
button_method
,
class:
"
#{
button_class
}
btn-
#{
button_action
}
#{
(
add_blocked_class
?
'btn-issue-blocked'
:
''
)
}
"
,
title:
"
#{
display_button_action
}
#{
display_issuable_type
}
"
,
data:
{
qa_selector:
'close_issue_button'
}
#{
display_button_action
}
#{
display_issuable_type
}
=
button_tag
type:
'button'
,
class:
"
#{
toggle_class
}
btn-
#{
button_action
}
-color"
,
=
button_tag
type:
'button'
,
class:
"
#{
toggle_class
}
btn-
#{
button_action
}
-color"
,
data:
{
'dropdown-trigger'
=>
'#issuable-close-menu'
},
'aria-label'
=>
_
(
'Toggle dropdown'
)
do
data:
{
'dropdown-trigger'
=>
'#issuable-close-menu'
},
'aria-label'
=>
_
(
'Toggle dropdown'
)
do
...
@@ -20,7 +19,7 @@
...
@@ -20,7 +19,7 @@
%ul
#issuable-close-menu
.js-issuable-close-menu.dropdown-menu
{
data:
{
dropdown:
true
}
}
%ul
#issuable-close-menu
.js-issuable-close-menu.dropdown-menu
{
data:
{
dropdown:
true
}
}
%li
.close-item
{
class:
"#{issuable_button_visibility(issuable, true) || 'droplab-item-selected'}"
,
%li
.close-item
{
class:
"#{issuable_button_visibility(issuable, true) || 'droplab-item-selected'}"
,
data:
{
text:
_
(
"Close %{display_issuable_type}"
)
%
{
display_issuable_type:
display_issuable_type
},
url:
close_issuable_path
(
issuable
),
data:
{
text:
_
(
"Close %{display_issuable_type}"
)
%
{
display_issuable_type:
display_issuable_type
},
url:
close_issuable_path
(
issuable
),
button_class:
"#{button_class} btn-close"
,
toggle_class:
"#{toggle_class} btn-close-color"
,
method:
button_method
}
}
button_class:
"#{button_class} btn-close"
,
toggle_class:
"#{toggle_class} btn-close-color"
}
}
%button
.btn.btn-transparent
%button
.btn.btn-transparent
=
icon
(
'check'
,
class:
'icon'
)
=
icon
(
'check'
,
class:
'icon'
)
.description
.description
...
@@ -30,7 +29,7 @@
...
@@ -30,7 +29,7 @@
%li
.reopen-item
{
class:
"#{issuable_button_visibility(issuable, false) || 'droplab-item-selected'}"
,
%li
.reopen-item
{
class:
"#{issuable_button_visibility(issuable, false) || 'droplab-item-selected'}"
,
data:
{
text:
_
(
"Reopen %{display_issuable_type}"
)
%
{
display_issuable_type:
display_issuable_type
},
url:
reopen_issuable_path
(
issuable
),
data:
{
text:
_
(
"Reopen %{display_issuable_type}"
)
%
{
display_issuable_type:
display_issuable_type
},
url:
reopen_issuable_path
(
issuable
),
button_class:
"#{button_class} btn-reopen"
,
toggle_class:
"#{toggle_class} btn-reopen-color"
,
method:
button_method
}
}
button_class:
"#{button_class} btn-reopen"
,
toggle_class:
"#{toggle_class} btn-reopen-color"
}
}
%button
.btn.btn-transparent
%button
.btn.btn-transparent
=
icon
(
'check'
,
class:
'icon'
)
=
icon
(
'check'
,
class:
'icon'
)
.description
.description
...
...
changelogs/unreleased/remove_hyperlink_from_close_reopen_button.yml
0 → 100644
View file @
9c12039f
---
title
:
Remove broken hyperlink from close and reopen button
merge_request
:
22220
author
:
Lee Tickett
type
:
fixed
ee/app/views/projects/issues/_alert_blocked.html.haml
View file @
9c12039f
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
.gl-alert-body
.gl-alert-body
=
_
(
'This issue is currently blocked by the following issues: %{issues}.'
).
html_safe
%
{
issues:
blocked_by_issues_links
}
=
_
(
'This issue is currently blocked by the following issues: %{issues}.'
).
html_safe
%
{
issues:
blocked_by_issues_links
}
.gl-alert-actions
.gl-alert-actions
=
link_to
_
(
"Yes, close issue"
),
close_issuable_path
(
issue
),
rel:
'nofollow'
,
method:
''
,
%button
{
class:
"btn btn-close-anyway gl-alert-action btn-warning btn-md gl-button"
,
data:
{
endpoint:
close_issuable_path
(
@issue
)
}
}
class:
"btn btn-close-anyway gl-alert-action btn-warning btn-md gl-button"
,
title:
_
(
"Yes, close issue"
)
=
_
(
"Yes, close issue"
)
%button
.btn.gl-alert-action.btn-warning.btn-md.gl-button.btn-secondary
%button
.btn.gl-alert-action.btn-warning.btn-md.gl-button.btn-secondary
=
s_
(
'Cancel'
)
=
s_
(
'Cancel'
)
ee/spec/features/merge_request/user_selects_branches_for_new_mr_spec.rb
View file @
9c12039f
...
@@ -27,7 +27,7 @@ RSpec.describe 'Merge request > User selects branches for new MR', :js do
...
@@ -27,7 +27,7 @@ RSpec.describe 'Merge request > User selects branches for new MR', :js do
fill_in
'merge_request_title'
,
with:
'Test'
fill_in
'merge_request_title'
,
with:
'Test'
click_button
'Submit merge request'
click_button
'Submit merge request'
expect
(
page
).
to
have_
link
(
'Close merge request'
)
expect
(
page
).
to
have_
button
(
'Close merge request'
)
end
end
end
end
end
end
...
...
ee/spec/frontend/issue_spec.js
View file @
9c12039f
...
@@ -98,7 +98,7 @@ describe('Issue', () => {
...
@@ -98,7 +98,7 @@ describe('Issue', () => {
testContext
.
$triggeredButton
=
$btn
;
testContext
.
$triggeredButton
=
$btn
;
mockCloseButtonResponseSuccess
(
testContext
.
$triggeredButton
.
attr
(
'
href
'
),
{
mockCloseButtonResponseSuccess
(
testContext
.
$triggeredButton
.
data
(
'
endpoint
'
),
{
id
:
34
,
id
:
34
,
});
});
...
...
locale/gitlab.pot
View file @
9c12039f
...
@@ -21196,6 +21196,9 @@ msgstr ""
...
@@ -21196,6 +21196,9 @@ msgstr ""
msgid "Something went wrong, unable to search projects"
msgid "Something went wrong, unable to search projects"
msgstr ""
msgstr ""
msgid "Something went wrong."
msgstr ""
msgid "Something went wrong. Please try again."
msgid "Something went wrong. Please try again."
msgstr ""
msgstr ""
...
...
spec/features/issuables/close_reopen_report_toggle_spec.rb
View file @
9c12039f
...
@@ -10,7 +10,7 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
...
@@ -10,7 +10,7 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
let
(
:human_model_name
)
{
issuable
.
model_name
.
human
.
downcase
}
let
(
:human_model_name
)
{
issuable
.
model_name
.
human
.
downcase
}
it
'shows toggle'
do
it
'shows toggle'
do
expect
(
page
).
to
have_
link
(
"Close
#{
human_model_name
}
"
)
expect
(
page
).
to
have_
button
(
"Close
#{
human_model_name
}
"
)
expect
(
page
).
to
have_selector
(
'.issuable-close-dropdown'
)
expect
(
page
).
to
have_selector
(
'.issuable-close-dropdown'
)
end
end
...
@@ -63,7 +63,7 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
...
@@ -63,7 +63,7 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
let
(
:issuable
)
{
create
(
:issue
,
:closed
,
:locked
,
project:
project
)
}
let
(
:issuable
)
{
create
(
:issue
,
:closed
,
:locked
,
project:
project
)
}
it
'hides the reopen button'
do
it
'hides the reopen button'
do
expect
(
page
).
not_to
have_
link
(
'Reopen issue'
)
expect
(
page
).
not_to
have_
button
(
'Reopen issue'
)
end
end
context
'when the issue author is the current user'
do
context
'when the issue author is the current user'
do
...
@@ -72,7 +72,7 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
...
@@ -72,7 +72,7 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
end
end
it
'hides the reopen button'
do
it
'hides the reopen button'
do
expect
(
page
).
not_to
have_
link
(
'Reopen issue'
)
expect
(
page
).
not_to
have_
button
(
'Reopen issue'
)
end
end
end
end
end
end
...
@@ -91,8 +91,8 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
...
@@ -91,8 +91,8 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
it
'only shows the `Report abuse` and `New issue` buttons'
do
it
'only shows the `Report abuse` and `New issue` buttons'
do
expect
(
page
).
to
have_link
(
'Report abuse'
)
expect
(
page
).
to
have_link
(
'Report abuse'
)
expect
(
page
).
to
have_link
(
'New issue'
)
expect
(
page
).
to
have_link
(
'New issue'
)
expect
(
page
).
not_to
have_
link
(
'Close issue'
)
expect
(
page
).
not_to
have_
button
(
'Close issue'
)
expect
(
page
).
not_to
have_
link
(
'Reopen issue'
)
expect
(
page
).
not_to
have_
button
(
'Reopen issue'
)
expect
(
page
).
not_to
have_link
(
'Edit'
)
expect
(
page
).
not_to
have_link
(
'Edit'
)
end
end
end
end
...
@@ -120,8 +120,8 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
...
@@ -120,8 +120,8 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
it
'shows only the `Report abuse` and `Edit` button'
do
it
'shows only the `Report abuse` and `Edit` button'
do
expect
(
page
).
to
have_link
(
'Report abuse'
)
expect
(
page
).
to
have_link
(
'Report abuse'
)
expect
(
page
).
to
have_link
(
'Edit'
)
expect
(
page
).
to
have_link
(
'Edit'
)
expect
(
page
).
not_to
have_
link
(
'Close merge request'
)
expect
(
page
).
not_to
have_
button
(
'Close merge request'
)
expect
(
page
).
not_to
have_
link
(
'Reopen merge request'
)
expect
(
page
).
not_to
have_
button
(
'Reopen merge request'
)
end
end
context
'when the merge request author is the current user'
do
context
'when the merge request author is the current user'
do
...
@@ -130,8 +130,8 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
...
@@ -130,8 +130,8 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
it
'shows only the `Edit` button'
do
it
'shows only the `Edit` button'
do
expect
(
page
).
to
have_link
(
'Edit'
)
expect
(
page
).
to
have_link
(
'Edit'
)
expect
(
page
).
not_to
have_link
(
'Report abuse'
)
expect
(
page
).
not_to
have_link
(
'Report abuse'
)
expect
(
page
).
not_to
have_
link
(
'Close merge request'
)
expect
(
page
).
not_to
have_
button
(
'Close merge request'
)
expect
(
page
).
not_to
have_
link
(
'Reopen merge request'
)
expect
(
page
).
not_to
have_
button
(
'Reopen merge request'
)
end
end
end
end
end
end
...
@@ -149,8 +149,8 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
...
@@ -149,8 +149,8 @@ RSpec.describe 'Issuables Close/Reopen/Report toggle' do
it
'only shows a `Report abuse` button'
do
it
'only shows a `Report abuse` button'
do
expect
(
page
).
to
have_link
(
'Report abuse'
)
expect
(
page
).
to
have_link
(
'Report abuse'
)
expect
(
page
).
not_to
have_
link
(
'Close merge request'
)
expect
(
page
).
not_to
have_
button
(
'Close merge request'
)
expect
(
page
).
not_to
have_
link
(
'Reopen merge request'
)
expect
(
page
).
not_to
have_
button
(
'Reopen merge request'
)
expect
(
page
).
not_to
have_link
(
'Edit'
)
expect
(
page
).
not_to
have_link
(
'Edit'
)
end
end
end
end
...
...
spec/features/merge_request/user_closes_merge_request_spec.rb
View file @
9c12039f
...
@@ -15,7 +15,7 @@ RSpec.describe 'User closes a merge requests', :js do
...
@@ -15,7 +15,7 @@ RSpec.describe 'User closes a merge requests', :js do
end
end
it
'closes a merge request'
do
it
'closes a merge request'
do
click_
link
(
'Close merge request'
,
match: :first
)
click_
button
(
'Close merge request'
,
match: :first
)
expect
(
page
).
to
have_content
(
merge_request
.
title
)
expect
(
page
).
to
have_content
(
merge_request
.
title
)
expect
(
page
).
to
have_content
(
'Closed by'
)
expect
(
page
).
to
have_content
(
'Closed by'
)
...
...
spec/features/merge_request/user_reopens_merge_request_spec.rb
View file @
9c12039f
...
@@ -15,7 +15,7 @@ RSpec.describe 'User reopens a merge requests', :js do
...
@@ -15,7 +15,7 @@ RSpec.describe 'User reopens a merge requests', :js do
end
end
it
'reopens a merge request'
do
it
'reopens a merge request'
do
click_
link
(
'Reopen merge request'
,
match: :first
)
click_
button
(
'Reopen merge request'
,
match: :first
)
page
.
within
(
'.status-box'
)
do
page
.
within
(
'.status-box'
)
do
expect
(
page
).
to
have_content
(
'Open'
)
expect
(
page
).
to
have_content
(
'Open'
)
...
...
spec/features/task_lists_spec.rb
View file @
9c12039f
...
@@ -103,7 +103,7 @@ RSpec.describe 'Task Lists' do
...
@@ -103,7 +103,7 @@ RSpec.describe 'Task Lists' do
wait_for_requests
wait_for_requests
expect
(
page
).
to
have_selector
(
".md .task-list .task-list-item .task-list-item-checkbox"
)
expect
(
page
).
to
have_selector
(
".md .task-list .task-list-item .task-list-item-checkbox"
)
expect
(
page
).
to
have_selector
(
'
a
.btn-close'
)
expect
(
page
).
to
have_selector
(
'.btn-close'
)
end
end
it
'is only editable by author'
do
it
'is only editable by author'
do
...
...
spec/frontend/close_reopen_report_toggle_spec.js
View file @
9c12039f
...
@@ -274,12 +274,7 @@ describe('CloseReopenReportToggle', () => {
...
@@ -274,12 +274,7 @@ describe('CloseReopenReportToggle', () => {
{
{
input
:
button
,
input
:
button
,
valueAttribute
:
'
data-url
'
,
valueAttribute
:
'
data-url
'
,
inputAttribute
:
'
href
'
,
inputAttribute
:
'
data-endpoint
'
,
},
{
input
:
button
,
valueAttribute
:
'
data-method
'
,
inputAttribute
:
'
data-method
'
,
},
},
],
],
});
});
...
...
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