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
iv
gitlab-ce
Commits
bafec400
Commit
bafec400
authored
Apr 06, 2015
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CI forking: tests
parent
9c230180
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
59 additions
and
12 deletions
+59
-12
app/models/project_services/gitlab_ci_service.rb
app/models/project_services/gitlab_ci_service.rb
+12
-8
app/services/projects/fork_service.rb
app/services/projects/fork_service.rb
+1
-1
app/workers/fork_registration_worker.rb
app/workers/fork_registration_worker.rb
+2
-2
spec/models/project_services/gitlab_ci_service_spec.rb
spec/models/project_services/gitlab_ci_service_spec.rb
+21
-0
spec/services/projects/fork_service_spec.rb
spec/services/projects/fork_service_spec.rb
+13
-1
spec/workers/fork_registration_worker_spec.rb
spec/workers/fork_registration_worker_spec.rb
+10
-0
No files found.
app/models/project_services/gitlab_ci_service.rb
View file @
bafec400
...
@@ -18,6 +18,8 @@
...
@@ -18,6 +18,8 @@
#
#
class
GitlabCiService
<
CiService
class
GitlabCiService
<
CiService
API_PREFIX
=
"api/v1"
prop_accessor
:project_url
,
:token
prop_accessor
:project_url
,
:token
validates
:project_url
,
presence:
true
,
if: :activated?
validates
:project_url
,
presence:
true
,
if: :activated?
validates
:token
,
presence:
true
,
if: :activated?
validates
:token
,
presence:
true
,
if: :activated?
...
@@ -59,7 +61,7 @@ class GitlabCiService < CiService
...
@@ -59,7 +61,7 @@ class GitlabCiService < CiService
end
end
end
end
def
register_fork
(
new_project
,
user
_token
)
def
fork_registration
(
new_project
,
private
_token
)
params
=
{
params
=
{
id:
new_project
.
id
,
id:
new_project
.
id
,
name_with_namespace:
new_project
.
name_with_namespace
,
name_with_namespace:
new_project
.
name_with_namespace
,
...
@@ -69,12 +71,12 @@ class GitlabCiService < CiService
...
@@ -69,12 +71,12 @@ class GitlabCiService < CiService
}
}
HTTParty
.
post
(
HTTParty
.
post
(
register_fork_path
,
fork_registration_path
,
body:
{
body:
{
project_id:
project
.
id
,
project_id:
project
.
id
,
project_token:
token
,
project_token:
token
,
user_token:
user
_token
,
private_token:
private
_token
,
data:
params
.
to_yaml
},
data:
params
},
verify:
false
verify:
false
)
)
end
end
...
@@ -95,10 +97,6 @@ class GitlabCiService < CiService
...
@@ -95,10 +97,6 @@ class GitlabCiService < CiService
project_url
+
"?ref="
+
project
.
default_branch
project_url
+
"?ref="
+
project
.
default_branch
end
end
def
register_fork_path
project_url
.
sub
(
/projects\/\d*/
,
'api/v1/forks'
)
end
def
status_img_path
def
status_img_path
project_url
+
"/status.png?ref="
+
project
.
default_branch
project_url
+
"/status.png?ref="
+
project
.
default_branch
end
end
...
@@ -121,4 +119,10 @@ class GitlabCiService < CiService
...
@@ -121,4 +119,10 @@ class GitlabCiService < CiService
{
type:
'text'
,
name:
'project_url'
,
placeholder:
'http://ci.gitlabhq.com/projects/3'
}
{
type:
'text'
,
name:
'project_url'
,
placeholder:
'http://ci.gitlabhq.com/projects/3'
}
]
]
end
end
private
def
fork_registration_path
project_url
.
sub
(
/projects\/\d*/
,
"
#{
API_PREFIX
}
/forks"
)
end
end
end
app/services/projects/fork_service.rb
View file @
bafec400
...
@@ -50,7 +50,7 @@ module Projects
...
@@ -50,7 +50,7 @@ module Projects
end
end
if
@from_project
.
gitlab_ci?
if
@from_project
.
gitlab_ci?
ForkRegistrat
or
Worker
.
perform_async
(
@from_project
.
id
,
project
.
id
,
@current_user
.
private_token
)
ForkRegistrat
ion
Worker
.
perform_async
(
@from_project
.
id
,
project
.
id
,
@current_user
.
private_token
)
end
end
rescue
=>
ex
rescue
=>
ex
project
.
errors
.
add
(
:base
,
'Fork transaction failed.'
)
project
.
errors
.
add
(
:base
,
'Fork transaction failed.'
)
...
...
app/workers/fork_registrat
or
_worker.rb
→
app/workers/fork_registrat
ion
_worker.rb
View file @
bafec400
class
ForkRegistrat
or
Worker
class
ForkRegistrat
ion
Worker
include
Sidekiq
::
Worker
include
Sidekiq
::
Worker
sidekiq_options
queue: :default
sidekiq_options
queue: :default
...
@@ -7,6 +7,6 @@ class ForkRegistratorWorker
...
@@ -7,6 +7,6 @@ class ForkRegistratorWorker
from_project
=
Project
.
find
(
from_project_id
)
from_project
=
Project
.
find
(
from_project_id
)
to_project
=
Project
.
find
(
to_project_id
)
to_project
=
Project
.
find
(
to_project_id
)
from_project
.
gitlab_ci_service
.
register_fork
(
to_project
,
private_token
)
from_project
.
gitlab_ci_service
.
fork_registration
(
to_project
,
private_token
)
end
end
end
end
spec/models/project_services/gitlab_ci_service_spec.rb
View file @
bafec400
...
@@ -46,4 +46,25 @@ describe GitlabCiService do
...
@@ -46,4 +46,25 @@ describe GitlabCiService do
it
{
expect
(
@service
.
build_page
(
"2ab7834c"
,
'master'
)).
to
eq
(
"http://ci.gitlab.org/projects/2/refs/master/commits/2ab7834c"
)}
it
{
expect
(
@service
.
build_page
(
"2ab7834c"
,
'master'
)).
to
eq
(
"http://ci.gitlab.org/projects/2/refs/master/commits/2ab7834c"
)}
end
end
end
end
describe
"Fork registration"
do
before
do
@old_project
=
create
(
:empty_project
)
@project
=
create
(
:empty_project
)
@user
=
create
(
:user
)
@service
=
GitlabCiService
.
new
@service
.
stub
(
service_hook:
true
,
project_url:
'http://ci.gitlab.org/projects/2'
,
token:
'verySecret'
,
project:
@old_project
)
end
it
"performs http reuquest to ci"
do
stub_request
(
:post
,
"http://ci.gitlab.org/api/v1/forks"
)
@service
.
fork_registration
(
@project
,
@user
.
private_token
)
end
end
end
end
spec/services/projects/fork_service_spec.rb
View file @
bafec400
...
@@ -40,6 +40,17 @@ describe Projects::ForkService do
...
@@ -40,6 +40,17 @@ describe Projects::ForkService do
expect
(
@to_project
.
errors
[
:base
]).
not_to
include
(
"Fork transaction failed."
)
expect
(
@to_project
.
errors
[
:base
]).
not_to
include
(
"Fork transaction failed."
)
end
end
end
end
context
'GitLab CI is enabled'
do
it
"calls fork registrator for CI"
do
@from_project
.
build_missing_services
@from_project
.
gitlab_ci_service
.
update_attributes
(
active:
true
)
expect
(
ForkRegistrationWorker
).
to
receive
(
:perform_async
)
fork_project
(
@from_project
,
@to_user
)
end
end
end
end
describe
:fork_to_namespace
do
describe
:fork_to_namespace
do
...
@@ -89,7 +100,8 @@ describe Projects::ForkService do
...
@@ -89,7 +100,8 @@ describe Projects::ForkService do
def
fork_project
(
from_project
,
user
,
fork_success
=
true
,
params
=
{})
def
fork_project
(
from_project
,
user
,
fork_success
=
true
,
params
=
{})
context
=
Projects
::
ForkService
.
new
(
from_project
,
user
,
params
)
context
=
Projects
::
ForkService
.
new
(
from_project
,
user
,
params
)
shell
=
double
(
'gitlab_shell'
).
stub
(
fork_repository:
fork_success
)
shell
=
double
(
'gitlab_shell'
)
shell
.
stub
(
fork_repository:
fork_success
)
context
.
stub
(
gitlab_shell:
shell
)
context
.
stub
(
gitlab_shell:
shell
)
context
.
execute
context
.
execute
end
end
...
...
spec/workers/fork_registration_worker_spec.rb
0 → 100644
View file @
bafec400
require
'spec_helper'
describe
ForkRegistrationWorker
do
context
"as a resque worker"
do
it
"reponds to #perform"
do
expect
(
ForkRegistrationWorker
.
new
).
to
respond_to
(
:perform
)
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