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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
3b508675
Commit
3b508675
authored
Apr 26, 2016
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spec for Gitlab::GithubImport::PullRequestFormatter
parent
9b4dc552
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
76 additions
and
28 deletions
+76
-28
lib/gitlab/github_import/importer.rb
lib/gitlab/github_import/importer.rb
+1
-1
lib/gitlab/github_import/pull_request_formatter.rb
lib/gitlab/github_import/pull_request_formatter.rb
+5
-5
spec/lib/gitlab/github_import/pull_request_formatter_spec.rb
spec/lib/gitlab/github_import/pull_request_formatter_spec.rb
+70
-22
No files found.
lib/gitlab/github_import/importer.rb
View file @
3b508675
...
...
@@ -73,7 +73,7 @@ module Gitlab
def
import_pull_requests
pull_requests
=
client
.
pull_requests
(
repo
,
state: :all
,
sort: :created
,
direction: :asc
)
.
map
{
|
raw
|
PullRequestFormatter
.
new
(
project
,
raw
)
}
.
reject
(
&
:cross_project
?
)
.
select
(
&
:valid
?
)
source_branches_removed
=
pull_requests
.
reject
(
&
:source_branch_exists?
).
map
{
|
pr
|
[
pr
.
source_branch
,
pr
.
source_sha
]
}
target_branches_removed
=
pull_requests
.
reject
(
&
:target_branch_exists?
).
map
{
|
pr
|
[
pr
.
target_branch
,
pr
.
target_sha
]
}
...
...
lib/gitlab/github_import/pull_request_formatter.rb
View file @
3b508675
...
...
@@ -24,11 +24,7 @@ module Gitlab
end
def
valid?
!
cross_project?
&&
source_branch
.
present?
&&
target_branch
.
present?
end
def
cross_project?
source_repo
.
present?
&&
target_repo
.
present?
&&
source_repo
.
id
!=
target_repo
.
id
!
cross_project?
end
def
source_branch_exists?
...
...
@@ -79,6 +75,10 @@ module Gitlab
raw_data
.
body
||
""
end
def
cross_project?
source_repo
.
present?
&&
target_repo
.
present?
&&
source_repo
.
id
!=
target_repo
.
id
end
def
description
formatter
.
author_line
(
author
)
+
body
end
...
...
spec/lib/gitlab/github_import/pull_request_formatter_spec.rb
View file @
3b508675
...
...
@@ -4,9 +4,9 @@ describe Gitlab::GithubImport::PullRequestFormatter, lib: true do
let
(
:project
)
{
create
(
:project
)
}
let
(
:repository
)
{
double
(
id:
1
,
fork:
false
)
}
let
(
:source_repo
)
{
repository
}
let
(
:source_branch
)
{
double
(
ref:
'feature'
,
repo:
source_repo
)
}
let
(
:source_branch
)
{
double
(
ref:
'feature'
,
repo:
source_repo
,
sha:
'2e5d3239642f9161dcbbc4b70a211a68e5e45e2b'
)
}
let
(
:target_repo
)
{
repository
}
let
(
:target_branch
)
{
double
(
ref:
'master'
,
repo:
target_repo
)
}
let
(
:target_branch
)
{
double
(
ref:
'master'
,
repo:
target_repo
,
sha:
'8ffb3c15a5475e59ae909384297fede4badcb4c7'
)
}
let
(
:octocat
)
{
double
(
id:
123456
,
login:
'octocat'
)
}
let
(
:created_at
)
{
DateTime
.
strptime
(
'2011-01-26T19:01:12Z'
)
}
let
(
:updated_at
)
{
DateTime
.
strptime
(
'2011-01-27T19:01:12Z'
)
}
...
...
@@ -137,11 +137,11 @@ describe Gitlab::GithubImport::PullRequestFormatter, lib: true do
let
(
:milestone
)
{
double
(
number:
45
)
}
let
(
:raw_data
)
{
double
(
base_data
.
merge
(
milestone:
milestone
))
}
it
'returns nil when milestone does not exist
s
'
do
it
'returns nil when milestone does not exist'
do
expect
(
pull_request
.
attributes
.
fetch
(
:milestone
)).
to
be_nil
end
it
'returns milestone when i
s
exists'
do
it
'returns milestone when i
t
exists'
do
milestone
=
create
(
:milestone
,
project:
project
,
iid:
45
)
expect
(
pull_request
.
attributes
.
fetch
(
:milestone
)).
to
eq
milestone
...
...
@@ -157,32 +157,80 @@ describe Gitlab::GithubImport::PullRequestFormatter, lib: true do
end
end
describe
'#valid?'
do
let
(
:invalid_branch
)
{
double
(
ref:
'invalid-branch'
).
as_null_object
}
describe
'#source_branch'
do
let
(
:raw_data
)
{
double
(
base_data
)
}
it
'returns head ref'
do
expect
(
pull_request
.
source_branch
).
to
eq
'feature'
end
end
describe
'#source_sha'
do
let
(
:raw_data
)
{
double
(
base_data
)
}
it
'returns head sha'
do
expect
(
pull_request
.
source_sha
).
to
eq
'2e5d3239642f9161dcbbc4b70a211a68e5e45e2b'
end
end
context
'when source, and target repositories are the same
'
do
context
'and source and target branches
exists'
do
let
(
:raw_data
)
{
double
(
base_data
.
merge
(
head:
source_branch
,
base:
target_branch
)
)
}
describe
'#source_branch_exists?
'
do
context
'when source branch
exists'
do
let
(
:raw_data
)
{
double
(
base_data
)
}
it
'returns true'
do
expect
(
pull_request
.
valid
?
).
to
eq
true
expect
(
pull_request
.
source_branch_exists
?
).
to
eq
true
end
end
context
'and source branch doesn not exists
'
do
let
(
:raw_data
)
{
double
(
base_data
.
merge
(
head:
invalid_branch
,
base:
target_branch
))
}
context
'when source branch does not exist
'
do
let
(
:raw_data
)
{
double
(
base_data
.
merge
(
head:
double
(
ref:
'removed-branch'
).
as_null_object
))
}
it
'returns false'
do
expect
(
pull_request
.
valid?
).
to
eq
false
expect
(
pull_request
.
source_branch_exists?
).
to
eq
false
end
end
end
describe
'#target_branch'
do
let
(
:raw_data
)
{
double
(
base_data
)
}
it
'returns base ref'
do
expect
(
pull_request
.
target_branch
).
to
eq
'master'
end
end
context
'and target branch doesn not exists'
do
let
(
:raw_data
)
{
double
(
base_data
.
merge
(
head:
source_branch
,
base:
invalid_branch
))
}
describe
'#target_sha'
do
let
(
:raw_data
)
{
double
(
base_data
)
}
it
'returns base sha'
do
expect
(
pull_request
.
target_sha
).
to
eq
'8ffb3c15a5475e59ae909384297fede4badcb4c7'
end
end
describe
'#target_branch_exists?'
do
context
'when target branch exists'
do
let
(
:raw_data
)
{
double
(
base_data
)
}
it
'returns true'
do
expect
(
pull_request
.
target_branch_exists?
).
to
eq
true
end
end
context
'when target branch does not exist'
do
let
(
:raw_data
)
{
double
(
base_data
.
merge
(
base:
double
(
ref:
'removed-branch'
).
as_null_object
))
}
it
'returns false'
do
expect
(
pull_request
.
valid?
).
to
eq
false
expect
(
pull_request
.
target_branch_exists?
).
to
eq
false
end
end
end
describe
'#valid?'
do
context
'when source, and target repos are not a fork'
do
let
(
:raw_data
)
{
double
(
base_data
)
}
it
'returns true'
do
expect
(
pull_request
.
valid?
).
to
eq
true
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