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
c1ea4afa
Commit
c1ea4afa
authored
Dec 28, 2017
by
Jarka Kadlecová
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix links to old commits in merge requests
parent
4e0b6bf7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
78 additions
and
16 deletions
+78
-16
app/models/diff_discussion.rb
app/models/diff_discussion.rb
+7
-2
changelogs/unreleased/41492-mr-comment-fix.yml
changelogs/unreleased/41492-mr-comment-fix.yml
+5
-0
spec/models/diff_discussion_spec.rb
spec/models/diff_discussion_spec.rb
+42
-6
spec/services/system_note_service_spec.rb
spec/services/system_note_service_spec.rb
+24
-8
No files found.
app/models/diff_discussion.rb
View file @
c1ea4afa
...
...
@@ -23,8 +23,13 @@ class DiffDiscussion < Discussion
def
merge_request_version_params
return
unless
for_merge_request?
version_params
=
get_params
return
version_params
unless
on_merge_request_commit?
&&
commit_id
version_params
||=
{}
version_params
.
tap
do
|
params
|
params
[
:commit_id
]
=
commit_id
if
on_merge_request_commit?
params
[
:commit_id
]
=
commit_id
end
end
...
...
@@ -37,7 +42,7 @@ class DiffDiscussion < Discussion
private
def
version
_params
def
get
_params
return
{}
if
active?
noteable
.
version_params_for
(
position
.
diff_refs
)
...
...
changelogs/unreleased/41492-mr-comment-fix.yml
0 → 100644
View file @
c1ea4afa
---
title
:
Fix links to old commits in merge request comments
merge_request
:
author
:
type
:
fixed
spec/models/diff_discussion_spec.rb
View file @
c1ea4afa
...
...
@@ -47,8 +47,20 @@ describe DiffDiscussion do
diff_note
.
save!
end
it
'returns the diff ID for the version to show'
do
expect
(
subject
.
merge_request_version_params
).
to
eq
(
diff_id:
merge_request_diff1
.
id
)
context
'when commit_id is not present'
do
it
'returns the diff ID for the version to show'
do
expect
(
subject
.
merge_request_version_params
).
to
eq
(
diff_id:
merge_request_diff1
.
id
)
end
end
context
'when commit_id is present'
do
before
do
diff_note
.
update_attribute
(
:commit_id
,
'commit_123'
)
end
it
'includes the commit_id in the result'
do
expect
(
subject
.
merge_request_version_params
).
to
eq
(
diff_id:
merge_request_diff1
.
id
,
commit_id:
'commit_123'
)
end
end
end
...
...
@@ -70,8 +82,20 @@ describe DiffDiscussion do
diff_note
.
save!
end
it
'returns the diff ID and start sha of the versions to compare'
do
expect
(
subject
.
merge_request_version_params
).
to
eq
(
diff_id:
merge_request_diff3
.
id
,
start_sha:
merge_request_diff1
.
head_commit_sha
)
context
'when commit_id is not present'
do
it
'returns the diff ID and start sha of the versions to compare'
do
expect
(
subject
.
merge_request_version_params
).
to
eq
(
diff_id:
merge_request_diff3
.
id
,
start_sha:
merge_request_diff1
.
head_commit_sha
)
end
end
context
'when commit_id is present'
do
before
do
diff_note
.
update_attribute
(
:commit_id
,
'commit_123'
)
end
it
'includes the commit_id in the result'
do
expect
(
subject
.
merge_request_version_params
).
to
eq
(
diff_id:
merge_request_diff3
.
id
,
start_sha:
merge_request_diff1
.
head_commit_sha
,
commit_id:
'commit_123'
)
end
end
end
...
...
@@ -83,8 +107,20 @@ describe DiffDiscussion do
diff_note
.
save!
end
it
'returns nil'
do
expect
(
subject
.
merge_request_version_params
).
to
be_nil
context
'when commit_id is not present'
do
it
'returns empty hash'
do
expect
(
subject
.
merge_request_version_params
).
to
eq
(
nil
)
end
end
context
'when commit_id is present'
do
before
do
diff_note
.
update_attribute
(
:commit_id
,
'commit_123'
)
end
it
'returns the commit_id'
do
expect
(
subject
.
merge_request_version_params
).
to
eq
(
commit_id:
'commit_123'
)
end
end
end
end
...
...
spec/services/system_note_service_spec.rb
View file @
c1ea4afa
...
...
@@ -2,6 +2,7 @@ require 'spec_helper'
describe
SystemNoteService
do
include
Gitlab
::
Routing
include
RepoHelpers
set
(
:group
)
{
create
(
:group
)
}
set
(
:project
)
{
create
(
:project
,
:repository
,
group:
group
)
}
...
...
@@ -1070,17 +1071,32 @@ describe SystemNoteService do
let
(
:action
)
{
'outdated'
}
end
it
'creates a new note in the discussion'
do
# we need to completely rebuild the merge request object, or the `@discussions` on the merge request are not reloaded.
expect
{
subject
}.
to
change
{
reloaded_merge_request
.
discussions
.
first
.
notes
.
size
}.
by
(
1
)
context
'when the change_position is valid for the discussion'
do
it
'creates a new note in the discussion'
do
# we need to completely rebuild the merge request object, or the `@discussions` on the merge request are not reloaded.
expect
{
subject
}.
to
change
{
reloaded_merge_request
.
discussions
.
first
.
notes
.
size
}.
by
(
1
)
end
it
'links to the diff in the system note'
do
expect
(
subject
.
note
).
to
include
(
'version 1'
)
diff_id
=
merge_request
.
merge_request_diff
.
id
line_code
=
change_position
.
line_code
(
project
.
repository
)
expect
(
subject
.
note
).
to
include
(
diffs_project_merge_request_url
(
project
,
merge_request
,
diff_id:
diff_id
,
anchor:
line_code
))
end
end
it
'links to the diff in the system note
'
do
expect
(
subject
.
note
).
to
include
(
'version 1'
)
context
'when the change_position is invalid for the discussion
'
do
let
(
:change_position
)
{
project
.
commit
(
sample_commit
.
id
)
}
diff_id
=
merge_request
.
merge_request_diff
.
id
line_code
=
change_position
.
line_code
(
project
.
repository
)
expect
(
subject
.
note
).
to
include
(
diffs_project_merge_request_url
(
project
,
merge_request
,
diff_id:
diff_id
,
anchor:
line_code
))
it
'creates a new note in the discussion'
do
# we need to completely rebuild the merge request object, or the `@discussions` on the merge request are not reloaded.
expect
{
subject
}.
to
change
{
reloaded_merge_request
.
discussions
.
first
.
notes
.
size
}.
by
(
1
)
end
it
'does not create a link'
do
expect
(
subject
.
note
).
to
eq
(
'changed this line in version 1 of the diff'
)
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