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
Jérome Perrin
gitlab-ce
Commits
e2c01f39
Commit
e2c01f39
authored
Aug 11, 2016
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix tests for pipeline events
parent
478990bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
18 deletions
+50
-18
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+3
-1
spec/models/ci/pipeline_spec.rb
spec/models/ci/pipeline_spec.rb
+47
-17
No files found.
app/models/ci/pipeline.rb
View file @
e2c01f39
...
...
@@ -208,8 +208,10 @@ module Ci
self
.
started_at
=
statuses
.
started_at
self
.
finished_at
=
statuses
.
finished_at
self
.
duration
=
statuses
.
latest
.
duration
should_execute_hooks
=
status_changed?
save
execute_hooks
if
s
tatus_changed?
execute_hooks
if
s
hould_execute_hooks
end
private
...
...
spec/models/ci/pipeline_spec.rb
View file @
e2c01f39
...
...
@@ -2,7 +2,7 @@ require 'spec_helper'
describe
Ci
::
Pipeline
,
models:
true
do
let
(
:project
)
{
FactoryGirl
.
create
:empty_project
}
let
(
:pipeline
)
{
FactoryGirl
.
create
:ci_empty_pipeline
,
project:
project
}
let
(
:pipeline
)
{
FactoryGirl
.
create
:ci_empty_pipeline
,
status:
'created'
,
project:
project
}
it
{
is_expected
.
to
belong_to
(
:project
)
}
it
{
is_expected
.
to
belong_to
(
:user
)
}
...
...
@@ -303,6 +303,9 @@ describe Ci::Pipeline, models: true do
end
describe
'#execute_hooks'
do
let!
(
:build_a
)
{
create_build
(
'a'
)
}
let!
(
:build_b
)
{
create_build
(
'b'
)
}
let!
(
:hook
)
do
create
(
:project_hook
,
project:
project
,
pipeline_events:
enabled
)
end
...
...
@@ -314,30 +317,48 @@ describe Ci::Pipeline, models: true do
context
'with pipeline hooks enabled'
do
let
(
:enabled
)
{
true
}
before
do
WebMock
.
stub_request
(
:post
,
hook
.
url
)
end
context
'with multiple builds'
do
let!
(
:build_a
)
{
create_build
(
'a'
)
}
let!
(
:build_b
)
{
create_build
(
'b'
)
}
context
'when build is queued'
do
before
do
build_a
.
queue
build_b
.
queue
end
it
'fires exactly 3 hooks
'
do
stub_request
(
'pending'
)
build_a
.
queue
build_b
.
queue
it
'receive a pending event once
'
do
expect
(
WebMock
).
to
requested
(
'pending'
).
once
end
end
stub_request
(
'running'
)
build_a
.
run
build_b
.
run
context
'when build is run'
do
before
do
build_a
.
queue
build_a
.
run
build_b
.
queue
build_b
.
run
end
stub_request
(
'success'
)
build_a
.
success
build_b
.
success
it
'receive a running event once'
do
expect
(
WebMock
).
to
requested
(
'running'
).
once
end
end
def
create_build
(
name
)
create
(
:ci_build
,
:pending
,
pipeline:
pipeline
,
name:
name
)
context
'when all builds succeed'
do
before
do
build_a
.
success
build_b
.
success
end
it
'receive a success event once'
do
expect
(
WebMock
).
to
requested
(
'success'
).
once
end
end
def
stub_request
(
status
)
WebMock
.
stub_request
(
:post
,
hook
.
url
).
with
do
|
req
|
def
requested
(
status
)
have_requested
(
:post
,
hook
.
url
).
with
do
|
req
|
json_body
=
JSON
.
parse
(
req
.
body
)
json_body
[
'object_attributes'
][
'status'
]
==
status
&&
json_body
[
'builds'
].
length
==
2
...
...
@@ -349,9 +370,18 @@ describe Ci::Pipeline, models: true do
context
'with pipeline hooks disabled'
do
let
(
:enabled
)
{
false
}
before
do
build_a
.
queue
build_b
.
queue
end
it
'did not execute pipeline_hook after touched'
do
expect
(
WebMock
).
not_to
have_requested
(
:post
,
hook
.
url
)
end
end
def
create_build
(
name
)
create
(
:ci_build
,
:created
,
pipeline:
pipeline
,
name:
name
)
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