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
37f0b600
Commit
37f0b600
authored
Sep 17, 2012
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Another RefExtractor refactor
parent
94af622c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
83 additions
and
58 deletions
+83
-58
lib/ref_extractor.rb
lib/ref_extractor.rb
+40
-34
spec/lib/ref_extractor_spec.rb
spec/lib/ref_extractor_spec.rb
+43
-24
No files found.
lib/ref_extractor.rb
View file @
37f0b600
# Module providing an extract_ref method for controllers working with Git
# Module providing an extract_ref method for controllers working with Git
# tree-ish + path params
# tree-ish + path params
#
# Given a string containing both a Git ref - such as a branch or tag - and a
# filesystem path joined by forward slashes, attempts to separate the two.
#
# Expects a @project instance variable to contain the active project. Used to
# check the input against a list of valid repository refs.
#
# Examples
#
# # No @project available
# extract_ref('master')
# # => ['', '']
#
# extract_ref('master')
# # => ['master', '/']
#
# extract_ref("f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG")
# # => ['f4b14494ef6abf3d144c28e4af0c20143383e062', '/CHANGELOG']
#
# extract_ref("v2.0.0/README.md")
# # => ['v2.0.0', '/README.md']
#
# extract_ref('issues/1234/app/models/project.rb')
# # => ['issues/1234', '/app/models/project.rb']
#
# # Given an invalid branch, we fall back to just splitting on the first slash
# extract_ref('non/existent/branch/README.md')
# # => ['non', '/existent/branch/README.md']
#
# Returns an Array where the first value is the tree-ish and the second is the
# path
module
RefExtractor
module
RefExtractor
# Thrown when given an invalid path
class
InvalidPathError
<
StandardError
;
end
# Given a string containing both a Git ref - such as a branch or tag - and a
# filesystem path joined by forward slashes, attempts to separate the two.
#
# Expects a @project instance variable to contain the active project. Used to
# check the input against a list of valid repository refs.
#
# Examples
#
# # No @project available
# extract_ref('master')
# # => ['', '']
#
# extract_ref('master')
# # => ['master', '']
#
# extract_ref("f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG")
# # => ['f4b14494ef6abf3d144c28e4af0c20143383e062', 'CHANGELOG']
#
# extract_ref("v2.0.0/README.md")
# # => ['v2.0.0', 'README.md']
#
# extract_ref('issues/1234/app/models/project.rb')
# # => ['issues/1234', 'app/models/project.rb']
#
# # Given an invalid branch, we fall back to just splitting on the first slash
# extract_ref('non/existent/branch/README.md')
# # => ['non', 'existent/branch/README.md']
#
# Returns an Array where the first value is the tree-ish and the second is the
# path
def
extract_ref
(
input
)
def
extract_ref
(
input
)
pair
=
[
''
,
''
]
pair
=
[
''
,
''
]
...
@@ -41,24 +43,28 @@ module RefExtractor
...
@@ -41,24 +43,28 @@ module RefExtractor
# If the ref appears to be a SHA, we're done, just split the string
# If the ref appears to be a SHA, we're done, just split the string
pair
=
$~
.
captures
pair
=
$~
.
captures
else
else
# Otherwise, attempt to detect the ref using a list of the project's
# branches and tags
# Append a trailing slash if we only get a ref and no file path
# Append a trailing slash if we only get a ref and no file path
id
=
input
id
=
input
id
+=
'/'
unless
id
.
include?
(
'/'
)
id
+=
'/'
unless
id
.
include?
(
'/'
)
# Otherwise, attempt to detect the ref using a list of the project's
# branches and tags
valid_refs
=
@project
.
branches
+
@project
.
tags
valid_refs
=
@project
.
branches
+
@project
.
tags
valid_refs
.
select!
{
|
v
|
id
.
start_with?
(
"
#{
v
}
/"
)
}
valid_refs
.
select!
{
|
v
|
id
.
start_with?
(
"
#{
v
}
/"
)
}
if
valid_refs
.
length
!=
1
if
valid_refs
.
length
!=
1
# No exact ref match, so just try our best
# No exact ref match, so just try our best
pair
=
id
.
match
(
/([^\/]+)(.
+
)/
).
captures
pair
=
id
.
match
(
/([^\/]+)(.
*
)/
).
captures
else
else
# Partition the string into the ref and the path, ignoring the empty first value
# Partition the string into the ref and the path, ignoring the empty first value
pair
=
id
.
partition
(
valid_refs
.
first
)[
1
..-
1
]
pair
=
id
.
partition
(
valid_refs
.
first
)[
1
..-
1
]
end
end
end
end
# Remove leading slash from path
pair
[
1
].
gsub!
(
/^\//
,
''
)
pair
pair
end
end
end
end
spec/lib/ref_extractor_spec.rb
View file @
37f0b600
...
@@ -11,29 +11,48 @@ describe RefExtractor do
...
@@ -11,29 +11,48 @@ describe RefExtractor do
project
.
stub
(
:tags
).
and_return
([
'v1.0.0'
,
'v2.0.0'
])
project
.
stub
(
:tags
).
and_return
([
'v1.0.0'
,
'v2.0.0'
])
end
end
it
"extracts a ref without a path"
do
describe
'#extract_ref'
do
extract_ref
(
'master'
).
should
==
[
'master'
,
'/'
]
it
"returns an empty pair when no @project is set"
do
@project
=
nil
extract_ref
(
'master/CHANGELOG'
).
should
==
[
''
,
''
]
end
end
it
"extracts a valid branch ref"
do
context
"without a path"
do
extract_ref
(
'foo/bar/baz/CHANGELOG'
).
should
==
[
'foo/bar/baz'
,
'/CHANGELOG'
]
it
"extracts a valid branch"
do
extract_ref
(
'master'
).
should
==
[
'master'
,
''
]
end
end
it
"extracts a valid tag ref
"
do
it
"extracts a valid tag
"
do
extract_ref
(
'v2.0.0/CHANGELOG'
).
should
==
[
'v2.0.0'
,
'/CHANGELOG
'
]
extract_ref
(
'v2.0.0'
).
should
==
[
'v2.0.0'
,
'
'
]
end
end
it
"extracts a valid commit ref
"
do
it
"extracts a valid commit ref without a path
"
do
extract_ref
(
'f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG
'
).
should
==
extract_ref
(
'f4b14494ef6abf3d144c28e4af0c20143383e062
'
).
should
==
[
'f4b14494ef6abf3d144c28e4af0c20143383e062'
,
'/CHANGELOG
'
]
[
'f4b14494ef6abf3d144c28e4af0c20143383e062'
,
'
'
]
end
end
it
"falls back to a primitive split for an invalid ref"
do
it
"falls back to a primitive split for an invalid ref"
do
extract_ref
(
'stable/CHANGELOG'
).
should
==
[
'stable'
,
'/CHANGELOG'
]
extract_ref
(
'stable'
).
should
==
[
'stable'
,
''
]
end
end
end
it
"returns an empty pair when no @project is set"
do
context
"with a path"
do
@project
=
nil
it
"extracts a valid branch"
do
extract_ref
(
'master/CHANGELOG'
).
should
==
[
''
,
''
]
extract_ref
(
'foo/bar/baz/CHANGELOG'
).
should
==
[
'foo/bar/baz'
,
'CHANGELOG'
]
end
it
"extracts a valid tag"
do
extract_ref
(
'v2.0.0/CHANGELOG'
).
should
==
[
'v2.0.0'
,
'CHANGELOG'
]
end
it
"extracts a valid commit SHA"
do
extract_ref
(
'f4b14494ef6abf3d144c28e4af0c20143383e062/CHANGELOG'
).
should
==
[
'f4b14494ef6abf3d144c28e4af0c20143383e062'
,
'CHANGELOG'
]
end
it
"falls back to a primitive split for an invalid ref"
do
extract_ref
(
'stable/CHANGELOG'
).
should
==
[
'stable'
,
'CHANGELOG'
]
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