gitlab-org--gitlab-foss/spec/requests/ci/api/builds_spec.rb

127 lines
5 KiB
Ruby
Raw Normal View History

2015-08-25 21:42:46 -04:00
require 'spec_helper'
2015-09-09 08:17:16 -04:00
describe Ci::API::API do
2015-08-25 21:42:46 -04:00
include ApiHelpers
2015-09-10 10:04:06 -04:00
let(:runner) { FactoryGirl.create(:ci_runner, tag_list: ["mysql", "ruby"]) }
let(:project) { FactoryGirl.create(:ci_project) }
2015-09-28 07:14:34 -04:00
let(:gl_project) { FactoryGirl.create(:empty_project, gitlab_ci_project: project) }
2015-08-25 21:42:46 -04:00
2015-10-05 07:51:28 -04:00
before do
stub_ci_commit_to_return_yaml_file
end
2015-08-25 21:42:46 -04:00
describe "Builds API for runners" do
2015-09-10 10:04:06 -04:00
let(:shared_runner) { FactoryGirl.create(:ci_runner, token: "SharedRunner") }
let(:shared_project) { FactoryGirl.create(:ci_project, name: "SharedProject") }
2015-09-28 07:14:34 -04:00
let(:shared_gl_project) { FactoryGirl.create(:empty_project, gitlab_ci_project: shared_project) }
2015-08-25 21:42:46 -04:00
before do
2015-09-15 08:51:03 -04:00
FactoryGirl.create :ci_runner_project, project_id: project.id, runner_id: runner.id
2015-08-25 21:42:46 -04:00
end
describe "POST /builds/register" do
it "should start a build" do
2015-09-28 07:14:34 -04:00
commit = FactoryGirl.create(:ci_commit, gl_project: gl_project)
2015-10-05 07:12:00 -04:00
commit.create_builds('master', false, nil)
2015-08-25 21:42:46 -04:00
build = commit.builds.first
2015-09-15 08:51:03 -04:00
post ci_api("/builds/register"), token: runner.token, info: { platform: :darwin }
2015-08-25 21:42:46 -04:00
2015-09-10 10:04:06 -04:00
expect(response.status).to eq(201)
expect(json_response['sha']).to eq(build.sha)
expect(runner.reload.platform).to eq("darwin")
2015-08-25 21:42:46 -04:00
end
it "should return 404 error if no pending build found" do
2015-09-15 08:51:03 -04:00
post ci_api("/builds/register"), token: runner.token
2015-08-25 21:42:46 -04:00
2015-09-10 10:04:06 -04:00
expect(response.status).to eq(404)
2015-08-25 21:42:46 -04:00
end
it "should return 404 error if no builds for specific runner" do
2015-09-28 07:14:34 -04:00
commit = FactoryGirl.create(:ci_commit, gl_project: shared_gl_project)
2015-09-10 10:04:06 -04:00
FactoryGirl.create(:ci_build, commit: commit, status: 'pending' )
2015-08-25 21:42:46 -04:00
2015-09-15 08:51:03 -04:00
post ci_api("/builds/register"), token: runner.token
2015-08-25 21:42:46 -04:00
2015-09-10 10:04:06 -04:00
expect(response.status).to eq(404)
2015-08-25 21:42:46 -04:00
end
it "should return 404 error if no builds for shared runner" do
2015-09-28 07:14:34 -04:00
commit = FactoryGirl.create(:ci_commit, gl_project: gl_project)
2015-09-10 10:04:06 -04:00
FactoryGirl.create(:ci_build, commit: commit, status: 'pending' )
2015-08-25 21:42:46 -04:00
2015-09-15 08:51:03 -04:00
post ci_api("/builds/register"), token: shared_runner.token
2015-08-25 21:42:46 -04:00
2015-09-10 10:04:06 -04:00
expect(response.status).to eq(404)
2015-08-25 21:42:46 -04:00
end
it "returns options" do
2015-09-28 07:14:34 -04:00
commit = FactoryGirl.create(:ci_commit, gl_project: gl_project)
2015-10-05 07:12:00 -04:00
commit.create_builds('master', false, nil)
2015-08-25 21:42:46 -04:00
2015-09-15 08:51:03 -04:00
post ci_api("/builds/register"), token: runner.token, info: { platform: :darwin }
2015-08-25 21:42:46 -04:00
2015-09-10 10:04:06 -04:00
expect(response.status).to eq(201)
2015-09-14 07:37:18 -04:00
expect(json_response["options"]).to eq({ "image" => "ruby:2.1", "services" => ["postgres"] })
2015-08-25 21:42:46 -04:00
end
it "returns variables" do
2015-09-28 07:14:34 -04:00
commit = FactoryGirl.create(:ci_commit, gl_project: gl_project)
2015-10-05 07:12:00 -04:00
commit.create_builds('master', false, nil)
2015-09-15 08:51:03 -04:00
project.variables << Ci::Variable.new(key: "SECRET_KEY", value: "secret_value")
2015-08-25 21:42:46 -04:00
2015-09-15 08:51:03 -04:00
post ci_api("/builds/register"), token: runner.token, info: { platform: :darwin }
2015-08-25 21:42:46 -04:00
2015-09-10 10:04:06 -04:00
expect(response.status).to eq(201)
expect(json_response["variables"]).to eq([
{ "key" => "CI_BUILD_NAME", "value" => "spinach", "public" => true },
{ "key" => "CI_BUILD_STAGE", "value" => "test", "public" => true },
2015-09-14 07:37:18 -04:00
{ "key" => "DB_NAME", "value" => "postgres", "public" => true },
{ "key" => "SECRET_KEY", "value" => "secret_value", "public" => false },
2015-09-10 10:04:06 -04:00
])
2015-08-25 21:42:46 -04:00
end
it "returns variables for triggers" do
2015-09-10 10:04:06 -04:00
trigger = FactoryGirl.create(:ci_trigger, project: project)
2015-09-28 07:14:34 -04:00
commit = FactoryGirl.create(:ci_commit, gl_project: gl_project)
2015-08-25 21:42:46 -04:00
2015-09-10 10:04:06 -04:00
trigger_request = FactoryGirl.create(:ci_trigger_request_with_variables, commit: commit, trigger: trigger)
2015-10-05 07:12:00 -04:00
commit.create_builds('master', false, nil, trigger_request)
2015-09-15 08:51:03 -04:00
project.variables << Ci::Variable.new(key: "SECRET_KEY", value: "secret_value")
2015-08-25 21:42:46 -04:00
2015-09-15 08:51:03 -04:00
post ci_api("/builds/register"), token: runner.token, info: { platform: :darwin }
2015-08-25 21:42:46 -04:00
2015-09-10 10:04:06 -04:00
expect(response.status).to eq(201)
expect(json_response["variables"]).to eq([
{ "key" => "CI_BUILD_NAME", "value" => "spinach", "public" => true },
{ "key" => "CI_BUILD_STAGE", "value" => "test", "public" => true },
{ "key" => "CI_BUILD_TRIGGERED", "value" => "true", "public" => true },
2015-09-14 07:37:18 -04:00
{ "key" => "DB_NAME", "value" => "postgres", "public" => true },
{ "key" => "SECRET_KEY", "value" => "secret_value", "public" => false },
{ "key" => "TRIGGER_KEY", "value" => "TRIGGER_VALUE", "public" => false },
2015-09-10 10:04:06 -04:00
])
2015-08-25 21:42:46 -04:00
end
end
describe "PUT /builds/:id" do
2015-09-28 07:14:34 -04:00
let(:commit) { FactoryGirl.create(:ci_commit, gl_project: gl_project)}
2015-09-10 10:04:06 -04:00
let(:build) { FactoryGirl.create(:ci_build, commit: commit, runner_id: runner.id) }
2015-08-25 21:42:46 -04:00
it "should update a running build" do
build.run!
2015-09-15 08:51:03 -04:00
put ci_api("/builds/#{build.id}"), token: runner.token
2015-09-10 10:04:06 -04:00
expect(response.status).to eq(200)
2015-08-25 21:42:46 -04:00
end
it 'Should not override trace information when no trace is given' do
build.run!
build.update!(trace: 'hello_world')
2015-09-15 08:51:03 -04:00
put ci_api("/builds/#{build.id}"), token: runner.token
2015-08-25 21:42:46 -04:00
expect(build.reload.trace).to eq 'hello_world'
end
end
end
end