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
7518330a
Commit
7518330a
authored
Apr 19, 2016
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor ci commit specs by adding context blocks
parent
bdb86ea6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
85 additions
and
77 deletions
+85
-77
spec/models/ci/commit_spec.rb
spec/models/ci/commit_spec.rb
+85
-77
No files found.
spec/models/ci/commit_spec.rb
View file @
7518330a
...
@@ -158,6 +158,7 @@ describe Ci::Commit, models: true do
...
@@ -158,6 +158,7 @@ describe Ci::Commit, models: true do
stub_ci_commit_yaml_file
(
YAML
.
dump
(
yaml
))
stub_ci_commit_yaml_file
(
YAML
.
dump
(
yaml
))
end
end
context
'when builds are successful'
do
it
'properly creates builds'
do
it
'properly creates builds'
do
expect
(
create_builds
).
to
be_truthy
expect
(
create_builds
).
to
be_truthy
expect
(
commit
.
builds
.
pluck
(
:name
)).
to
contain_exactly
(
'build'
)
expect
(
commit
.
builds
.
pluck
(
:name
)).
to
contain_exactly
(
'build'
)
...
@@ -180,8 +181,10 @@ describe Ci::Commit, models: true do
...
@@ -180,8 +181,10 @@ describe Ci::Commit, models: true do
commit
.
reload
commit
.
reload
expect
(
commit
.
status
).
to
eq
(
'success'
)
expect
(
commit
.
status
).
to
eq
(
'success'
)
end
end
end
it
'properly creates builds when test fails'
do
context
'when test job fails'
do
it
'properly creates builds'
do
expect
(
create_builds
).
to
be_truthy
expect
(
create_builds
).
to
be_truthy
expect
(
commit
.
builds
.
pluck
(
:name
)).
to
contain_exactly
(
'build'
)
expect
(
commit
.
builds
.
pluck
(
:name
)).
to
contain_exactly
(
'build'
)
expect
(
commit
.
builds
.
pluck
(
:status
)).
to
contain_exactly
(
'pending'
)
expect
(
commit
.
builds
.
pluck
(
:status
)).
to
contain_exactly
(
'pending'
)
...
@@ -203,8 +206,10 @@ describe Ci::Commit, models: true do
...
@@ -203,8 +206,10 @@ describe Ci::Commit, models: true do
commit
.
reload
commit
.
reload
expect
(
commit
.
status
).
to
eq
(
'failed'
)
expect
(
commit
.
status
).
to
eq
(
'failed'
)
end
end
end
it
'properly creates builds when test and test_failure fails'
do
context
'when test and test_failure jobs fail'
do
it
'properly creates builds'
do
expect
(
create_builds
).
to
be_truthy
expect
(
create_builds
).
to
be_truthy
expect
(
commit
.
builds
.
pluck
(
:name
)).
to
contain_exactly
(
'build'
)
expect
(
commit
.
builds
.
pluck
(
:name
)).
to
contain_exactly
(
'build'
)
expect
(
commit
.
builds
.
pluck
(
:status
)).
to
contain_exactly
(
'pending'
)
expect
(
commit
.
builds
.
pluck
(
:status
)).
to
contain_exactly
(
'pending'
)
...
@@ -227,8 +232,10 @@ describe Ci::Commit, models: true do
...
@@ -227,8 +232,10 @@ describe Ci::Commit, models: true do
commit
.
reload
commit
.
reload
expect
(
commit
.
status
).
to
eq
(
'failed'
)
expect
(
commit
.
status
).
to
eq
(
'failed'
)
end
end
end
it
'properly creates builds when deploy fails'
do
context
'when deploy job fails'
do
it
'properly creates builds'
do
expect
(
create_builds
).
to
be_truthy
expect
(
create_builds
).
to
be_truthy
expect
(
commit
.
builds
.
pluck
(
:name
)).
to
contain_exactly
(
'build'
)
expect
(
commit
.
builds
.
pluck
(
:name
)).
to
contain_exactly
(
'build'
)
expect
(
commit
.
builds
.
pluck
(
:status
)).
to
contain_exactly
(
'pending'
)
expect
(
commit
.
builds
.
pluck
(
:status
)).
to
contain_exactly
(
'pending'
)
...
@@ -252,6 +259,7 @@ describe Ci::Commit, models: true do
...
@@ -252,6 +259,7 @@ describe Ci::Commit, models: true do
end
end
end
end
end
end
end
describe
"#finished_at"
do
describe
"#finished_at"
do
let
(
:commit
)
{
FactoryGirl
.
create
:ci_commit
}
let
(
:commit
)
{
FactoryGirl
.
create
:ci_commit
}
...
...
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