2015-08-25 21:42:46 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe "Builds" do
|
2015-09-11 06:52:56 -04:00
|
|
|
context :private_project do
|
2015-08-25 21:42:46 -04:00
|
|
|
before do
|
2015-09-11 06:52:56 -04:00
|
|
|
@project = FactoryGirl.create :ci_project
|
|
|
|
@commit = FactoryGirl.create :ci_commit, project: @project
|
|
|
|
@build = FactoryGirl.create :ci_build, commit: @commit
|
2015-08-25 21:42:46 -04:00
|
|
|
login_as :user
|
2015-09-11 06:52:56 -04:00
|
|
|
@project.gl_project.team << [@user, :master]
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
2015-09-11 06:52:56 -04:00
|
|
|
describe "GET /:project/builds/:id" do
|
|
|
|
before do
|
|
|
|
visit ci_project_build_path(@project, @build)
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-09-11 06:52:56 -04:00
|
|
|
it { expect(page).to have_content @commit.sha[0..7] }
|
|
|
|
it { expect(page).to have_content @commit.git_commit_message }
|
|
|
|
it { expect(page).to have_content @commit.git_author_name }
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
2015-09-11 06:52:56 -04:00
|
|
|
describe "GET /:project/builds/:id/cancel" do
|
|
|
|
before do
|
|
|
|
@build.run!
|
|
|
|
visit cancel_ci_project_build_path(@project, @build)
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-09-11 06:52:56 -04:00
|
|
|
it { expect(page).to have_content 'canceled' }
|
|
|
|
it { expect(page).to have_content 'Retry' }
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
2015-09-11 06:52:56 -04:00
|
|
|
describe "POST /:project/builds/:id/retry" do
|
|
|
|
before do
|
|
|
|
@build.cancel!
|
|
|
|
visit ci_project_build_path(@project, @build)
|
|
|
|
click_link 'Retry'
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(page).to have_content 'pending' }
|
|
|
|
it { expect(page).to have_content 'Cancel' }
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
|
2015-09-11 06:52:56 -04:00
|
|
|
context :public_project do
|
|
|
|
describe "Show page public accessible" do
|
|
|
|
before do
|
|
|
|
@project = FactoryGirl.create :ci_public_project
|
|
|
|
@commit = FactoryGirl.create :ci_commit, project: @project
|
|
|
|
@runner = FactoryGirl.create :ci_specific_runner
|
|
|
|
@build = FactoryGirl.create :ci_build, commit: @commit, runner: @runner
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-09-11 06:52:56 -04:00
|
|
|
stub_gitlab_calls
|
|
|
|
visit ci_project_build_path(@project, @build)
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2015-09-11 06:52:56 -04:00
|
|
|
it { expect(page).to have_content @commit.sha[0..7] }
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
end
|