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
faa9bd40
Commit
faa9bd40
authored
Oct 09, 2017
by
Alejandro Rodríguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create a Gitlab::Git submodule for conlict-related files
Rename classes to (hopefully) clearer names while we're doing that.
parent
3fcab51e
Show whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
73 additions
and
62 deletions
+73
-62
conflicts_controller.rb
...ntrollers/projects/merge_requests/conflicts_controller.rb
+1
-1
list_service.rb
app/services/merge_requests/conflicts/list_service.rb
+1
-1
commits.rb
lib/api/commits.rb
+1
-1
commits.rb
lib/api/v3/commits.rb
+1
-1
comment.rb
lib/github/representation/comment.rb
+1
-1
importer.rb
lib/gitlab/bitbucket_import/importer.rb
+1
-1
file.rb
lib/gitlab/conflict/file.rb
+5
-2
file_collection.rb
lib/gitlab/conflict/file_collection.rb
+4
-4
file.rb
lib/gitlab/diff/file.rb
+1
-1
file.rb
lib/gitlab/git/conflict/file.rb
+8
-6
line_code.rb
lib/gitlab/git/conflict/line_code.rb
+3
-1
parser.rb
lib/gitlab/git/conflict/parser.rb
+3
-1
resolver.rb
lib/gitlab/git/conflict/resolver.rb
+4
-2
comment_formatter.rb
lib/gitlab/github_import/comment_formatter.rb
+1
-1
conflicts_controller_spec.rb
...lers/projects/merge_requests/conflicts_controller_spec.rb
+4
-4
file_spec.rb
spec/lib/gitlab/conflict/file_spec.rb
+4
-4
position_spec.rb
spec/lib/gitlab/diff/position_spec.rb
+10
-10
parser_spec.rb
spec/lib/gitlab/git/conflict/parser_spec.rb
+13
-13
diff_note_spec.rb
spec/models/diff_note_spec.rb
+1
-1
resolve_service_spec.rb
...services/merge_requests/conflicts/resolve_service_spec.rb
+6
-6
No files found.
app/controllers/projects/merge_requests/conflicts_controller.rb
View file @
faa9bd40
...
@@ -53,7 +53,7 @@ class Projects::MergeRequests::ConflictsController < Projects::MergeRequests::Ap
...
@@ -53,7 +53,7 @@ class Projects::MergeRequests::ConflictsController < Projects::MergeRequests::Ap
flash
[
:notice
]
=
'All merge conflicts were resolved. The merge request can now be merged.'
flash
[
:notice
]
=
'All merge conflicts were resolved. The merge request can now be merged.'
render
json:
{
redirect_to:
project_merge_request_url
(
@project
,
@merge_request
,
resolved_conflicts:
true
)
}
render
json:
{
redirect_to:
project_merge_request_url
(
@project
,
@merge_request
,
resolved_conflicts:
true
)
}
rescue
Gitlab
::
Git
::
Merge
::
ResolutionError
=>
e
rescue
Gitlab
::
Git
::
Conflict
::
Resolver
::
ResolutionError
=>
e
render
status: :bad_request
,
json:
{
message:
e
.
message
}
render
status: :bad_request
,
json:
{
message:
e
.
message
}
end
end
end
end
...
...
app/services/merge_requests/conflicts/list_service.rb
View file @
faa9bd40
...
@@ -23,7 +23,7 @@ module MergeRequests
...
@@ -23,7 +23,7 @@ module MergeRequests
# when there are no conflict files.
# when there are no conflict files.
conflicts
.
files
.
each
(
&
:lines
)
conflicts
.
files
.
each
(
&
:lines
)
@conflicts_can_be_resolved_in_ui
=
conflicts
.
files
.
length
>
0
@conflicts_can_be_resolved_in_ui
=
conflicts
.
files
.
length
>
0
rescue
Rugged
::
OdbError
,
Gitlab
::
Git
::
Conflict
Parser
::
UnresolvableError
,
Gitlab
::
Git
::
Merge
::
ConflictSideMissing
rescue
Rugged
::
OdbError
,
Gitlab
::
Git
::
Conflict
::
Parser
::
UnresolvableError
,
Gitlab
::
Git
::
Conflict
::
Resolver
::
ConflictSideMissing
@conflicts_can_be_resolved_in_ui
=
false
@conflicts_can_be_resolved_in_ui
=
false
end
end
end
end
...
...
lib/api/commits.rb
View file @
faa9bd40
...
@@ -186,7 +186,7 @@ module API
...
@@ -186,7 +186,7 @@ module API
lines
.
each
do
|
line
|
lines
.
each
do
|
line
|
next
unless
line
.
new_pos
==
params
[
:line
]
&&
line
.
type
==
params
[
:line_type
]
next
unless
line
.
new_pos
==
params
[
:line
]
&&
line
.
type
==
params
[
:line_type
]
break
opts
[
:line_code
]
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
diff
.
new_path
,
line
.
new_pos
,
line
.
old_pos
)
break
opts
[
:line_code
]
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
diff
.
new_path
,
line
.
new_pos
,
line
.
old_pos
)
end
end
break
if
opts
[
:line_code
]
break
if
opts
[
:line_code
]
...
...
lib/api/v3/commits.rb
View file @
faa9bd40
...
@@ -173,7 +173,7 @@ module API
...
@@ -173,7 +173,7 @@ module API
lines
.
each
do
|
line
|
lines
.
each
do
|
line
|
next
unless
line
.
new_pos
==
params
[
:line
]
&&
line
.
type
==
params
[
:line_type
]
next
unless
line
.
new_pos
==
params
[
:line
]
&&
line
.
type
==
params
[
:line_type
]
break
opts
[
:line_code
]
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
diff
.
new_path
,
line
.
new_pos
,
line
.
old_pos
)
break
opts
[
:line_code
]
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
diff
.
new_path
,
line
.
new_pos
,
line
.
old_pos
)
end
end
break
if
opts
[
:line_code
]
break
if
opts
[
:line_code
]
...
...
lib/github/representation/comment.rb
View file @
faa9bd40
...
@@ -23,7 +23,7 @@ module Github
...
@@ -23,7 +23,7 @@ module Github
private
private
def
generate_line_code
(
line
)
def
generate_line_code
(
line
)
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
file_path
,
line
.
new_pos
,
line
.
old_pos
)
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
file_path
,
line
.
new_pos
,
line
.
old_pos
)
end
end
def
on_diff?
def
on_diff?
...
...
lib/gitlab/bitbucket_import/importer.rb
View file @
faa9bd40
...
@@ -241,7 +241,7 @@ module Gitlab
...
@@ -241,7 +241,7 @@ module Gitlab
end
end
def
generate_line_code
(
pr_comment
)
def
generate_line_code
(
pr_comment
)
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
pr_comment
.
file_path
,
pr_comment
.
new_pos
,
pr_comment
.
old_pos
)
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
pr_comment
.
file_path
,
pr_comment
.
new_pos
,
pr_comment
.
old_pos
)
end
end
def
pull_request_comment_attributes
(
comment
)
def
pull_request_comment_attributes
(
comment
)
...
...
lib/gitlab/conflict/file.rb
View file @
faa9bd40
...
@@ -6,7 +6,10 @@ module Gitlab
...
@@ -6,7 +6,10 @@ module Gitlab
CONTEXT_LINES
=
3
CONTEXT_LINES
=
3
attr_reader
:merge_request
,
:raw
attr_reader
:merge_request
# 'raw' holds the Gitlab::Git::Conflict::File that this instance wraps
attr_reader
:raw
delegate
:type
,
:content
,
:their_path
,
:our_path
,
:our_mode
,
:our_blob
,
:repository
,
to: :raw
delegate
:type
,
:content
,
:their_path
,
:our_path
,
:our_mode
,
:our_blob
,
:repository
,
to: :raw
...
@@ -107,7 +110,7 @@ module Gitlab
...
@@ -107,7 +110,7 @@ module Gitlab
end
end
def
line_code
(
line
)
def
line_code
(
line
)
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
our_path
,
line
.
new_pos
,
line
.
old_pos
)
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
our_path
,
line
.
new_pos
,
line
.
old_pos
)
end
end
def
create_match_line
(
line
)
def
create_match_line
(
line
)
...
...
lib/gitlab/conflict/file_collection.rb
View file @
faa9bd40
module
Gitlab
module
Gitlab
module
Conflict
module
Conflict
class
FileCollection
class
FileCollection
attr_reader
:merge_request
,
:
merge
attr_reader
:merge_request
,
:
resolver
def
initialize
(
merge_request
)
def
initialize
(
merge_request
)
source_repo
=
merge_request
.
source_project
.
repository
.
raw
source_repo
=
merge_request
.
source_project
.
repository
.
raw
our_commit
=
merge_request
.
source_branch_head
.
raw
our_commit
=
merge_request
.
source_branch_head
.
raw
their_commit
=
merge_request
.
target_branch_head
.
raw
their_commit
=
merge_request
.
target_branch_head
.
raw
target_repo
=
merge_request
.
target_project
.
repository
.
raw
target_repo
=
merge_request
.
target_project
.
repository
.
raw
@
merge
=
Gitlab
::
Git
::
Merge
.
new
(
source_repo
,
our_commit
,
target_repo
,
their_commit
)
@
resolver
=
Gitlab
::
Git
::
Conflict
::
Resolver
.
new
(
source_repo
,
our_commit
,
target_repo
,
their_commit
)
@merge_request
=
merge_request
@merge_request
=
merge_request
end
end
...
@@ -18,11 +18,11 @@ module Gitlab
...
@@ -18,11 +18,11 @@ module Gitlab
target_branch:
merge_request
.
target_branch
,
target_branch:
merge_request
.
target_branch
,
commit_message:
commit_message
||
default_commit_message
commit_message:
commit_message
||
default_commit_message
}
}
merge
.
resolve_conflicts
(
user
,
files
,
args
)
resolver
.
resolve_conflicts
(
user
,
files
,
args
)
end
end
def
files
def
files
@files
||=
merge
.
conflicts
.
map
do
|
conflict_file
|
@files
||=
resolver
.
conflicts
.
map
do
|
conflict_file
|
Gitlab
::
Conflict
::
File
.
new
(
conflict_file
,
merge_request:
merge_request
)
Gitlab
::
Conflict
::
File
.
new
(
conflict_file
,
merge_request:
merge_request
)
end
end
end
end
...
...
lib/gitlab/diff/file.rb
View file @
faa9bd40
...
@@ -49,7 +49,7 @@ module Gitlab
...
@@ -49,7 +49,7 @@ module Gitlab
def
line_code
(
line
)
def
line_code
(
line
)
return
if
line
.
meta?
return
if
line
.
meta?
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
file_path
,
line
.
new_pos
,
line
.
old_pos
)
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
file_path
,
line
.
new_pos
,
line
.
old_pos
)
end
end
def
line_for_line_code
(
code
)
def
line_for_line_code
(
code
)
...
...
lib/gitlab/git/conflict
_
file.rb
→
lib/gitlab/git/conflict
/
file.rb
View file @
faa9bd40
module
Gitlab
module
Gitlab
module
Git
module
Git
class
ConflictFile
module
Conflict
class
File
attr_reader
:content
,
:their_path
,
:our_path
,
:our_mode
,
:repository
attr_reader
:content
,
:their_path
,
:our_path
,
:our_mode
,
:repository
def
initialize
(
repository
,
commit_oid
,
conflict
,
content
)
def
initialize
(
repository
,
commit_oid
,
conflict
,
content
)
...
@@ -17,10 +18,10 @@ module Gitlab
...
@@ -17,10 +18,10 @@ module Gitlab
begin
begin
@type
=
'text'
@type
=
'text'
@lines
=
Gitlab
::
Git
::
Conflict
Parser
.
parse
(
content
,
@lines
=
Gitlab
::
Git
::
Conflict
::
Parser
.
parse
(
content
,
our_path:
our_path
,
our_path:
our_path
,
their_path:
their_path
)
their_path:
their_path
)
rescue
Gitlab
::
Git
::
Conflict
Parser
::
ParserError
rescue
Gitlab
::
Git
::
Conflict
::
Parser
::
ParserError
@type
=
'text-editor'
@type
=
'text-editor'
@lines
=
nil
@lines
=
nil
end
end
...
@@ -45,7 +46,7 @@ module Gitlab
...
@@ -45,7 +46,7 @@ module Gitlab
end
end
def
line_code
(
line
)
def
line_code
(
line
)
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
our_path
,
line
[
:line_new
],
line
[
:line_old
])
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
our_path
,
line
[
:line_new
],
line
[
:line_old
])
end
end
def
resolve_lines
(
resolution
)
def
resolve_lines
(
resolution
)
...
@@ -65,7 +66,7 @@ module Gitlab
...
@@ -65,7 +66,7 @@ module Gitlab
when
'origin'
when
'origin'
next
unless
line
[
:type
]
==
'old'
next
unless
line
[
:type
]
==
'old'
else
else
raise
Gitlab
::
Git
::
Merge
::
ResolutionError
,
"Missing resolution for section ID:
#{
section_id
}
"
raise
Gitlab
::
Git
::
Conflict
::
Resolver
::
ResolutionError
,
"Missing resolution for section ID:
#{
section_id
}
"
end
end
line
line
...
@@ -74,11 +75,12 @@ module Gitlab
...
@@ -74,11 +75,12 @@ module Gitlab
def
resolve_content
(
resolution
)
def
resolve_content
(
resolution
)
if
resolution
==
content
if
resolution
==
content
raise
Gitlab
::
Git
::
Merge
::
ResolutionError
,
"Resolved content has no changes for file
#{
our_path
}
"
raise
Gitlab
::
Git
::
Conflict
::
Resolver
::
ResolutionError
,
"Resolved content has no changes for file
#{
our_path
}
"
end
end
resolution
resolution
end
end
end
end
end
end
end
end
end
lib/gitlab/git/
diff_
line_code.rb
→
lib/gitlab/git/
conflict/
line_code.rb
View file @
faa9bd40
module
Gitlab
module
Gitlab
module
Git
module
Git
class
DiffLineCode
module
Conflict
class
LineCode
def
self
.
generate
(
file_path
,
new_line_position
,
old_line_position
)
def
self
.
generate
(
file_path
,
new_line_position
,
old_line_position
)
"
#{
Digest
::
SHA1
.
hexdigest
(
file_path
)
}
_
#{
old_line_position
}
_
#{
new_line_position
}
"
"
#{
Digest
::
SHA1
.
hexdigest
(
file_path
)
}
_
#{
old_line_position
}
_
#{
new_line_position
}
"
end
end
end
end
end
end
end
end
end
lib/gitlab/git/conflict
_
parser.rb
→
lib/gitlab/git/conflict
/
parser.rb
View file @
faa9bd40
module
Gitlab
module
Gitlab
module
Git
module
Git
class
ConflictParser
module
Conflict
class
Parser
UnresolvableError
=
Class
.
new
(
StandardError
)
UnresolvableError
=
Class
.
new
(
StandardError
)
UnmergeableFile
=
Class
.
new
(
UnresolvableError
)
UnmergeableFile
=
Class
.
new
(
UnresolvableError
)
UnsupportedEncoding
=
Class
.
new
(
UnresolvableError
)
UnsupportedEncoding
=
Class
.
new
(
UnresolvableError
)
...
@@ -86,4 +87,5 @@ module Gitlab
...
@@ -86,4 +87,5 @@ module Gitlab
end
end
end
end
end
end
end
end
end
lib/gitlab/git/
merge
.rb
→
lib/gitlab/git/
conflict/resolver
.rb
View file @
faa9bd40
module
Gitlab
module
Gitlab
module
Git
module
Git
class
Merge
module
Conflict
class
Resolver
ConflictSideMissing
=
Class
.
new
(
StandardError
)
ConflictSideMissing
=
Class
.
new
(
StandardError
)
ResolutionError
=
Class
.
new
(
StandardError
)
ResolutionError
=
Class
.
new
(
StandardError
)
...
@@ -20,7 +21,7 @@ module Gitlab
...
@@ -20,7 +21,7 @@ module Gitlab
target_index
.
conflicts
.
map
do
|
conflict
|
target_index
.
conflicts
.
map
do
|
conflict
|
raise
ConflictSideMissing
unless
conflict
[
:theirs
]
&&
conflict
[
:ours
]
raise
ConflictSideMissing
unless
conflict
[
:theirs
]
&&
conflict
[
:ours
]
Gitlab
::
Git
::
Conflict
File
.
new
(
Gitlab
::
Git
::
Conflict
::
File
.
new
(
@target_repository
,
@target_repository
,
@our_commit
.
oid
,
@our_commit
.
oid
,
conflict
,
conflict
,
...
@@ -86,4 +87,5 @@ module Gitlab
...
@@ -86,4 +87,5 @@ module Gitlab
end
end
end
end
end
end
end
end
end
lib/gitlab/github_import/comment_formatter.rb
View file @
faa9bd40
...
@@ -38,7 +38,7 @@ module Gitlab
...
@@ -38,7 +38,7 @@ module Gitlab
end
end
def
generate_line_code
(
line
)
def
generate_line_code
(
line
)
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
file_path
,
line
.
new_pos
,
line
.
old_pos
)
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
file_path
,
line
.
new_pos
,
line
.
old_pos
)
end
end
def
on_diff?
def
on_diff?
...
...
spec/controllers/projects/merge_requests/conflicts_controller_spec.rb
View file @
faa9bd40
...
@@ -17,8 +17,8 @@ describe Projects::MergeRequests::ConflictsController do
...
@@ -17,8 +17,8 @@ describe Projects::MergeRequests::ConflictsController do
describe
'GET show'
do
describe
'GET show'
do
context
'when the conflicts cannot be resolved in the UI'
do
context
'when the conflicts cannot be resolved in the UI'
do
before
do
before
do
allow
(
Gitlab
::
Git
::
ConflictParser
).
to
receive
(
:parse
)
allow
(
Gitlab
::
Git
::
Conflict
::
Parser
).
to
receive
(
:parse
)
.
and_raise
(
Gitlab
::
Git
::
ConflictParser
::
UnmergeableFile
)
.
and_raise
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnmergeableFile
)
get
:show
,
get
:show
,
namespace_id:
merge_request_with_conflicts
.
project
.
namespace
.
to_param
,
namespace_id:
merge_request_with_conflicts
.
project
.
namespace
.
to_param
,
...
@@ -109,8 +109,8 @@ describe Projects::MergeRequests::ConflictsController do
...
@@ -109,8 +109,8 @@ describe Projects::MergeRequests::ConflictsController do
context
'when the conflicts cannot be resolved in the UI'
do
context
'when the conflicts cannot be resolved in the UI'
do
before
do
before
do
allow
(
Gitlab
::
Git
::
ConflictParser
).
to
receive
(
:parse
)
allow
(
Gitlab
::
Git
::
Conflict
::
Parser
).
to
receive
(
:parse
)
.
and_raise
(
Gitlab
::
Git
::
ConflictParser
::
UnmergeableFile
)
.
and_raise
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnmergeableFile
)
conflict_for_path
(
'files/ruby/regex.rb'
)
conflict_for_path
(
'files/ruby/regex.rb'
)
end
end
...
...
spec/lib/gitlab/conflict/file_spec.rb
View file @
faa9bd40
...
@@ -10,7 +10,7 @@ describe Gitlab::Conflict::File do
...
@@ -10,7 +10,7 @@ describe Gitlab::Conflict::File do
let
(
:index
)
{
rugged
.
merge_commits
(
our_commit
,
their_commit
)
}
let
(
:index
)
{
rugged
.
merge_commits
(
our_commit
,
their_commit
)
}
let
(
:rugged_conflict
)
{
index
.
conflicts
.
last
}
let
(
:rugged_conflict
)
{
index
.
conflicts
.
last
}
let
(
:raw_conflict_content
)
{
index
.
merge_file
(
'files/ruby/regex.rb'
)[
:data
]
}
let
(
:raw_conflict_content
)
{
index
.
merge_file
(
'files/ruby/regex.rb'
)[
:data
]
}
let
(
:raw_conflict_file
)
{
Gitlab
::
Git
::
ConflictFile
.
new
(
repository
,
our_commit
.
oid
,
rugged_conflict
,
raw_conflict_content
)
}
let
(
:raw_conflict_file
)
{
Gitlab
::
Git
::
Conflict
::
File
.
new
(
repository
,
our_commit
.
oid
,
rugged_conflict
,
raw_conflict_content
)
}
let
(
:conflict_file
)
{
described_class
.
new
(
raw_conflict_file
,
merge_request:
merge_request
)
}
let
(
:conflict_file
)
{
described_class
.
new
(
raw_conflict_file
,
merge_request:
merge_request
)
}
describe
'#resolve_lines'
do
describe
'#resolve_lines'
do
...
@@ -54,13 +54,13 @@ describe Gitlab::Conflict::File do
...
@@ -54,13 +54,13 @@ describe Gitlab::Conflict::File do
invalid_hash
=
section_keys
.
map
{
|
key
|
[
key
,
'invalid'
]
}.
to_h
invalid_hash
=
section_keys
.
map
{
|
key
|
[
key
,
'invalid'
]
}.
to_h
expect
{
conflict_file
.
resolve_lines
({})
}
expect
{
conflict_file
.
resolve_lines
({})
}
.
to
raise_error
(
Gitlab
::
Git
::
Merge
::
ResolutionError
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Resolver
::
ResolutionError
)
expect
{
conflict_file
.
resolve_lines
(
empty_hash
)
}
expect
{
conflict_file
.
resolve_lines
(
empty_hash
)
}
.
to
raise_error
(
Gitlab
::
Git
::
Merge
::
ResolutionError
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Resolver
::
ResolutionError
)
expect
{
conflict_file
.
resolve_lines
(
invalid_hash
)
}
expect
{
conflict_file
.
resolve_lines
(
invalid_hash
)
}
.
to
raise_error
(
Gitlab
::
Git
::
Merge
::
ResolutionError
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Resolver
::
ResolutionError
)
end
end
end
end
...
...
spec/lib/gitlab/diff/position_spec.rb
View file @
faa9bd40
...
@@ -40,7 +40,7 @@ describe Gitlab::Diff::Position do
...
@@ -40,7 +40,7 @@ describe Gitlab::Diff::Position do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
0
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
0
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
end
end
...
@@ -108,7 +108,7 @@ describe Gitlab::Diff::Position do
...
@@ -108,7 +108,7 @@ describe Gitlab::Diff::Position do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
15
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
15
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
end
end
...
@@ -149,7 +149,7 @@ describe Gitlab::Diff::Position do
...
@@ -149,7 +149,7 @@ describe Gitlab::Diff::Position do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
subject
.
old_line
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
subject
.
old_line
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
end
end
...
@@ -189,7 +189,7 @@ describe Gitlab::Diff::Position do
...
@@ -189,7 +189,7 @@ describe Gitlab::Diff::Position do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
subject
.
file_path
,
13
,
subject
.
old_line
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
subject
.
file_path
,
13
,
subject
.
old_line
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
end
end
...
@@ -233,7 +233,7 @@ describe Gitlab::Diff::Position do
...
@@ -233,7 +233,7 @@ describe Gitlab::Diff::Position do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
5
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
5
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
end
end
...
@@ -274,7 +274,7 @@ describe Gitlab::Diff::Position do
...
@@ -274,7 +274,7 @@ describe Gitlab::Diff::Position do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
subject
.
old_line
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
subject
.
old_line
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
end
end
...
@@ -314,7 +314,7 @@ describe Gitlab::Diff::Position do
...
@@ -314,7 +314,7 @@ describe Gitlab::Diff::Position do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
subject
.
file_path
,
4
,
subject
.
old_line
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
subject
.
file_path
,
4
,
subject
.
old_line
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
end
end
...
@@ -357,7 +357,7 @@ describe Gitlab::Diff::Position do
...
@@ -357,7 +357,7 @@ describe Gitlab::Diff::Position do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
subject
.
file_path
,
0
,
subject
.
old_line
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
subject
.
file_path
,
0
,
subject
.
old_line
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
end
end
...
@@ -399,7 +399,7 @@ describe Gitlab::Diff::Position do
...
@@ -399,7 +399,7 @@ describe Gitlab::Diff::Position do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
0
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
subject
.
file_path
,
subject
.
new_line
,
0
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
end
end
...
@@ -447,7 +447,7 @@ describe Gitlab::Diff::Position do
...
@@ -447,7 +447,7 @@ describe Gitlab::Diff::Position do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
subject
.
file_path
,
0
,
subject
.
old_line
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
subject
.
file_path
,
0
,
subject
.
old_line
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
expect
(
subject
.
line_code
(
project
.
repository
)).
to
eq
(
line_code
)
end
end
...
...
spec/lib/gitlab/git/conflict
_
parser_spec.rb
→
spec/lib/gitlab/git/conflict
/
parser_spec.rb
View file @
faa9bd40
require
'spec_helper'
require
'spec_helper'
describe
Gitlab
::
Git
::
ConflictParser
do
describe
Gitlab
::
Git
::
Conflict
::
Parser
do
describe
'.parse'
do
describe
'.parse'
do
def
parse_text
(
text
)
def
parse_text
(
text
)
described_class
.
parse
(
text
,
our_path:
'README.md'
,
their_path:
'README.md'
)
described_class
.
parse
(
text
,
our_path:
'README.md'
,
their_path:
'README.md'
)
...
@@ -125,12 +125,12 @@ CONFLICT
...
@@ -125,12 +125,12 @@ CONFLICT
context
'when there is a non-start delimiter first'
do
context
'when there is a non-start delimiter first'
do
it
'raises UnexpectedDelimiter when there is a middle delimiter first'
do
it
'raises UnexpectedDelimiter when there is a middle delimiter first'
do
expect
{
parse_text
(
'======='
)
}
expect
{
parse_text
(
'======='
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
UnexpectedDelimiter
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnexpectedDelimiter
)
end
end
it
'raises UnexpectedDelimiter when there is an end delimiter first'
do
it
'raises UnexpectedDelimiter when there is an end delimiter first'
do
expect
{
parse_text
(
'>>>>>>> README.md'
)
}
expect
{
parse_text
(
'>>>>>>> README.md'
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
UnexpectedDelimiter
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnexpectedDelimiter
)
end
end
it
'does not raise when there is an end delimiter for a different path first'
do
it
'does not raise when there is an end delimiter for a different path first'
do
...
@@ -145,12 +145,12 @@ CONFLICT
...
@@ -145,12 +145,12 @@ CONFLICT
it
'raises UnexpectedDelimiter when it is followed by an end delimiter'
do
it
'raises UnexpectedDelimiter when it is followed by an end delimiter'
do
expect
{
parse_text
(
start_text
+
'>>>>>>> README.md'
+
end_text
)
}
expect
{
parse_text
(
start_text
+
'>>>>>>> README.md'
+
end_text
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
UnexpectedDelimiter
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnexpectedDelimiter
)
end
end
it
'raises UnexpectedDelimiter when it is followed by another start delimiter'
do
it
'raises UnexpectedDelimiter when it is followed by another start delimiter'
do
expect
{
parse_text
(
start_text
+
start_text
+
end_text
)
}
expect
{
parse_text
(
start_text
+
start_text
+
end_text
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
UnexpectedDelimiter
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnexpectedDelimiter
)
end
end
it
'does not raise when it is followed by a start delimiter for a different path'
do
it
'does not raise when it is followed by a start delimiter for a different path'
do
...
@@ -165,12 +165,12 @@ CONFLICT
...
@@ -165,12 +165,12 @@ CONFLICT
it
'raises UnexpectedDelimiter when it is followed by another middle delimiter'
do
it
'raises UnexpectedDelimiter when it is followed by another middle delimiter'
do
expect
{
parse_text
(
start_text
+
'======='
+
end_text
)
}
expect
{
parse_text
(
start_text
+
'======='
+
end_text
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
UnexpectedDelimiter
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnexpectedDelimiter
)
end
end
it
'raises UnexpectedDelimiter when it is followed by a start delimiter'
do
it
'raises UnexpectedDelimiter when it is followed by a start delimiter'
do
expect
{
parse_text
(
start_text
+
start_text
+
end_text
)
}
expect
{
parse_text
(
start_text
+
start_text
+
end_text
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
UnexpectedDelimiter
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnexpectedDelimiter
)
end
end
it
'does not raise when it is followed by a start delimiter for another path'
do
it
'does not raise when it is followed by a start delimiter for another path'
do
...
@@ -183,25 +183,25 @@ CONFLICT
...
@@ -183,25 +183,25 @@ CONFLICT
start_text
=
"<<<<<<< README.md
\n
=======
\n
"
start_text
=
"<<<<<<< README.md
\n
=======
\n
"
expect
{
parse_text
(
start_text
)
}
expect
{
parse_text
(
start_text
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
MissingEndDelimiter
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
MissingEndDelimiter
)
expect
{
parse_text
(
start_text
+
'>>>>>>> some-other-path.md'
)
}
expect
{
parse_text
(
start_text
+
'>>>>>>> some-other-path.md'
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
MissingEndDelimiter
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
MissingEndDelimiter
)
end
end
end
end
context
'other file types'
do
context
'other file types'
do
it
'raises UnmergeableFile when lines is blank, indicating a binary file'
do
it
'raises UnmergeableFile when lines is blank, indicating a binary file'
do
expect
{
parse_text
(
''
)
}
expect
{
parse_text
(
''
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
UnmergeableFile
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnmergeableFile
)
expect
{
parse_text
(
nil
)
}
expect
{
parse_text
(
nil
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
UnmergeableFile
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnmergeableFile
)
end
end
it
'raises UnmergeableFile when the file is over 200 KB'
do
it
'raises UnmergeableFile when the file is over 200 KB'
do
expect
{
parse_text
(
'a'
*
204801
)
}
expect
{
parse_text
(
'a'
*
204801
)
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
UnmergeableFile
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnmergeableFile
)
end
end
# All text from Rugged has an encoding of ASCII_8BIT, so force that in
# All text from Rugged has an encoding of ASCII_8BIT, so force that in
...
@@ -216,7 +216,7 @@ CONFLICT
...
@@ -216,7 +216,7 @@ CONFLICT
context
'when the file contains non-UTF-8 characters'
do
context
'when the file contains non-UTF-8 characters'
do
it
'raises UnsupportedEncoding'
do
it
'raises UnsupportedEncoding'
do
expect
{
parse_text
(
"a
\xC4\xFC
"
.
force_encoding
(
Encoding
::
ASCII_8BIT
))
}
expect
{
parse_text
(
"a
\xC4\xFC
"
.
force_encoding
(
Encoding
::
ASCII_8BIT
))
}
.
to
raise_error
(
Gitlab
::
Git
::
ConflictParser
::
UnsupportedEncoding
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Parser
::
UnsupportedEncoding
)
end
end
end
end
end
end
...
...
spec/models/diff_note_spec.rb
View file @
faa9bd40
...
@@ -105,7 +105,7 @@ describe DiffNote do
...
@@ -105,7 +105,7 @@ describe DiffNote do
describe
"#line_code"
do
describe
"#line_code"
do
it
"returns the correct line code"
do
it
"returns the correct line code"
do
line_code
=
Gitlab
::
Git
::
Diff
LineCode
.
generate
(
position
.
file_path
,
position
.
formatter
.
new_line
,
15
)
line_code
=
Gitlab
::
Git
::
Conflict
::
LineCode
.
generate
(
position
.
file_path
,
position
.
formatter
.
new_line
,
15
)
expect
(
subject
.
line_code
).
to
eq
(
line_code
)
expect
(
subject
.
line_code
).
to
eq
(
line_code
)
end
end
...
...
spec/services/merge_requests/conflicts/resolve_service_spec.rb
View file @
faa9bd40
...
@@ -204,16 +204,16 @@ describe MergeRequests::Conflicts::ResolveService do
...
@@ -204,16 +204,16 @@ describe MergeRequests::Conflicts::ResolveService do
it
'raises a ResolutionError error'
do
it
'raises a ResolutionError error'
do
expect
{
service
.
execute
(
user
,
invalid_params
)
}
expect
{
service
.
execute
(
user
,
invalid_params
)
}
.
to
raise_error
(
Gitlab
::
Git
::
Merge
::
ResolutionError
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Resolver
::
ResolutionError
)
end
end
end
end
context
'when the content of a file is unchanged'
do
context
'when the content of a file is unchanged'
do
let
(
:
merge
)
do
let
(
:
resolver
)
do
MergeRequests
::
Conflicts
::
ListService
.
new
(
merge_request
).
conflicts
.
merge
MergeRequests
::
Conflicts
::
ListService
.
new
(
merge_request
).
conflicts
.
resolver
end
end
let
(
:regex_conflict
)
do
let
(
:regex_conflict
)
do
merge
.
conflict_for_path
(
'files/ruby/regex.rb'
,
'files/ruby/regex.rb'
)
resolver
.
conflict_for_path
(
'files/ruby/regex.rb'
,
'files/ruby/regex.rb'
)
end
end
let
(
:invalid_params
)
do
let
(
:invalid_params
)
do
...
@@ -235,7 +235,7 @@ describe MergeRequests::Conflicts::ResolveService do
...
@@ -235,7 +235,7 @@ describe MergeRequests::Conflicts::ResolveService do
it
'raises a ResolutionError error'
do
it
'raises a ResolutionError error'
do
expect
{
service
.
execute
(
user
,
invalid_params
)
}
expect
{
service
.
execute
(
user
,
invalid_params
)
}
.
to
raise_error
(
Gitlab
::
Git
::
Merge
::
ResolutionError
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Resolver
::
ResolutionError
)
end
end
end
end
...
@@ -255,7 +255,7 @@ describe MergeRequests::Conflicts::ResolveService do
...
@@ -255,7 +255,7 @@ describe MergeRequests::Conflicts::ResolveService do
it
'raises a ResolutionError error'
do
it
'raises a ResolutionError error'
do
expect
{
service
.
execute
(
user
,
invalid_params
)
}
expect
{
service
.
execute
(
user
,
invalid_params
)
}
.
to
raise_error
(
Gitlab
::
Git
::
Merge
::
ResolutionError
)
.
to
raise_error
(
Gitlab
::
Git
::
Conflict
::
Resolver
::
ResolutionError
)
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