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
0
Merge Requests
0
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
Tatuya Kamada
gitlab-ce
Commits
0a1535a9
Commit
0a1535a9
authored
Aug 08, 2016
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prefixes removed branches name with PR number when importing PR from GH
parent
44a196f8
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
51 additions
and
14 deletions
+51
-14
lib/gitlab/github_import/branch_formatter.rb
lib/gitlab/github_import/branch_formatter.rb
+0
-4
lib/gitlab/github_import/pull_request_formatter.rb
lib/gitlab/github_import/pull_request_formatter.rb
+14
-2
spec/lib/gitlab/github_import/branch_formatter_spec.rb
spec/lib/gitlab/github_import/branch_formatter_spec.rb
+0
-8
spec/lib/gitlab/github_import/pull_request_formatter_spec.rb
spec/lib/gitlab/github_import/pull_request_formatter_spec.rb
+37
-0
No files found.
lib/gitlab/github_import/branch_formatter.rb
View file @
0a1535a9
...
@@ -7,10 +7,6 @@ module Gitlab
...
@@ -7,10 +7,6 @@ module Gitlab
branch_exists?
&&
commit_exists?
branch_exists?
&&
commit_exists?
end
end
def
name
ref
end
def
valid?
def
valid?
repo
.
present?
repo
.
present?
end
end
...
...
lib/gitlab/github_import/pull_request_formatter.rb
View file @
0a1535a9
module
Gitlab
module
Gitlab
module
GithubImport
module
GithubImport
class
PullRequestFormatter
<
BaseFormatter
class
PullRequestFormatter
<
BaseFormatter
delegate
:exists?
,
:
name
,
:project
,
:repo
,
:sha
,
to: :source_branch
,
prefix:
true
delegate
:exists?
,
:
project
,
:ref
,
:repo
,
:sha
,
to: :source_branch
,
prefix:
true
delegate
:exists?
,
:
name
,
:project
,
:repo
,
:sha
,
to: :target_branch
,
prefix:
true
delegate
:exists?
,
:
project
,
:ref
,
:repo
,
:sha
,
to: :target_branch
,
prefix:
true
def
attributes
def
attributes
{
{
...
@@ -40,10 +40,22 @@ module Gitlab
...
@@ -40,10 +40,22 @@ module Gitlab
@source_branch
||=
BranchFormatter
.
new
(
project
,
raw_data
.
head
)
@source_branch
||=
BranchFormatter
.
new
(
project
,
raw_data
.
head
)
end
end
def
source_branch_name
@source_branch_name
||=
begin
source_branch_exists?
?
source_branch_ref
:
"pull/
#{
number
}
/
#{
source_branch_ref
}
"
end
end
def
target_branch
def
target_branch
@target_branch
||=
BranchFormatter
.
new
(
project
,
raw_data
.
base
)
@target_branch
||=
BranchFormatter
.
new
(
project
,
raw_data
.
base
)
end
end
def
target_branch_name
@target_branch_name
||=
begin
target_branch_exists?
?
target_branch_ref
:
"pull/
#{
number
}
/
#{
target_branch_ref
}
"
end
end
private
private
def
assigned?
def
assigned?
...
...
spec/lib/gitlab/github_import/branch_formatter_spec.rb
View file @
0a1535a9
...
@@ -32,14 +32,6 @@ describe Gitlab::GithubImport::BranchFormatter, lib: true do
...
@@ -32,14 +32,6 @@ describe Gitlab::GithubImport::BranchFormatter, lib: true do
end
end
end
end
describe
'#name'
do
it
'returns raw ref'
do
branch
=
described_class
.
new
(
project
,
double
(
raw
))
expect
(
branch
.
name
).
to
eq
'feature'
end
end
describe
'#repo'
do
describe
'#repo'
do
it
'returns raw repo'
do
it
'returns raw repo'
do
branch
=
described_class
.
new
(
project
,
double
(
raw
))
branch
=
described_class
.
new
(
project
,
double
(
raw
))
...
...
spec/lib/gitlab/github_import/pull_request_formatter_spec.rb
View file @
0a1535a9
...
@@ -9,6 +9,7 @@ describe Gitlab::GithubImport::PullRequestFormatter, lib: true do
...
@@ -9,6 +9,7 @@ describe Gitlab::GithubImport::PullRequestFormatter, lib: true do
let
(
:source_branch
)
{
double
(
ref:
'feature'
,
repo:
source_repo
,
sha:
source_sha
)
}
let
(
:source_branch
)
{
double
(
ref:
'feature'
,
repo:
source_repo
,
sha:
source_sha
)
}
let
(
:target_repo
)
{
repository
}
let
(
:target_repo
)
{
repository
}
let
(
:target_branch
)
{
double
(
ref:
'master'
,
repo:
target_repo
,
sha:
target_sha
)
}
let
(
:target_branch
)
{
double
(
ref:
'master'
,
repo:
target_repo
,
sha:
target_sha
)
}
let
(
:removed_branch
)
{
double
(
ref:
'removed-branch'
,
repo:
source_repo
,
sha:
'2e5d3239642f9161dcbbc4b70a211a68e5e45e2b'
)
}
let
(
:octocat
)
{
double
(
id:
123456
,
login:
'octocat'
)
}
let
(
:octocat
)
{
double
(
id:
123456
,
login:
'octocat'
)
}
let
(
:created_at
)
{
DateTime
.
strptime
(
'2011-01-26T19:01:12Z'
)
}
let
(
:created_at
)
{
DateTime
.
strptime
(
'2011-01-26T19:01:12Z'
)
}
let
(
:updated_at
)
{
DateTime
.
strptime
(
'2011-01-27T19:01:12Z'
)
}
let
(
:updated_at
)
{
DateTime
.
strptime
(
'2011-01-27T19:01:12Z'
)
}
...
@@ -165,6 +166,42 @@ describe Gitlab::GithubImport::PullRequestFormatter, lib: true do
...
@@ -165,6 +166,42 @@ describe Gitlab::GithubImport::PullRequestFormatter, lib: true do
end
end
end
end
describe
'#source_branch_name'
do
context
'when source branch exists'
do
let
(
:raw_data
)
{
double
(
base_data
)
}
it
'returns branch ref'
do
expect
(
pull_request
.
source_branch_name
).
to
eq
'feature'
end
end
context
'when source branch does not exist'
do
let
(
:raw_data
)
{
double
(
base_data
.
merge
(
head:
removed_branch
))
}
it
'prefixes branch name with pull request number'
do
expect
(
pull_request
.
source_branch_name
).
to
eq
'pull/1347/removed-branch'
end
end
end
describe
'#target_branch_name'
do
context
'when source branch exists'
do
let
(
:raw_data
)
{
double
(
base_data
)
}
it
'returns branch ref'
do
expect
(
pull_request
.
target_branch_name
).
to
eq
'master'
end
end
context
'when target branch does not exist'
do
let
(
:raw_data
)
{
double
(
base_data
.
merge
(
base:
removed_branch
))
}
it
'prefixes branch name with pull request number'
do
expect
(
pull_request
.
target_branch_name
).
to
eq
'pull/1347/removed-branch'
end
end
end
describe
'#valid?'
do
describe
'#valid?'
do
context
'when source, and target repos are not a fork'
do
context
'when source, and target repos are not a fork'
do
let
(
:raw_data
)
{
double
(
base_data
)
}
let
(
:raw_data
)
{
double
(
base_data
)
}
...
...
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