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
61f5c2e3
Commit
61f5c2e3
authored
Aug 02, 2018
by
Stan Hu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a comment when user can't be identified
parent
f2a99398
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
6 deletions
+20
-6
lib/gitlab/bitbucket_server_import/importer.rb
lib/gitlab/bitbucket_server_import/importer.rb
+10
-2
spec/lib/gitlab/bitbucket_server_import/importer_spec.rb
spec/lib/gitlab/bitbucket_server_import/importer_spec.rb
+10
-4
No files found.
lib/gitlab/bitbucket_server_import/importer.rb
View file @
61f5c2e3
...
@@ -298,7 +298,15 @@ module Gitlab
...
@@ -298,7 +298,15 @@ module Gitlab
end
end
def
pull_request_comment_attributes
(
comment
)
def
pull_request_comment_attributes
(
comment
)
note
=
author
=
find_user_id
(
comment
.
author_email
)
note
=
''
unless
author
author
=
project
.
creator_id
note
=
"*By
#{
comment
.
author_username
}
(
#{
comment
.
author_email
}
) on
#{
comment
.
created_at
}
*
\n\n
"
end
note
+=
# Provide some context for replying
# Provide some context for replying
if
comment
.
parent_comment
if
comment
.
parent_comment
">
#{
comment
.
parent_comment
.
note
.
truncate
(
80
)
}
\n\n
#{
comment
.
note
}
"
">
#{
comment
.
parent_comment
.
note
.
truncate
(
80
)
}
\n\n
#{
comment
.
note
}
"
...
@@ -309,7 +317,7 @@ module Gitlab
...
@@ -309,7 +317,7 @@ module Gitlab
{
{
project:
project
,
project:
project
,
note:
note
,
note:
note
,
author_id:
gitlab_user_id
(
comment
.
author_email
)
,
author_id:
author
,
created_at:
comment
.
created_at
,
created_at:
comment
.
created_at
,
updated_at:
comment
.
updated_at
updated_at:
comment
.
updated_at
}
}
...
...
spec/lib/gitlab/bitbucket_server_import/importer_spec.rb
View file @
61f5c2e3
...
@@ -73,6 +73,7 @@ describe Gitlab::BitbucketServerImport::Importer do
...
@@ -73,6 +73,7 @@ describe Gitlab::BitbucketServerImport::Importer do
BitbucketServer
::
Representation
::
Comment
,
BitbucketServer
::
Representation
::
Comment
,
note:
'Hello world'
,
note:
'Hello world'
,
author_email:
'unknown@gmail.com'
,
author_email:
'unknown@gmail.com'
,
author_username:
'The Flash'
,
comments:
[],
comments:
[],
created_at:
now
,
created_at:
now
,
updated_at:
now
,
updated_at:
now
,
...
@@ -105,7 +106,7 @@ describe Gitlab::BitbucketServerImport::Importer do
...
@@ -105,7 +106,7 @@ describe Gitlab::BitbucketServerImport::Importer do
merge_request
=
MergeRequest
.
first
merge_request
=
MergeRequest
.
first
expect
(
merge_request
.
notes
.
count
).
to
eq
(
1
)
expect
(
merge_request
.
notes
.
count
).
to
eq
(
1
)
note
=
merge_request
.
notes
.
first
note
=
merge_request
.
notes
.
first
expect
(
note
.
note
).
to
e
q
(
@pr_note
.
note
)
expect
(
note
.
note
).
to
e
nd_with
(
@pr_note
.
note
)
expect
(
note
.
author
).
to
eq
(
project
.
owner
)
expect
(
note
.
author
).
to
eq
(
project
.
owner
)
expect
(
note
.
created_at
).
to
eq
(
@pr_note
.
created_at
)
expect
(
note
.
created_at
).
to
eq
(
@pr_note
.
created_at
)
expect
(
note
.
updated_at
).
to
eq
(
@pr_note
.
created_at
)
expect
(
note
.
updated_at
).
to
eq
(
@pr_note
.
created_at
)
...
@@ -115,6 +116,7 @@ describe Gitlab::BitbucketServerImport::Importer do
...
@@ -115,6 +116,7 @@ describe Gitlab::BitbucketServerImport::Importer do
reply
=
instance_double
(
reply
=
instance_double
(
BitbucketServer
::
Representation
::
PullRequestComment
,
BitbucketServer
::
Representation
::
PullRequestComment
,
author_email:
'someuser@gitlab.com'
,
author_email:
'someuser@gitlab.com'
,
author_username:
'Batman'
,
note:
'I agree'
,
note:
'I agree'
,
created_at:
now
,
created_at:
now
,
updated_at:
now
)
updated_at:
now
)
...
@@ -130,6 +132,7 @@ describe Gitlab::BitbucketServerImport::Importer do
...
@@ -130,6 +132,7 @@ describe Gitlab::BitbucketServerImport::Importer do
new_pos:
4
,
new_pos:
4
,
note:
'Hello world'
,
note:
'Hello world'
,
author_email:
'unknown@gmail.com'
,
author_email:
'unknown@gmail.com'
,
author_username:
'Superman'
,
comments:
[
reply
],
comments:
[
reply
],
created_at:
now
,
created_at:
now
,
updated_at:
now
,
updated_at:
now
,
...
@@ -155,7 +158,7 @@ describe Gitlab::BitbucketServerImport::Importer do
...
@@ -155,7 +158,7 @@ describe Gitlab::BitbucketServerImport::Importer do
notes
=
merge_request
.
notes
.
order
(
:id
).
to_a
notes
=
merge_request
.
notes
.
order
(
:id
).
to_a
start_note
=
notes
.
first
start_note
=
notes
.
first
expect
(
start_note
.
type
).
to
eq
(
'DiffNote'
)
expect
(
start_note
.
type
).
to
eq
(
'DiffNote'
)
expect
(
start_note
.
note
).
to
e
q
(
inline_note
.
note
)
expect
(
start_note
.
note
).
to
e
nd_with
(
inline_note
.
note
)
expect
(
start_note
.
created_at
).
to
eq
(
inline_note
.
created_at
)
expect
(
start_note
.
created_at
).
to
eq
(
inline_note
.
created_at
)
expect
(
start_note
.
updated_at
).
to
eq
(
inline_note
.
updated_at
)
expect
(
start_note
.
updated_at
).
to
eq
(
inline_note
.
updated_at
)
expect
(
start_note
.
position
.
base_sha
).
to
eq
(
inline_note
.
from_sha
)
expect
(
start_note
.
position
.
base_sha
).
to
eq
(
inline_note
.
from_sha
)
...
@@ -165,8 +168,9 @@ describe Gitlab::BitbucketServerImport::Importer do
...
@@ -165,8 +168,9 @@ describe Gitlab::BitbucketServerImport::Importer do
expect
(
start_note
.
position
.
new_line
).
to
eq
(
inline_note
.
new_pos
)
expect
(
start_note
.
position
.
new_line
).
to
eq
(
inline_note
.
new_pos
)
reply_note
=
notes
.
last
reply_note
=
notes
.
last
# Make sure reply context is included
# Make sure author and reply context is included
expect
(
reply_note
.
note
).
to
eq
(
">
#{
inline_note
.
note
}
\n\n
#{
reply
.
note
}
"
)
expect
(
reply_note
.
note
).
to
start_with
(
"*By
#{
reply
.
author_username
}
(
#{
reply
.
author_email
}
) on
#{
reply
.
created_at
}
*
\n\n
"
)
expect
(
reply_note
.
note
).
to
end_with
(
">
#{
inline_note
.
note
}
\n\n
#{
reply
.
note
}
"
)
expect
(
reply_note
.
author
).
to
eq
(
project
.
owner
)
expect
(
reply_note
.
author
).
to
eq
(
project
.
owner
)
expect
(
reply_note
.
created_at
).
to
eq
(
reply
.
created_at
)
expect
(
reply_note
.
created_at
).
to
eq
(
reply
.
created_at
)
expect
(
reply_note
.
updated_at
).
to
eq
(
reply
.
created_at
)
expect
(
reply_note
.
updated_at
).
to
eq
(
reply
.
created_at
)
...
@@ -181,6 +185,7 @@ describe Gitlab::BitbucketServerImport::Importer do
...
@@ -181,6 +185,7 @@ describe Gitlab::BitbucketServerImport::Importer do
reply
=
instance_double
(
reply
=
instance_double
(
BitbucketServer
::
Representation
::
Comment
,
BitbucketServer
::
Representation
::
Comment
,
author_email:
'someuser@gitlab.com'
,
author_email:
'someuser@gitlab.com'
,
author_username:
'Aquaman'
,
note:
'I agree'
,
note:
'I agree'
,
created_at:
now
,
created_at:
now
,
updated_at:
now
)
updated_at:
now
)
...
@@ -196,6 +201,7 @@ describe Gitlab::BitbucketServerImport::Importer do
...
@@ -196,6 +201,7 @@ describe Gitlab::BitbucketServerImport::Importer do
new_pos:
9
,
new_pos:
9
,
note:
'This is a note with an invalid line position.'
,
note:
'This is a note with an invalid line position.'
,
author_email:
project
.
owner
.
email
,
author_email:
project
.
owner
.
email
,
author_username:
'Owner'
,
comments:
[
reply
],
comments:
[
reply
],
created_at:
now
,
created_at:
now
,
updated_at:
now
,
updated_at:
now
,
...
...
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