BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
46302c8c
Commit
46302c8c
authored
Apr 13, 2018
by
Douwe Maan
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'jprovazn-fix-references' into 'master'
Fix reference filters in group context See merge request gitlab-org/gitlab-ce!18340
parents
4758db5a
3e831453
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
91 additions
and
22 deletions
+91
-22
fix-references-in-group-context.yml
changelogs/unreleased/fix-references-in-group-context.yml
+5
-0
abstract_reference_filter.rb
lib/banzai/filter/abstract_reference_filter.rb
+13
-13
commit_range_reference_filter.rb
lib/banzai/filter/commit_range_reference_filter.rb
+2
-0
commit_reference_filter.rb
lib/banzai/filter/commit_reference_filter.rb
+2
-0
label_reference_filter.rb
lib/banzai/filter/label_reference_filter.rb
+2
-2
milestone_reference_filter.rb
lib/banzai/filter/milestone_reference_filter.rb
+5
-1
snippet_reference_filter.rb
lib/banzai/filter/snippet_reference_filter.rb
+2
-0
commit_range_parser.rb
lib/banzai/reference_parser/commit_range_parser.rb
+2
-0
commit_range_reference_filter_spec.rb
spec/lib/banzai/filter/commit_range_reference_filter_spec.rb
+16
-0
commit_reference_filter_spec.rb
spec/lib/banzai/filter/commit_reference_filter_spec.rb
+16
-0
milestone_reference_filter_spec.rb
spec/lib/banzai/filter/milestone_reference_filter_spec.rb
+10
-2
snippet_reference_filter_spec.rb
spec/lib/banzai/filter/snippet_reference_filter_spec.rb
+6
-0
commit_range_parser_spec.rb
spec/lib/banzai/reference_parser/commit_range_parser_spec.rb
+10
-4
No files found.
changelogs/unreleased/fix-references-in-group-context.yml
0 → 100644
View file @
46302c8c
---
title
:
Ignore project internal references in group context
merge_request
:
author
:
type
:
fixed
lib/banzai/filter/abstract_reference_filter.rb
View file @
46302c8c
...
@@ -56,29 +56,29 @@ module Banzai
...
@@ -56,29 +56,29 @@ module Banzai
# Implement in child class
# Implement in child class
# Example: project.merge_requests.find
# Example: project.merge_requests.find
def
find_object
(
p
ro
ject
,
id
)
def
find_object
(
p
arent_ob
ject
,
id
)
end
end
# Override if the link reference pattern produces a different ID (global
# Override if the link reference pattern produces a different ID (global
# ID vs internal ID, for instance) to the regular reference pattern.
# ID vs internal ID, for instance) to the regular reference pattern.
def
find_object_from_link
(
p
ro
ject
,
id
)
def
find_object_from_link
(
p
arent_ob
ject
,
id
)
find_object
(
p
ro
ject
,
id
)
find_object
(
p
arent_ob
ject
,
id
)
end
end
# Implement in child class
# Implement in child class
# Example: project_merge_request_url
# Example: project_merge_request_url
def
url_for_object
(
object
,
p
ro
ject
)
def
url_for_object
(
object
,
p
arent_ob
ject
)
end
end
def
find_object_cached
(
p
ro
ject
,
id
)
def
find_object_cached
(
p
arent_ob
ject
,
id
)
cached_call
(
:banzai_find_object
,
id
,
path:
[
object_class
,
p
ro
ject
.
id
])
do
cached_call
(
:banzai_find_object
,
id
,
path:
[
object_class
,
p
arent_ob
ject
.
id
])
do
find_object
(
p
ro
ject
,
id
)
find_object
(
p
arent_ob
ject
,
id
)
end
end
end
end
def
find_object_from_link_cached
(
p
ro
ject
,
id
)
def
find_object_from_link_cached
(
p
arent_ob
ject
,
id
)
cached_call
(
:banzai_find_object_from_link
,
id
,
path:
[
object_class
,
p
ro
ject
.
id
])
do
cached_call
(
:banzai_find_object_from_link
,
id
,
path:
[
object_class
,
p
arent_ob
ject
.
id
])
do
find_object_from_link
(
p
ro
ject
,
id
)
find_object_from_link
(
p
arent_ob
ject
,
id
)
end
end
end
end
...
@@ -88,9 +88,9 @@ module Banzai
...
@@ -88,9 +88,9 @@ module Banzai
end
end
end
end
def
url_for_object_cached
(
object
,
p
ro
ject
)
def
url_for_object_cached
(
object
,
p
arent_ob
ject
)
cached_call
(
:banzai_url_for_object
,
object
,
path:
[
object_class
,
p
ro
ject
.
id
])
do
cached_call
(
:banzai_url_for_object
,
object
,
path:
[
object_class
,
p
arent_ob
ject
.
id
])
do
url_for_object
(
object
,
p
ro
ject
)
url_for_object
(
object
,
p
arent_ob
ject
)
end
end
end
end
...
...
lib/banzai/filter/commit_range_reference_filter.rb
View file @
46302c8c
...
@@ -23,6 +23,8 @@ module Banzai
...
@@ -23,6 +23,8 @@ module Banzai
end
end
def
find_object
(
project
,
id
)
def
find_object
(
project
,
id
)
return
unless
project
.
is_a?
(
Project
)
range
=
CommitRange
.
new
(
id
,
project
)
range
=
CommitRange
.
new
(
id
,
project
)
range
.
valid_commits?
?
range
:
nil
range
.
valid_commits?
?
range
:
nil
...
...
lib/banzai/filter/commit_reference_filter.rb
View file @
46302c8c
...
@@ -17,6 +17,8 @@ module Banzai
...
@@ -17,6 +17,8 @@ module Banzai
end
end
def
find_object
(
project
,
id
)
def
find_object
(
project
,
id
)
return
unless
project
.
is_a?
(
Project
)
if
project
&&
project
.
valid_repo?
if
project
&&
project
.
valid_repo?
# n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/43894
# n+1: https://gitlab.com/gitlab-org/gitlab-ce/issues/43894
Gitlab
::
GitalyClient
.
allow_n_plus_1_calls
{
project
.
commit
(
id
)
}
Gitlab
::
GitalyClient
.
allow_n_plus_1_calls
{
project
.
commit
(
id
)
}
...
...
lib/banzai/filter/label_reference_filter.rb
View file @
46302c8c
...
@@ -8,8 +8,8 @@ module Banzai
...
@@ -8,8 +8,8 @@ module Banzai
Label
Label
end
end
def
find_object
(
p
ro
ject
,
id
)
def
find_object
(
p
arent_ob
ject
,
id
)
find_labels
(
p
ro
ject
).
find
(
id
)
find_labels
(
p
arent_ob
ject
).
find
(
id
)
end
end
def
self
.
references_in
(
text
,
pattern
=
Label
.
reference_pattern
)
def
self
.
references_in
(
text
,
pattern
=
Label
.
reference_pattern
)
...
...
lib/banzai/filter/milestone_reference_filter.rb
View file @
46302c8c
...
@@ -12,10 +12,14 @@ module Banzai
...
@@ -12,10 +12,14 @@ module Banzai
# 'regular' references, we need to use the global ID to disambiguate
# 'regular' references, we need to use the global ID to disambiguate
# between group and project milestones.
# between group and project milestones.
def
find_object
(
project
,
id
)
def
find_object
(
project
,
id
)
return
unless
project
.
is_a?
(
Project
)
find_milestone_with_finder
(
project
,
id:
id
)
find_milestone_with_finder
(
project
,
id:
id
)
end
end
def
find_object_from_link
(
project
,
iid
)
def
find_object_from_link
(
project
,
iid
)
return
unless
project
.
is_a?
(
Project
)
find_milestone_with_finder
(
project
,
iid:
iid
)
find_milestone_with_finder
(
project
,
iid:
iid
)
end
end
...
@@ -40,7 +44,7 @@ module Banzai
...
@@ -40,7 +44,7 @@ module Banzai
project_path
=
full_project_path
(
namespace_ref
,
project_ref
)
project_path
=
full_project_path
(
namespace_ref
,
project_ref
)
project
=
parent_from_ref
(
project_path
)
project
=
parent_from_ref
(
project_path
)
return
unless
project
return
unless
project
&&
project
.
is_a?
(
Project
)
milestone_params
=
milestone_params
(
milestone_id
,
milestone_name
)
milestone_params
=
milestone_params
(
milestone_id
,
milestone_name
)
...
...
lib/banzai/filter/snippet_reference_filter.rb
View file @
46302c8c
...
@@ -12,6 +12,8 @@ module Banzai
...
@@ -12,6 +12,8 @@ module Banzai
end
end
def
find_object
(
project
,
id
)
def
find_object
(
project
,
id
)
return
unless
project
.
is_a?
(
Project
)
project
.
snippets
.
find_by
(
id:
id
)
project
.
snippets
.
find_by
(
id:
id
)
end
end
...
...
lib/banzai/reference_parser/commit_range_parser.rb
View file @
46302c8c
...
@@ -29,6 +29,8 @@ module Banzai
...
@@ -29,6 +29,8 @@ module Banzai
end
end
def
find_object
(
project
,
id
)
def
find_object
(
project
,
id
)
return
unless
project
.
is_a?
(
Project
)
range
=
CommitRange
.
new
(
id
,
project
)
range
=
CommitRange
.
new
(
id
,
project
)
range
.
valid_commits?
?
range
:
nil
range
.
valid_commits?
?
range
:
nil
...
...
spec/lib/banzai/filter/commit_range_reference_filter_spec.rb
View file @
46302c8c
...
@@ -233,4 +233,20 @@ describe Banzai::Filter::CommitRangeReferenceFilter do
...
@@ -233,4 +233,20 @@ describe Banzai::Filter::CommitRangeReferenceFilter do
expect
(
reference_filter
(
act
).
to_html
).
to
eq
exp
expect
(
reference_filter
(
act
).
to_html
).
to
eq
exp
end
end
end
end
context
'group context'
do
let
(
:context
)
{
{
project:
nil
,
group:
create
(
:group
)
}
}
it
'ignores internal references'
do
exp
=
act
=
"See
#{
range
.
to_reference
}
"
expect
(
reference_filter
(
act
,
context
).
to_html
).
to
eq
exp
end
it
'links to a full-path reference'
do
reference
=
"
#{
project
.
full_path
}
@
#{
commit1
.
short_id
}
...
#{
commit2
.
short_id
}
"
expect
(
reference_filter
(
"See
#{
reference
}
"
,
context
).
css
(
'a'
).
first
.
text
).
to
eql
(
reference
)
end
end
end
end
spec/lib/banzai/filter/commit_reference_filter_spec.rb
View file @
46302c8c
...
@@ -238,4 +238,20 @@ describe Banzai::Filter::CommitReferenceFilter do
...
@@ -238,4 +238,20 @@ describe Banzai::Filter::CommitReferenceFilter do
expect
(
doc
.
text
).
to
eq
(
"See (
#{
commit
.
reference_link_text
(
project
)
}
(builds).patch)"
)
expect
(
doc
.
text
).
to
eq
(
"See (
#{
commit
.
reference_link_text
(
project
)
}
(builds).patch)"
)
end
end
end
end
context
'group context'
do
let
(
:context
)
{
{
project:
nil
,
group:
create
(
:group
)
}
}
it
'ignores internal references'
do
exp
=
act
=
"See
#{
commit
.
id
}
"
expect
(
reference_filter
(
act
,
context
).
to_html
).
to
eq
exp
end
it
'links to a valid reference'
do
act
=
"See
#{
project
.
full_path
}
@
#{
commit
.
id
}
"
expect
(
reference_filter
(
act
,
context
).
css
(
'a'
).
first
.
text
).
to
eql
(
"
#{
project
.
full_path
}
@
#{
commit
.
short_id
}
"
)
end
end
end
end
spec/lib/banzai/filter/milestone_reference_filter_spec.rb
View file @
46302c8c
...
@@ -343,14 +343,22 @@ describe Banzai::Filter::MilestoneReferenceFilter do
...
@@ -343,14 +343,22 @@ describe Banzai::Filter::MilestoneReferenceFilter do
end
end
context
'group context'
do
context
'group context'
do
let
(
:context
)
{
{
project:
nil
,
group:
create
(
:group
)
}
}
let
(
:milestone
)
{
create
(
:milestone
,
project:
project
)
}
it
'links to a valid reference'
do
it
'links to a valid reference'
do
milestone
=
create
(
:milestone
,
project:
project
)
reference
=
"
#{
project
.
full_path
}
%
#{
milestone
.
iid
}
"
reference
=
"
#{
project
.
full_path
}
%
#{
milestone
.
iid
}
"
result
=
reference_filter
(
"See
#{
reference
}
"
,
{
project:
nil
,
group:
create
(
:group
)
}
)
result
=
reference_filter
(
"See
#{
reference
}
"
,
context
)
expect
(
result
.
css
(
'a'
).
first
.
attr
(
'href'
)).
to
eq
(
urls
.
milestone_url
(
milestone
))
expect
(
result
.
css
(
'a'
).
first
.
attr
(
'href'
)).
to
eq
(
urls
.
milestone_url
(
milestone
))
end
end
it
'ignores internal references'
do
exp
=
act
=
"See %
#{
milestone
.
iid
}
"
expect
(
reference_filter
(
act
,
context
).
to_html
).
to
eq
exp
end
end
end
context
'when milestone is open'
do
context
'when milestone is open'
do
...
...
spec/lib/banzai/filter/snippet_reference_filter_spec.rb
View file @
46302c8c
...
@@ -210,5 +210,11 @@ describe Banzai::Filter::SnippetReferenceFilter do
...
@@ -210,5 +210,11 @@ describe Banzai::Filter::SnippetReferenceFilter do
expect
(
result
.
css
(
'a'
).
first
.
attr
(
'href'
)).
to
eq
(
urls
.
project_snippet_url
(
project
,
snippet
))
expect
(
result
.
css
(
'a'
).
first
.
attr
(
'href'
)).
to
eq
(
urls
.
project_snippet_url
(
project
,
snippet
))
end
end
it
'ignores internal references'
do
exp
=
act
=
"See $
#{
snippet
.
id
}
"
expect
(
reference_filter
(
act
,
project:
nil
,
group:
create
(
:group
)).
to_html
).
to
eq
exp
end
end
end
end
end
spec/lib/banzai/reference_parser/commit_range_parser_spec.rb
View file @
46302c8c
...
@@ -107,12 +107,9 @@ describe Banzai::ReferenceParser::CommitRangeParser do
...
@@ -107,12 +107,9 @@ describe Banzai::ReferenceParser::CommitRangeParser do
describe
'#find_object'
do
describe
'#find_object'
do
let
(
:range
)
{
double
(
:range
)
}
let
(
:range
)
{
double
(
:range
)
}
before
do
expect
(
CommitRange
).
to
receive
(
:new
).
and_return
(
range
)
end
context
'when the range has valid commits'
do
context
'when the range has valid commits'
do
it
'returns the commit range'
do
it
'returns the commit range'
do
expect
(
CommitRange
).
to
receive
(
:new
).
and_return
(
range
)
expect
(
range
).
to
receive
(
:valid_commits?
).
and_return
(
true
)
expect
(
range
).
to
receive
(
:valid_commits?
).
and_return
(
true
)
expect
(
subject
.
find_object
(
project
,
'123..456'
)).
to
eq
(
range
)
expect
(
subject
.
find_object
(
project
,
'123..456'
)).
to
eq
(
range
)
...
@@ -121,10 +118,19 @@ describe Banzai::ReferenceParser::CommitRangeParser do
...
@@ -121,10 +118,19 @@ describe Banzai::ReferenceParser::CommitRangeParser do
context
'when the range does not have any valid commits'
do
context
'when the range does not have any valid commits'
do
it
'returns nil'
do
it
'returns nil'
do
expect
(
CommitRange
).
to
receive
(
:new
).
and_return
(
range
)
expect
(
range
).
to
receive
(
:valid_commits?
).
and_return
(
false
)
expect
(
range
).
to
receive
(
:valid_commits?
).
and_return
(
false
)
expect
(
subject
.
find_object
(
project
,
'123..456'
)).
to
be_nil
expect
(
subject
.
find_object
(
project
,
'123..456'
)).
to
be_nil
end
end
end
end
context
'group context'
do
it
'returns nil'
do
group
=
create
(
:group
)
expect
(
subject
.
find_object
(
group
,
'123..456'
)).
to
be_nil
end
end
end
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