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
a8dd4d36
Commit
a8dd4d36
authored
Sep 11, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build features specs
parent
9a9417ee
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
40 deletions
+45
-40
app/models/ci/project.rb
app/models/ci/project.rb
+3
-1
spec/factories/ci/projects.rb
spec/factories/ci/projects.rb
+1
-1
spec/features/ci/builds_spec.rb
spec/features/ci/builds_spec.rb
+41
-38
No files found.
app/models/ci/project.rb
View file @
a8dd4d36
...
@@ -31,6 +31,8 @@ module Ci
...
@@ -31,6 +31,8 @@ module Ci
include
Ci
::
ProjectStatus
include
Ci
::
ProjectStatus
belongs_to
:gl_project
,
class_name:
'Project'
,
foreign_key: :gitlab_id
has_many
:commits
,
->
()
{
order
(
:committed_at
)
},
dependent: :destroy
,
class_name:
'Ci::Commit'
has_many
:commits
,
->
()
{
order
(
:committed_at
)
},
dependent: :destroy
,
class_name:
'Ci::Commit'
has_many
:builds
,
through: :commits
,
dependent: :destroy
,
class_name:
'Ci::Build'
has_many
:builds
,
through: :commits
,
dependent: :destroy
,
class_name:
'Ci::Build'
has_many
:runner_projects
,
dependent: :destroy
,
class_name:
'Ci::RunnerProject'
has_many
:runner_projects
,
dependent: :destroy
,
class_name:
'Ci::RunnerProject'
...
...
spec/factories/ci/projects.rb
View file @
a8dd4d36
...
@@ -43,7 +43,7 @@ FactoryGirl.define do
...
@@ -43,7 +43,7 @@ FactoryGirl.define do
"git@demo.gitlab.com:gitlab/gitlab-shell
#{
n
}
.git"
"git@demo.gitlab.com:gitlab/gitlab-shell
#{
n
}
.git"
end
end
sequence
:gitlab_id
gl_project
factory: :project
factory
:ci_project
do
factory
:ci_project
do
token
'iPWx6WM4lhHNedGfBpPJNP'
token
'iPWx6WM4lhHNedGfBpPJNP'
...
...
spec/features/ci/builds_spec.rb
View file @
a8dd4d36
require
'spec_helper'
require
'spec_helper'
describe
"Builds"
do
describe
"Builds"
do
context
:private_project
do
before
do
before
do
@project
=
FactoryGirl
.
create
:project
@project
=
FactoryGirl
.
create
:ci_project
@commit
=
FactoryGirl
.
create
:commit
,
project:
@project
@commit
=
FactoryGirl
.
create
:ci_commit
,
project:
@project
@build
=
FactoryGirl
.
create
:build
,
commit:
@commit
@build
=
FactoryGirl
.
create
:ci_build
,
commit:
@commit
login_as
:user
@project
.
gl_project
.
team
<<
[
@user
,
:master
]
end
end
describe
"GET /:project/builds/:id"
do
describe
"GET /:project/builds/:id"
do
before
do
before
do
login_as
:user
visit
ci_project_build_path
(
@project
,
@build
)
visit
project_build_path
(
@project
,
@build
)
end
end
it
{
expect
(
page
).
to
have_content
@commit
.
sha
[
0
..
7
]
}
it
{
expect
(
page
).
to
have_content
@commit
.
sha
[
0
..
7
]
}
...
@@ -20,9 +22,8 @@ describe "Builds" do
...
@@ -20,9 +22,8 @@ describe "Builds" do
describe
"GET /:project/builds/:id/cancel"
do
describe
"GET /:project/builds/:id/cancel"
do
before
do
before
do
login_as
:user
@build
.
run!
@build
.
run!
visit
cancel
_project_build_path
(
@project
,
@build
)
visit
cancel_ci
_project_build_path
(
@project
,
@build
)
end
end
it
{
expect
(
page
).
to
have_content
'canceled'
}
it
{
expect
(
page
).
to
have_content
'canceled'
}
...
@@ -31,27 +32,29 @@ describe "Builds" do
...
@@ -31,27 +32,29 @@ describe "Builds" do
describe
"POST /:project/builds/:id/retry"
do
describe
"POST /:project/builds/:id/retry"
do
before
do
before
do
login_as
:user
@build
.
cancel!
@build
.
cancel!
visit
project_build_path
(
@project
,
@build
)
visit
ci_
project_build_path
(
@project
,
@build
)
click_link
'Retry'
click_link
'Retry'
end
end
it
{
expect
(
page
).
to
have_content
'pending'
}
it
{
expect
(
page
).
to
have_content
'pending'
}
it
{
expect
(
page
).
to
have_content
'Cancel'
}
it
{
expect
(
page
).
to
have_content
'Cancel'
}
end
end
end
context
:public_project
do
describe
"Show page public accessible"
do
describe
"Show page public accessible"
do
before
do
before
do
@project
=
FactoryGirl
.
create
:
public_project
@project
=
FactoryGirl
.
create
:ci_
public_project
@commit
=
FactoryGirl
.
create
:
commit
,
project:
@project
@commit
=
FactoryGirl
.
create
:ci_
commit
,
project:
@project
@runner
=
FactoryGirl
.
create
:
specific_runner
@runner
=
FactoryGirl
.
create
:ci_
specific_runner
@build
=
FactoryGirl
.
create
:
build
,
commit:
@commit
,
runner:
@runner
@build
=
FactoryGirl
.
create
:ci_
build
,
commit:
@commit
,
runner:
@runner
stub_gitlab_calls
stub_gitlab_calls
visit
project_build_path
(
@project
,
@build
)
visit
ci_
project_build_path
(
@project
,
@build
)
end
end
it
{
expect
(
page
).
to
have_content
@commit
.
sha
[
0
..
7
]
}
it
{
expect
(
page
).
to
have_content
@commit
.
sha
[
0
..
7
]
}
end
end
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