2017-02-14 17:52:02 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-02-15 19:30:46 -05:00
|
|
|
describe API::Runner do
|
2017-02-14 17:52:02 -05:00
|
|
|
include StubGitlabCalls
|
|
|
|
|
|
|
|
let(:registration_token) { 'abcdefg123456' }
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_gitlab_calls
|
|
|
|
stub_application_setting(runners_registration_token: registration_token)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '/api/v4/runners' do
|
|
|
|
describe 'POST /api/v4/runners' do
|
|
|
|
context 'when no token is provided' do
|
|
|
|
it 'returns 400 error' do
|
|
|
|
post api('/runners')
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 400
|
2017-02-14 17:52:02 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when invalid token is provided' do
|
|
|
|
it 'returns 403 error' do
|
|
|
|
post api('/runners'), token: 'invalid'
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 403
|
2017-02-14 17:52:02 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when valid token is provided' do
|
|
|
|
it 'creates runner with default values' do
|
|
|
|
post api('/runners'), token: registration_token
|
|
|
|
|
|
|
|
runner = Ci::Runner.first
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 201
|
2017-02-14 17:52:02 -05:00
|
|
|
expect(json_response['id']).to eq(runner.id)
|
|
|
|
expect(json_response['token']).to eq(runner.token)
|
|
|
|
expect(runner.run_untagged).to be true
|
2017-03-13 11:35:10 -04:00
|
|
|
expect(runner.token).not_to eq(registration_token)
|
2017-02-14 17:52:02 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when project token is used' do
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project) }
|
2017-02-14 17:52:02 -05:00
|
|
|
|
|
|
|
it 'creates runner' do
|
|
|
|
post api('/runners'), token: project.runners_token
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 201
|
2017-02-14 17:52:02 -05:00
|
|
|
expect(project.runners.size).to eq(1)
|
2017-03-13 11:35:10 -04:00
|
|
|
expect(Ci::Runner.first.token).not_to eq(registration_token)
|
|
|
|
expect(Ci::Runner.first.token).not_to eq(project.runners_token)
|
2017-02-14 17:52:02 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when runner description is provided' do
|
|
|
|
it 'creates runner' do
|
|
|
|
post api('/runners'), token: registration_token,
|
2017-02-15 19:20:17 -05:00
|
|
|
description: 'server.hostname'
|
2017-02-14 17:52:02 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 201
|
2017-02-14 17:52:02 -05:00
|
|
|
expect(Ci::Runner.first.description).to eq('server.hostname')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when runner tags are provided' do
|
|
|
|
it 'creates runner' do
|
|
|
|
post api('/runners'), token: registration_token,
|
2017-02-15 19:20:17 -05:00
|
|
|
tag_list: 'tag1, tag2'
|
2017-02-14 17:52:02 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 201
|
2017-02-14 17:52:02 -05:00
|
|
|
expect(Ci::Runner.first.tag_list.sort).to eq(%w(tag1 tag2))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when option for running untagged jobs is provided' do
|
|
|
|
context 'when tags are provided' do
|
|
|
|
it 'creates runner' do
|
|
|
|
post api('/runners'), token: registration_token,
|
2017-02-15 19:20:17 -05:00
|
|
|
run_untagged: false,
|
|
|
|
tag_list: ['tag']
|
2017-02-14 17:52:02 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 201
|
2017-02-14 17:52:02 -05:00
|
|
|
expect(Ci::Runner.first.run_untagged).to be false
|
|
|
|
expect(Ci::Runner.first.tag_list.sort).to eq(['tag'])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when tags are not provided' do
|
|
|
|
it 'returns 404 error' do
|
|
|
|
post api('/runners'), token: registration_token,
|
2017-02-15 19:20:17 -05:00
|
|
|
run_untagged: false
|
2017-02-14 17:52:02 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 404
|
2017-02-14 17:52:02 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when option for locking Runner is provided' do
|
|
|
|
it 'creates runner' do
|
|
|
|
post api('/runners'), token: registration_token,
|
2017-02-15 19:20:17 -05:00
|
|
|
locked: true
|
2017-02-14 17:52:02 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 201
|
2017-02-14 17:52:02 -05:00
|
|
|
expect(Ci::Runner.first.locked).to be true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
%w(name version revision platform architecture).each do |param|
|
|
|
|
context "when info parameter '#{param}' info is present" do
|
|
|
|
let(:value) { "#{param}_value" }
|
|
|
|
|
2017-03-02 11:44:15 -05:00
|
|
|
it "updates provided Runner's parameter" do
|
2017-02-14 17:52:02 -05:00
|
|
|
post api('/runners'), token: registration_token,
|
2017-02-15 19:20:17 -05:00
|
|
|
info: { param => value }
|
2017-02-14 17:52:02 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 201
|
2017-02-14 17:52:02 -05:00
|
|
|
expect(Ci::Runner.first.read_attribute(param.to_sym)).to eq(value)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'DELETE /api/v4/runners' do
|
|
|
|
context 'when no token is provided' do
|
|
|
|
it 'returns 400 error' do
|
|
|
|
delete api('/runners')
|
2017-02-27 11:02:25 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 400
|
2017-02-14 17:52:02 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when invalid token is provided' do
|
|
|
|
it 'returns 403 error' do
|
|
|
|
delete api('/runners'), token: 'invalid'
|
2017-02-27 11:02:25 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 403
|
2017-02-14 17:52:02 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when valid token is provided' do
|
|
|
|
let(:runner) { create(:ci_runner) }
|
|
|
|
|
|
|
|
it 'deletes Runner' do
|
|
|
|
delete api('/runners'), token: runner.token
|
2017-02-27 11:02:25 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 204
|
2017-02-14 17:52:02 -05:00
|
|
|
expect(Ci::Runner.count).to eq(0)
|
|
|
|
end
|
2017-08-24 12:03:39 -04:00
|
|
|
|
|
|
|
it_behaves_like '412 response' do
|
|
|
|
let(:request) { api('/runners') }
|
|
|
|
let(:params) { { token: runner.token } }
|
|
|
|
end
|
2017-02-14 17:52:02 -05:00
|
|
|
end
|
|
|
|
end
|
2017-03-14 19:27:10 -04:00
|
|
|
|
|
|
|
describe 'POST /api/v4/runners/verify' do
|
|
|
|
let(:runner) { create(:ci_runner) }
|
|
|
|
|
|
|
|
context 'when no token is provided' do
|
|
|
|
it 'returns 400 error' do
|
|
|
|
post api('/runners/verify')
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status :bad_request
|
2017-03-14 19:27:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when invalid token is provided' do
|
|
|
|
it 'returns 403 error' do
|
|
|
|
post api('/runners/verify'), token: 'invalid-token'
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 403
|
2017-03-14 19:27:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when valid token is provided' do
|
2017-03-18 19:43:35 -04:00
|
|
|
it 'verifies Runner credentials' do
|
2017-03-14 19:27:10 -04:00
|
|
|
post api('/runners/verify'), token: runner.token
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 200
|
2017-03-14 19:27:10 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-02-14 17:52:02 -05:00
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
|
|
|
|
describe '/api/v4/jobs' do
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project, shared_runners_enabled: false) }
|
2017-02-15 12:08:29 -05:00
|
|
|
let(:pipeline) { create(:ci_pipeline_without_jobs, project: project, ref: 'master') }
|
|
|
|
let(:runner) { create(:ci_runner) }
|
2017-03-07 06:30:34 -05:00
|
|
|
let!(:job) do
|
|
|
|
create(:ci_build, :artifacts, :extended_options,
|
|
|
|
pipeline: pipeline, name: 'spinach', stage: 'test', stage_idx: 0, commands: "ls\ndate")
|
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
project.runners << runner
|
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
|
|
|
|
describe 'POST /api/v4/jobs/request' do
|
|
|
|
let!(:last_update) {}
|
|
|
|
let!(:new_update) { }
|
|
|
|
let(:user_agent) { 'gitlab-runner 9.0.0 (9-0-stable; go1.7.4; linux/amd64)' }
|
|
|
|
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
stub_container_registry_config(enabled: false)
|
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
|
|
|
|
shared_examples 'no jobs available' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
request_job
|
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
|
|
|
|
context 'when runner sends version in User-Agent' do
|
|
|
|
context 'for stable version' do
|
|
|
|
it 'gives 204 and set X-GitLab-Last-Update' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(204)
|
2017-02-15 12:08:29 -05:00
|
|
|
expect(response.header).to have_key('X-GitLab-Last-Update')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when last_update is up-to-date' do
|
|
|
|
let(:last_update) { runner.ensure_runner_queue_value }
|
|
|
|
|
|
|
|
it 'gives 204 and set the same X-GitLab-Last-Update' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(204)
|
2017-02-15 12:08:29 -05:00
|
|
|
expect(response.header['X-GitLab-Last-Update']).to eq(last_update)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when last_update is outdated' do
|
|
|
|
let(:last_update) { runner.ensure_runner_queue_value }
|
|
|
|
let(:new_update) { runner.tick_runner_queue }
|
|
|
|
|
|
|
|
it 'gives 204 and set a new X-GitLab-Last-Update' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(204)
|
2017-02-15 12:08:29 -05:00
|
|
|
expect(response.header['X-GitLab-Last-Update']).to eq(new_update)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-02 11:44:15 -05:00
|
|
|
context 'when beta version is sent' do
|
2017-02-15 12:08:29 -05:00
|
|
|
let(:user_agent) { 'gitlab-runner 9.0.0~beta.167.g2b2bacc (master; go1.7.4; linux/amd64)' }
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
it { expect(response).to have_gitlab_http_status(204) }
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
|
2017-03-02 11:44:15 -05:00
|
|
|
context 'when pre-9-0 version is sent' do
|
2017-02-15 12:08:29 -05:00
|
|
|
let(:user_agent) { 'gitlab-ci-multi-runner 1.6.0 (1-6-stable; go1.6.3; linux/amd64)' }
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
it { expect(response).to have_gitlab_http_status(204) }
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
|
2017-03-02 11:44:15 -05:00
|
|
|
context 'when pre-9-0 beta version is sent' do
|
2017-02-15 12:08:29 -05:00
|
|
|
let(:user_agent) { 'gitlab-ci-multi-runner 1.6.0~beta.167.g2b2bacc (master; go1.6.3; linux/amd64)' }
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
it { expect(response).to have_gitlab_http_status(204) }
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when no token is provided' do
|
|
|
|
it 'returns 400 error' do
|
|
|
|
post api('/jobs/request')
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 400
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when invalid token is provided' do
|
|
|
|
it 'returns 403 error' do
|
|
|
|
post api('/jobs/request'), token: 'invalid'
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 403
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when valid token is provided' do
|
|
|
|
context 'when Runner is not active' do
|
|
|
|
let(:runner) { create(:ci_runner, :inactive) }
|
|
|
|
|
2017-03-15 22:31:09 -04:00
|
|
|
it 'returns 204 error' do
|
2017-02-15 12:08:29 -05:00
|
|
|
request_job
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 204
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when jobs are finished' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
job.success
|
|
|
|
end
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-02-15 12:08:29 -05:00
|
|
|
it_behaves_like 'no jobs available'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when other projects have pending jobs' do
|
|
|
|
before do
|
|
|
|
job.success
|
|
|
|
create(:ci_build, :pending)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'no jobs available'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when shared runner requests job for project without shared_runners_enabled' do
|
|
|
|
let(:runner) { create(:ci_runner, :shared) }
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-02-15 12:08:29 -05:00
|
|
|
it_behaves_like 'no jobs available'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there is a pending job' do
|
2017-03-02 11:44:15 -05:00
|
|
|
let(:expected_job_info) do
|
|
|
|
{ 'name' => job.name,
|
|
|
|
'stage' => job.stage,
|
|
|
|
'project_id' => job.project.id,
|
|
|
|
'project_name' => job.project.name }
|
|
|
|
end
|
2017-03-07 06:30:34 -05:00
|
|
|
|
2017-03-02 11:44:15 -05:00
|
|
|
let(:expected_git_info) do
|
|
|
|
{ 'repo_url' => job.repo_url,
|
|
|
|
'ref' => job.ref,
|
|
|
|
'sha' => job.sha,
|
|
|
|
'before_sha' => job.before_sha,
|
2017-03-06 05:51:09 -05:00
|
|
|
'ref_type' => 'branch' }
|
2017-03-02 11:44:15 -05:00
|
|
|
end
|
2017-03-07 06:30:34 -05:00
|
|
|
|
2017-03-02 11:44:15 -05:00
|
|
|
let(:expected_steps) do
|
|
|
|
[{ 'name' => 'script',
|
|
|
|
'script' => %w(ls date),
|
|
|
|
'timeout' => job.timeout,
|
|
|
|
'when' => 'on_success',
|
|
|
|
'allow_failure' => false },
|
|
|
|
{ 'name' => 'after_script',
|
|
|
|
'script' => %w(ls date),
|
|
|
|
'timeout' => job.timeout,
|
|
|
|
'when' => 'always',
|
|
|
|
'allow_failure' => true }]
|
|
|
|
end
|
2017-03-07 06:30:34 -05:00
|
|
|
|
2017-03-02 11:44:15 -05:00
|
|
|
let(:expected_variables) do
|
2017-03-10 05:20:08 -05:00
|
|
|
[{ 'key' => 'CI_JOB_NAME', 'value' => 'spinach', 'public' => true },
|
|
|
|
{ 'key' => 'CI_JOB_STAGE', 'value' => 'test', 'public' => true },
|
2017-03-02 11:44:15 -05:00
|
|
|
{ 'key' => 'DB_NAME', 'value' => 'postgres', 'public' => true }]
|
|
|
|
end
|
2017-03-07 06:30:34 -05:00
|
|
|
|
2017-03-02 11:44:15 -05:00
|
|
|
let(:expected_artifacts) do
|
2017-03-06 08:50:56 -05:00
|
|
|
[{ 'name' => 'artifacts_file',
|
|
|
|
'untracked' => false,
|
|
|
|
'paths' => %w(out/),
|
|
|
|
'when' => 'always',
|
|
|
|
'expire_in' => '7d' }]
|
|
|
|
end
|
2017-03-07 06:30:34 -05:00
|
|
|
|
2017-03-06 08:50:56 -05:00
|
|
|
let(:expected_cache) do
|
|
|
|
[{ 'key' => 'cache_key',
|
|
|
|
'untracked' => false,
|
2017-06-27 10:38:12 -04:00
|
|
|
'paths' => ['vendor/*'],
|
|
|
|
'policy' => 'pull-push' }]
|
2017-03-02 11:44:15 -05:00
|
|
|
end
|
|
|
|
|
2017-09-27 10:01:33 -04:00
|
|
|
let(:expected_features) { { 'trace_sections' => true } }
|
|
|
|
|
2017-03-07 06:30:34 -05:00
|
|
|
it 'picks a job' do
|
2017-02-15 19:38:53 -05:00
|
|
|
request_job info: { platform: :darwin }
|
2017-02-15 12:08:29 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-02-15 12:08:29 -05:00
|
|
|
expect(response.headers).not_to have_key('X-GitLab-Last-Update')
|
|
|
|
expect(runner.reload.platform).to eq('darwin')
|
2017-02-15 19:05:44 -05:00
|
|
|
expect(json_response['id']).to eq(job.id)
|
|
|
|
expect(json_response['token']).to eq(job.token)
|
2017-03-02 11:44:15 -05:00
|
|
|
expect(json_response['job_info']).to eq(expected_job_info)
|
|
|
|
expect(json_response['git_info']).to eq(expected_git_info)
|
2017-06-05 10:15:09 -04:00
|
|
|
expect(json_response['image']).to eq({ 'name' => 'ruby:2.1', 'entrypoint' => '/bin/sh' })
|
|
|
|
expect(json_response['services']).to eq([{ 'name' => 'postgres', 'entrypoint' => nil,
|
|
|
|
'alias' => nil, 'command' => nil },
|
|
|
|
{ 'name' => 'docker:dind', 'entrypoint' => '/bin/sh',
|
|
|
|
'alias' => 'docker', 'command' => 'sleep 30' }])
|
2017-03-02 11:44:15 -05:00
|
|
|
expect(json_response['steps']).to eq(expected_steps)
|
|
|
|
expect(json_response['artifacts']).to eq(expected_artifacts)
|
2017-03-06 08:50:56 -05:00
|
|
|
expect(json_response['cache']).to eq(expected_cache)
|
2017-03-02 11:44:15 -05:00
|
|
|
expect(json_response['variables']).to include(*expected_variables)
|
2017-09-27 10:01:33 -04:00
|
|
|
expect(json_response['features']).to eq(expected_features)
|
2017-02-15 19:05:44 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when job is made for tag' do
|
2017-10-30 05:25:28 -04:00
|
|
|
let!(:job) { create(:ci_build, :tag, pipeline: pipeline, name: 'spinach', stage: 'test', stage_idx: 0) }
|
2017-02-15 19:05:44 -05:00
|
|
|
|
|
|
|
it 'sets branch as ref_type' do
|
|
|
|
request_job
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-02-15 19:05:44 -05:00
|
|
|
expect(json_response['git_info']['ref_type']).to eq('tag')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when job is made for branch' do
|
|
|
|
it 'sets tag as ref_type' do
|
|
|
|
request_job
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-02-15 19:05:44 -05:00
|
|
|
expect(json_response['git_info']['ref_type']).to eq('branch')
|
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates runner info' do
|
|
|
|
expect { request_job }.to change { runner.reload.contacted_at }
|
|
|
|
end
|
|
|
|
|
|
|
|
%w(name version revision platform architecture).each do |param|
|
|
|
|
context "when info parameter '#{param}' is present" do
|
|
|
|
let(:value) { "#{param}_value" }
|
|
|
|
|
2017-03-02 11:44:15 -05:00
|
|
|
it "updates provided Runner's parameter" do
|
2017-02-15 19:38:53 -05:00
|
|
|
request_job info: { param => value }
|
2017-02-15 12:08:29 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-03-02 11:44:15 -05:00
|
|
|
expect(runner.reload.read_attribute(param.to_sym)).to eq(value)
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when concurrently updating a job' do
|
|
|
|
before do
|
2017-06-21 09:48:12 -04:00
|
|
|
expect_any_instance_of(Ci::Build).to receive(:run!)
|
|
|
|
.and_raise(ActiveRecord::StaleObjectError.new(nil, nil))
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns a conflict' do
|
|
|
|
request_job
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(409)
|
2017-02-15 12:08:29 -05:00
|
|
|
expect(response.headers).not_to have_key('X-GitLab-Last-Update')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when project and pipeline have multiple jobs' do
|
2017-10-30 05:25:28 -04:00
|
|
|
let!(:job) { create(:ci_build, :tag, pipeline: pipeline, name: 'spinach', stage: 'test', stage_idx: 0) }
|
|
|
|
let!(:job2) { create(:ci_build, :tag, pipeline: pipeline, name: 'rubocop', stage: 'test', stage_idx: 0) }
|
2017-03-16 09:45:05 -04:00
|
|
|
let!(:test_job) { create(:ci_build, pipeline: pipeline, name: 'deploy', stage: 'deploy', stage_idx: 1) }
|
2017-02-15 12:08:29 -05:00
|
|
|
|
2017-03-16 09:45:05 -04:00
|
|
|
before do
|
|
|
|
job.success
|
|
|
|
job2.success
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns dependent jobs' do
|
|
|
|
request_job
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-03-16 09:45:05 -04:00
|
|
|
expect(json_response['id']).to eq(test_job.id)
|
|
|
|
expect(json_response['dependencies'].count).to eq(2)
|
2017-06-12 17:42:11 -04:00
|
|
|
expect(json_response['dependencies']).to include(
|
|
|
|
{ 'id' => job.id, 'name' => job.name, 'token' => job.token },
|
|
|
|
{ 'id' => job2.id, 'name' => job2.name, 'token' => job2.token })
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when pipeline have jobs with artifacts' do
|
2017-10-30 05:25:28 -04:00
|
|
|
let!(:job) { create(:ci_build, :tag, :artifacts, pipeline: pipeline, name: 'spinach', stage: 'test', stage_idx: 0) }
|
2017-06-12 17:42:11 -04:00
|
|
|
let!(:test_job) { create(:ci_build, pipeline: pipeline, name: 'deploy', stage: 'deploy', stage_idx: 1) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
job.success
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns dependent jobs' do
|
|
|
|
request_job
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-06-12 17:42:11 -04:00
|
|
|
expect(json_response['id']).to eq(test_job.id)
|
|
|
|
expect(json_response['dependencies'].count).to eq(1)
|
|
|
|
expect(json_response['dependencies']).to include(
|
|
|
|
{ 'id' => job.id, 'name' => job.name, 'token' => job.token,
|
|
|
|
'artifacts_file' => { 'filename' => 'ci_build_artifacts.zip', 'size' => 106365 } })
|
2017-03-16 09:45:05 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when explicit dependencies are defined' do
|
2017-10-30 05:25:28 -04:00
|
|
|
let!(:job) { create(:ci_build, :tag, pipeline: pipeline, name: 'spinach', stage: 'test', stage_idx: 0) }
|
|
|
|
let!(:job2) { create(:ci_build, :tag, pipeline: pipeline, name: 'rubocop', stage: 'test', stage_idx: 0) }
|
2017-03-16 09:45:05 -04:00
|
|
|
let!(:test_job) do
|
|
|
|
create(:ci_build, pipeline: pipeline, token: 'test-job-token', name: 'deploy',
|
|
|
|
stage: 'deploy', stage_idx: 1,
|
|
|
|
options: { dependencies: [job2.name] })
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
job.success
|
|
|
|
job2.success
|
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
|
|
|
|
it 'returns dependent jobs' do
|
|
|
|
request_job
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-02-15 12:08:29 -05:00
|
|
|
expect(json_response['id']).to eq(test_job.id)
|
2017-02-15 19:05:44 -05:00
|
|
|
expect(json_response['dependencies'].count).to eq(1)
|
2017-03-16 09:45:05 -04:00
|
|
|
expect(json_response['dependencies'][0]).to include('id' => job2.id, 'name' => job2.name, 'token' => job2.token)
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-04-05 08:07:10 -04:00
|
|
|
context 'when dependencies is an empty array' do
|
2017-10-30 05:25:28 -04:00
|
|
|
let!(:job) { create(:ci_build, :tag, pipeline: pipeline, name: 'spinach', stage: 'test', stage_idx: 0) }
|
|
|
|
let!(:job2) { create(:ci_build, :tag, pipeline: pipeline, name: 'rubocop', stage: 'test', stage_idx: 0) }
|
2017-04-05 08:07:10 -04:00
|
|
|
let!(:empty_dependencies_job) do
|
|
|
|
create(:ci_build, pipeline: pipeline, token: 'test-job-token', name: 'empty_dependencies_job',
|
|
|
|
stage: 'deploy', stage_idx: 1,
|
|
|
|
options: { dependencies: [] })
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
job.success
|
|
|
|
job2.success
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns an empty array' do
|
|
|
|
request_job
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-04-05 08:07:10 -04:00
|
|
|
expect(json_response['id']).to eq(empty_dependencies_job.id)
|
|
|
|
expect(json_response['dependencies'].count).to eq(0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-15 12:08:29 -05:00
|
|
|
context 'when job has no tags' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
job.update(tags: [])
|
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
|
|
|
|
context 'when runner is allowed to pick untagged jobs' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
runner.update_column(:run_untagged, true)
|
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
|
|
|
|
it 'picks job' do
|
|
|
|
request_job
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status 201
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when runner is not allowed to pick untagged jobs' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
runner.update_column(:run_untagged, false)
|
|
|
|
end
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-02-15 12:08:29 -05:00
|
|
|
it_behaves_like 'no jobs available'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when triggered job is available' do
|
2017-03-02 11:44:15 -05:00
|
|
|
let(:expected_variables) do
|
2017-03-10 05:20:08 -05:00
|
|
|
[{ 'key' => 'CI_JOB_NAME', 'value' => 'spinach', 'public' => true },
|
|
|
|
{ 'key' => 'CI_JOB_STAGE', 'value' => 'test', 'public' => true },
|
|
|
|
{ 'key' => 'CI_PIPELINE_TRIGGERED', 'value' => 'true', 'public' => true },
|
2017-03-02 11:44:15 -05:00
|
|
|
{ 'key' => 'DB_NAME', 'value' => 'postgres', 'public' => true },
|
|
|
|
{ 'key' => 'SECRET_KEY', 'value' => 'secret_value', 'public' => false },
|
|
|
|
{ 'key' => 'TRIGGER_KEY_1', 'value' => 'TRIGGER_VALUE_1', 'public' => false }]
|
|
|
|
end
|
|
|
|
|
2017-09-01 13:37:11 -04:00
|
|
|
let(:trigger) { create(:ci_trigger, project: project) }
|
|
|
|
let!(:trigger_request) { create(:ci_trigger_request, pipeline: pipeline, builds: [job], trigger: trigger) }
|
|
|
|
|
2017-02-15 12:08:29 -05:00
|
|
|
before do
|
|
|
|
project.variables << Ci::Variable.new(key: 'SECRET_KEY', value: 'secret_value')
|
|
|
|
end
|
|
|
|
|
2017-09-01 13:37:11 -04:00
|
|
|
shared_examples 'expected variables behavior' do
|
|
|
|
it 'returns variables for triggers' do
|
|
|
|
request_job
|
2017-02-15 12:08:29 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-09-01 13:37:11 -04:00
|
|
|
expect(json_response['variables']).to include(*expected_variables)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when variables are stored in trigger_request' do
|
|
|
|
before do
|
|
|
|
trigger_request.update_attribute(:variables, { TRIGGER_KEY_1: 'TRIGGER_VALUE_1' } )
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'expected variables behavior'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when variables are stored in pipeline_variables' do
|
|
|
|
before do
|
|
|
|
create(:ci_pipeline_variable, pipeline: pipeline, key: :TRIGGER_KEY_1, value: 'TRIGGER_VALUE_1')
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'expected variables behavior'
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'registry credentials support' do
|
|
|
|
let(:registry_url) { 'registry.example.com:5005' }
|
|
|
|
let(:registry_credentials) do
|
2017-02-15 19:38:53 -05:00
|
|
|
{ 'type' => 'registry',
|
|
|
|
'url' => registry_url,
|
|
|
|
'username' => 'gitlab-ci-token',
|
|
|
|
'password' => job.token }
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when registry is enabled' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
stub_container_registry_config(enabled: true, host_port: registry_url)
|
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
|
|
|
|
it 'sends registry credentials key' do
|
|
|
|
request_job
|
2017-02-15 19:05:44 -05:00
|
|
|
|
2017-02-15 12:08:29 -05:00
|
|
|
expect(json_response).to have_key('credentials')
|
|
|
|
expect(json_response['credentials']).to include(registry_credentials)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when registry is disabled' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
stub_container_registry_config(enabled: false, host_port: registry_url)
|
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
|
|
|
|
it 'does not send registry credentials' do
|
|
|
|
request_job
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-02-15 12:08:29 -05:00
|
|
|
expect(json_response).to have_key('credentials')
|
|
|
|
expect(json_response['credentials']).not_to include(registry_credentials)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def request_job(token = runner.token, **params)
|
|
|
|
new_params = params.merge(token: token, last_update: last_update)
|
2017-02-15 19:38:53 -05:00
|
|
|
post api('/jobs/request'), new_params, { 'User-Agent' => user_agent }
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-02-28 06:52:08 -05:00
|
|
|
|
|
|
|
describe 'PUT /api/v4/jobs/:id' do
|
|
|
|
let(:job) { create(:ci_build, :pending, :trace, pipeline: pipeline, runner_id: runner.id) }
|
|
|
|
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
job.run!
|
|
|
|
end
|
2017-02-28 06:52:08 -05:00
|
|
|
|
|
|
|
context 'when status is given' do
|
|
|
|
it 'mark job as succeeded' do
|
|
|
|
update_job(state: 'success')
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-09-05 02:10:34 -04:00
|
|
|
job.reload
|
|
|
|
expect(job).to be_success
|
2017-02-28 06:52:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'mark job as failed' do
|
|
|
|
update_job(state: 'failed')
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-09-05 02:10:34 -04:00
|
|
|
job.reload
|
|
|
|
expect(job).to be_failed
|
|
|
|
expect(job).to be_unknown_failure
|
2017-02-28 06:52:08 -05:00
|
|
|
end
|
2017-09-01 03:52:11 -04:00
|
|
|
|
2017-09-05 02:10:34 -04:00
|
|
|
context 'when failure_reason is script_failure' do
|
|
|
|
before do
|
|
|
|
update_job(state: 'failed', failure_reason: 'script_failure')
|
|
|
|
job.reload
|
|
|
|
end
|
|
|
|
|
|
|
|
it { expect(job).to be_script_failure }
|
|
|
|
end
|
2017-09-01 03:52:11 -04:00
|
|
|
|
2017-09-05 02:10:34 -04:00
|
|
|
context 'when failure_reason is runner_system_failure' do
|
|
|
|
before do
|
|
|
|
update_job(state: 'failed', failure_reason: 'runner_system_failure')
|
|
|
|
job.reload
|
2017-09-01 03:52:11 -04:00
|
|
|
end
|
2017-09-05 02:10:34 -04:00
|
|
|
|
|
|
|
it { expect(job).to be_runner_system_failure }
|
2017-09-01 03:52:11 -04:00
|
|
|
end
|
2017-02-28 06:52:08 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when tace is given' do
|
|
|
|
it 'updates a running build' do
|
|
|
|
update_job(trace: 'BUILD TRACE UPDATED')
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-04-06 12:20:27 -04:00
|
|
|
expect(job.reload.trace.raw).to eq 'BUILD TRACE UPDATED'
|
2017-02-28 06:52:08 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when no trace is given' do
|
|
|
|
it 'does not override trace information' do
|
|
|
|
update_job
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-04-06 12:20:27 -04:00
|
|
|
expect(job.reload.trace.raw).to eq 'BUILD TRACE'
|
2017-02-28 06:52:08 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when job has been erased' do
|
|
|
|
let(:job) { create(:ci_build, runner_id: runner.id, erased_at: Time.now) }
|
|
|
|
|
|
|
|
it 'responds with forbidden' do
|
|
|
|
update_job
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2017-02-28 06:52:08 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def update_job(token = job.token, **params)
|
|
|
|
new_params = params.merge(token: token)
|
|
|
|
put api("/jobs/#{job.id}"), new_params
|
|
|
|
end
|
|
|
|
end
|
2017-02-28 07:29:52 -05:00
|
|
|
|
|
|
|
describe 'PATCH /api/v4/jobs/:id/trace' do
|
|
|
|
let(:job) { create(:ci_build, :running, :trace, runner_id: runner.id, pipeline: pipeline) }
|
|
|
|
let(:headers) { { API::Helpers::Runner::JOB_TOKEN_HEADER => job.token, 'Content-Type' => 'text/plain' } }
|
|
|
|
let(:headers_with_range) { headers.merge({ 'Content-Range' => '11-20' }) }
|
|
|
|
let(:update_interval) { 10.seconds.to_i }
|
|
|
|
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
initial_patch_the_trace
|
|
|
|
end
|
2017-02-28 07:29:52 -05:00
|
|
|
|
|
|
|
context 'when request is valid' do
|
|
|
|
it 'gets correct response' do
|
|
|
|
expect(response.status).to eq 202
|
2017-04-06 12:20:27 -04:00
|
|
|
expect(job.reload.trace.raw).to eq 'BUILD TRACE appended'
|
2017-02-28 07:29:52 -05:00
|
|
|
expect(response.header).to have_key 'Range'
|
|
|
|
expect(response.header).to have_key 'Job-Status'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when job has been updated recently' do
|
2017-08-09 05:52:22 -04:00
|
|
|
it { expect { patch_the_trace }.not_to change { job.updated_at }}
|
2017-02-28 07:29:52 -05:00
|
|
|
|
|
|
|
it "changes the job's trace" do
|
|
|
|
patch_the_trace
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-04-06 12:20:27 -04:00
|
|
|
expect(job.reload.trace.raw).to eq 'BUILD TRACE appended appended'
|
2017-02-28 07:29:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when Runner makes a force-patch' do
|
2017-08-09 05:52:22 -04:00
|
|
|
it { expect { force_patch_the_trace }.not_to change { job.updated_at }}
|
2017-02-28 07:29:52 -05:00
|
|
|
|
|
|
|
it "doesn't change the build.trace" do
|
|
|
|
force_patch_the_trace
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-04-06 12:20:27 -04:00
|
|
|
expect(job.reload.trace.raw).to eq 'BUILD TRACE appended'
|
2017-02-28 07:29:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when job was not updated recently' do
|
|
|
|
let(:update_interval) { 15.minutes.to_i }
|
|
|
|
|
|
|
|
it { expect { patch_the_trace }.to change { job.updated_at } }
|
|
|
|
|
|
|
|
it 'changes the job.trace' do
|
|
|
|
patch_the_trace
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-04-06 12:20:27 -04:00
|
|
|
expect(job.reload.trace.raw).to eq 'BUILD TRACE appended appended'
|
2017-02-28 07:29:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when Runner makes a force-patch' do
|
|
|
|
it { expect { force_patch_the_trace }.to change { job.updated_at } }
|
|
|
|
|
|
|
|
it "doesn't change the job.trace" do
|
|
|
|
force_patch_the_trace
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-04-06 12:20:27 -04:00
|
|
|
expect(job.reload.trace.raw).to eq 'BUILD TRACE appended'
|
2017-02-28 07:29:52 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when project for the build has been deleted' do
|
|
|
|
let(:job) do
|
|
|
|
create(:ci_build, :running, :trace, runner_id: runner.id, pipeline: pipeline) do |job|
|
|
|
|
job.project.update(pending_delete: true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'responds with forbidden' do
|
|
|
|
expect(response.status).to eq(403)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when Runner makes a force-patch' do
|
|
|
|
before do
|
|
|
|
force_patch_the_trace
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'gets correct response' do
|
|
|
|
expect(response.status).to eq 202
|
2017-04-06 12:20:27 -04:00
|
|
|
expect(job.reload.trace.raw).to eq 'BUILD TRACE appended'
|
2017-02-28 07:29:52 -05:00
|
|
|
expect(response.header).to have_key 'Range'
|
|
|
|
expect(response.header).to have_key 'Job-Status'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when content-range start is too big' do
|
|
|
|
let(:headers_with_range) { headers.merge({ 'Content-Range' => '15-20' }) }
|
|
|
|
|
|
|
|
it 'gets 416 error response with range headers' do
|
|
|
|
expect(response.status).to eq 416
|
|
|
|
expect(response.header).to have_key 'Range'
|
|
|
|
expect(response.header['Range']).to eq '0-11'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when content-range start is too small' do
|
|
|
|
let(:headers_with_range) { headers.merge({ 'Content-Range' => '8-20' }) }
|
|
|
|
|
|
|
|
it 'gets 416 error response with range headers' do
|
|
|
|
expect(response.status).to eq 416
|
|
|
|
expect(response.header).to have_key 'Range'
|
|
|
|
expect(response.header['Range']).to eq '0-11'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when Content-Range header is missing' do
|
|
|
|
let(:headers_with_range) { headers }
|
|
|
|
|
|
|
|
it { expect(response.status).to eq 400 }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when job has been errased' do
|
|
|
|
let(:job) { create(:ci_build, runner_id: runner.id, erased_at: Time.now) }
|
|
|
|
|
|
|
|
it { expect(response.status).to eq 403 }
|
|
|
|
end
|
|
|
|
|
|
|
|
def patch_the_trace(content = ' appended', request_headers = nil)
|
|
|
|
unless request_headers
|
2017-04-06 12:20:27 -04:00
|
|
|
job.trace.read do |stream|
|
|
|
|
offset = stream.size
|
|
|
|
limit = offset + content.length - 1
|
|
|
|
request_headers = headers.merge({ 'Content-Range' => "#{offset}-#{limit}" })
|
|
|
|
end
|
2017-02-28 07:29:52 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
Timecop.travel(job.updated_at + update_interval) do
|
|
|
|
patch api("/jobs/#{job.id}/trace"), content, request_headers
|
|
|
|
job.reload
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def initial_patch_the_trace
|
|
|
|
patch_the_trace(' appended', headers_with_range)
|
|
|
|
end
|
|
|
|
|
|
|
|
def force_patch_the_trace
|
|
|
|
2.times { patch_the_trace('') }
|
|
|
|
end
|
|
|
|
end
|
2017-02-28 08:27:25 -05:00
|
|
|
|
|
|
|
describe 'artifacts' do
|
2017-02-28 11:36:17 -05:00
|
|
|
let(:job) { create(:ci_build, :pending, pipeline: pipeline, runner_id: runner.id) }
|
2017-02-28 08:27:25 -05:00
|
|
|
let(:jwt_token) { JWT.encode({ 'iss' => 'gitlab-workhorse' }, Gitlab::Workhorse.secret, 'HS256') }
|
|
|
|
let(:headers) { { 'GitLab-Workhorse' => '1.0', Gitlab::Workhorse::INTERNAL_API_REQUEST_HEADER => jwt_token } }
|
|
|
|
let(:headers_with_token) { headers.merge(API::Helpers::Runner::JOB_TOKEN_HEADER => job.token) }
|
2017-02-28 11:36:17 -05:00
|
|
|
let(:file_upload) { fixture_file_upload(Rails.root + 'spec/fixtures/banana_sample.gif', 'image/gif') }
|
|
|
|
let(:file_upload2) { fixture_file_upload(Rails.root + 'spec/fixtures/dk.png', 'image/gif') }
|
2017-02-28 08:27:25 -05:00
|
|
|
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
job.run!
|
|
|
|
end
|
2017-02-28 08:27:25 -05:00
|
|
|
|
|
|
|
describe 'POST /api/v4/jobs/:id/artifacts/authorize' do
|
|
|
|
context 'when using token as parameter' do
|
|
|
|
it 'authorizes posting artifacts to running job' do
|
|
|
|
authorize_artifacts_with_token_in_params
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-02-28 08:27:25 -05:00
|
|
|
expect(response.content_type.to_s).to eq(Gitlab::Workhorse::INTERNAL_API_CONTENT_TYPE)
|
|
|
|
expect(json_response['TempPath']).not_to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'fails to post too large artifact' do
|
|
|
|
stub_application_setting(max_artifacts_size: 0)
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-02-28 08:27:25 -05:00
|
|
|
authorize_artifacts_with_token_in_params(filesize: 100)
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(413)
|
2017-02-28 08:27:25 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when using token as header' do
|
|
|
|
it 'authorizes posting artifacts to running job' do
|
|
|
|
authorize_artifacts_with_token_in_headers
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-02-28 08:27:25 -05:00
|
|
|
expect(response.content_type.to_s).to eq(Gitlab::Workhorse::INTERNAL_API_CONTENT_TYPE)
|
|
|
|
expect(json_response['TempPath']).not_to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'fails to post too large artifact' do
|
|
|
|
stub_application_setting(max_artifacts_size: 0)
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-02-28 08:27:25 -05:00
|
|
|
authorize_artifacts_with_token_in_headers(filesize: 100)
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(413)
|
2017-02-28 08:27:25 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when using runners token' do
|
|
|
|
it 'fails to authorize artifacts posting' do
|
|
|
|
authorize_artifacts(token: job.project.runners_token)
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2017-02-28 08:27:25 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'reject requests that did not go through gitlab-workhorse' do
|
|
|
|
headers.delete(Gitlab::Workhorse::INTERNAL_API_REQUEST_HEADER)
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-02-28 08:27:25 -05:00
|
|
|
authorize_artifacts
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(500)
|
2017-02-28 08:27:25 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'authorization token is invalid' do
|
|
|
|
it 'responds with forbidden' do
|
|
|
|
authorize_artifacts(token: 'invalid', filesize: 100 )
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2017-02-28 08:27:25 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_artifacts(params = {}, request_headers = headers)
|
|
|
|
post api("/jobs/#{job.id}/artifacts/authorize"), params, request_headers
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_artifacts_with_token_in_params(params = {}, request_headers = headers)
|
|
|
|
params = params.merge(token: job.token)
|
|
|
|
authorize_artifacts(params, request_headers)
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_artifacts_with_token_in_headers(params = {}, request_headers = headers_with_token)
|
|
|
|
authorize_artifacts(params, request_headers)
|
|
|
|
end
|
|
|
|
end
|
2017-02-28 11:36:17 -05:00
|
|
|
|
|
|
|
describe 'POST /api/v4/jobs/:id/artifacts' do
|
|
|
|
context 'when artifacts are being stored inside of tmp path' do
|
|
|
|
before do
|
|
|
|
# by configuring this path we allow to pass temp file from any path
|
2017-09-21 04:34:12 -04:00
|
|
|
allow(JobArtifactUploader).to receive(:artifacts_upload_path).and_return('/')
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when job has been erased' do
|
|
|
|
let(:job) { create(:ci_build, erased_at: Time.now) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
upload_artifacts(file_upload, headers_with_token)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'responds with forbidden' do
|
|
|
|
upload_artifacts(file_upload, headers_with_token)
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when job is running' do
|
|
|
|
shared_examples 'successful artifacts upload' do
|
|
|
|
it 'updates successfully' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when uses regular file post' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
upload_artifacts(file_upload, headers_with_token, false)
|
|
|
|
end
|
2017-02-28 11:36:17 -05:00
|
|
|
|
|
|
|
it_behaves_like 'successful artifacts upload'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when uses accelerated file post' do
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
upload_artifacts(file_upload, headers_with_token, true)
|
|
|
|
end
|
2017-02-28 11:36:17 -05:00
|
|
|
|
|
|
|
it_behaves_like 'successful artifacts upload'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when using runners token' do
|
|
|
|
it 'responds with forbidden' do
|
|
|
|
upload_artifacts(file_upload, headers.merge(API::Helpers::Runner::JOB_TOKEN_HEADER => job.project.runners_token))
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when artifacts file is too large' do
|
|
|
|
it 'fails to post too large artifact' do
|
|
|
|
stub_application_setting(max_artifacts_size: 0)
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-02-28 11:36:17 -05:00
|
|
|
upload_artifacts(file_upload, headers_with_token)
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(413)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when artifacts post request does not contain file' do
|
|
|
|
it 'fails to post artifacts without file' do
|
|
|
|
post api("/jobs/#{job.id}/artifacts"), {}, headers_with_token
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'GitLab Workhorse is not configured' do
|
|
|
|
it 'fails to post artifacts without GitLab-Workhorse' do
|
|
|
|
post api("/jobs/#{job.id}/artifacts"), { token: job.token }, {}
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when setting an expire date' do
|
|
|
|
let(:default_artifacts_expire_in) {}
|
|
|
|
let(:post_data) do
|
|
|
|
{ 'file.path' => file_upload.path,
|
|
|
|
'file.name' => file_upload.original_filename,
|
|
|
|
'expire_in' => expire_in }
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
stub_application_setting(default_artifacts_expire_in: default_artifacts_expire_in)
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-02-28 11:36:17 -05:00
|
|
|
post(api("/jobs/#{job.id}/artifacts"), post_data, headers_with_token)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when an expire_in is given' do
|
|
|
|
let(:expire_in) { '7 days' }
|
|
|
|
|
|
|
|
it 'updates when specified' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-03-02 11:44:15 -05:00
|
|
|
expect(job.reload.artifacts_expire_at).to be_within(5.minutes).of(7.days.from_now)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when no expire_in is given' do
|
|
|
|
let(:expire_in) { nil }
|
|
|
|
|
|
|
|
it 'ignores if not specified' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-03-02 11:44:15 -05:00
|
|
|
expect(job.reload.artifacts_expire_at).to be_nil
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'with application default' do
|
|
|
|
context 'when default is 5 days' do
|
|
|
|
let(:default_artifacts_expire_in) { '5 days' }
|
|
|
|
|
|
|
|
it 'sets to application default' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-03-02 11:44:15 -05:00
|
|
|
expect(job.reload.artifacts_expire_at).to be_within(5.minutes).of(5.days.from_now)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when default is 0' do
|
|
|
|
let(:default_artifacts_expire_in) { '0' }
|
|
|
|
|
|
|
|
it 'does not set expire_in' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-03-02 11:44:15 -05:00
|
|
|
expect(job.reload.artifacts_expire_at).to be_nil
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'posts artifacts file and metadata file' do
|
|
|
|
let!(:artifacts) { file_upload }
|
|
|
|
let!(:metadata) { file_upload2 }
|
|
|
|
|
|
|
|
let(:stored_artifacts_file) { job.reload.artifacts_file.file }
|
|
|
|
let(:stored_metadata_file) { job.reload.artifacts_metadata.file }
|
|
|
|
let(:stored_artifacts_size) { job.reload.artifacts_size }
|
|
|
|
|
|
|
|
before do
|
|
|
|
post(api("/jobs/#{job.id}/artifacts"), post_data, headers_with_token)
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when posts data accelerated by workhorse is correct' do
|
|
|
|
let(:post_data) do
|
|
|
|
{ 'file.path' => artifacts.path,
|
|
|
|
'file.name' => artifacts.original_filename,
|
|
|
|
'metadata.path' => metadata.path,
|
|
|
|
'metadata.name' => metadata.original_filename }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'stores artifacts and artifacts metadata' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-02-28 11:36:17 -05:00
|
|
|
expect(stored_artifacts_file.original_filename).to eq(artifacts.original_filename)
|
|
|
|
expect(stored_metadata_file.original_filename).to eq(metadata.original_filename)
|
2017-09-21 04:34:12 -04:00
|
|
|
expect(stored_artifacts_size).to eq(72821)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when there is no artifacts file in post data' do
|
|
|
|
let(:post_data) do
|
|
|
|
{ 'metadata' => metadata }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is expected to respond with bad request' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not store metadata' do
|
|
|
|
expect(stored_metadata_file).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when artifacts are being stored outside of tmp path' do
|
|
|
|
before do
|
|
|
|
# by configuring this path we allow to pass file from @tmpdir only
|
|
|
|
# but all temporary files are stored in system tmp directory
|
|
|
|
@tmpdir = Dir.mktmpdir
|
2017-11-12 07:02:38 -05:00
|
|
|
allow(JobArtifactUploader).to receive(:artifacts_upload_path).and_return(@tmpdir)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
|
2017-06-14 14:18:56 -04:00
|
|
|
after do
|
|
|
|
FileUtils.remove_entry @tmpdir
|
|
|
|
end
|
2017-02-28 11:36:17 -05:00
|
|
|
|
|
|
|
it' "fails to post artifacts for outside of tmp path"' do
|
|
|
|
upload_artifacts(file_upload, headers_with_token)
|
2017-03-02 11:44:15 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2017-02-28 11:36:17 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def upload_artifacts(file, headers = {}, accelerated = true)
|
2017-02-28 14:25:58 -05:00
|
|
|
params = if accelerated
|
|
|
|
{ 'file.path' => file.path, 'file.name' => file.original_filename }
|
|
|
|
else
|
2017-02-28 11:36:17 -05:00
|
|
|
{ 'file' => file }
|
2017-02-28 14:25:58 -05:00
|
|
|
end
|
2017-02-28 11:36:17 -05:00
|
|
|
post api("/jobs/#{job.id}/artifacts"), params, headers
|
|
|
|
end
|
|
|
|
end
|
2017-02-28 11:55:56 -05:00
|
|
|
|
|
|
|
describe 'GET /api/v4/jobs/:id/artifacts' do
|
|
|
|
let(:token) { job.token }
|
|
|
|
|
2017-06-14 14:18:56 -04:00
|
|
|
before do
|
|
|
|
download_artifact
|
|
|
|
end
|
2017-02-28 11:55:56 -05:00
|
|
|
|
|
|
|
context 'when job has artifacts' do
|
|
|
|
let(:job) { create(:ci_build, :artifacts) }
|
|
|
|
let(:download_headers) do
|
|
|
|
{ 'Content-Transfer-Encoding' => 'binary',
|
|
|
|
'Content-Disposition' => 'attachment; filename=ci_build_artifacts.zip' }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when using job token' do
|
|
|
|
it 'download artifacts' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2017-02-28 11:55:56 -05:00
|
|
|
expect(response.headers).to include download_headers
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when using runnners token' do
|
|
|
|
let(:token) { job.project.runners_token }
|
|
|
|
|
|
|
|
it 'responds with forbidden' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2017-02-28 11:55:56 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when job does not has artifacts' do
|
|
|
|
it 'responds with not found' do
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2017-02-28 11:55:56 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def download_artifact(params = {}, request_headers = headers)
|
|
|
|
params = params.merge(token: token)
|
|
|
|
get api("/jobs/#{job.id}/artifacts"), params, request_headers
|
|
|
|
end
|
|
|
|
end
|
2017-02-28 08:27:25 -05:00
|
|
|
end
|
2017-02-15 12:08:29 -05:00
|
|
|
end
|
2017-02-15 19:20:17 -05:00
|
|
|
end
|