Merge branch '50101-add-artifact-information-to-job-api' into 'master'
Add artifact information in job API See merge request gitlab-org/gitlab-ce!21328
This commit is contained in:
commit
05ee94beb7
9 changed files with 137 additions and 8 deletions
|
@ -9,6 +9,28 @@ class BuildDetailsEntity < JobEntity
|
|||
|
||||
expose :metadata, using: BuildMetadataEntity
|
||||
|
||||
expose :artifact, if: -> (*) { can?(current_user, :read_build, build) } do
|
||||
expose :download_path, if: -> (*) { build.artifacts? } do |build|
|
||||
download_project_job_artifacts_path(project, build)
|
||||
end
|
||||
|
||||
expose :browse_path, if: -> (*) { build.browsable_artifacts? } do |build|
|
||||
browse_project_job_artifacts_path(project, build)
|
||||
end
|
||||
|
||||
expose :keep_path, if: -> (*) { build.has_expiring_artifacts? && can?(current_user, :update_build, build) } do |build|
|
||||
keep_project_job_artifacts_path(project, build)
|
||||
end
|
||||
|
||||
expose :expire_at, if: -> (*) { build.artifacts_expire_at.present? } do |build|
|
||||
build.artifacts_expire_at
|
||||
end
|
||||
|
||||
expose :expired, if: -> (*) { build.artifacts_expire_at.present? } do |build|
|
||||
build.artifacts_expired?
|
||||
end
|
||||
end
|
||||
|
||||
expose :erased_by, if: -> (*) { build.erased? }, using: UserEntity
|
||||
expose :erase_path, if: -> (*) { build.erasable? && can?(current_user, :erase_build, build) } do |build|
|
||||
erase_project_job_path(project, build)
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
title: Send artifact information in job API
|
||||
merge_request: 50460
|
||||
author:
|
||||
type: other
|
|
@ -135,7 +135,7 @@ describe Projects::JobsController, :clean_gitlab_redis_shared_state do
|
|||
end
|
||||
end
|
||||
|
||||
context 'when requesting JSON' do
|
||||
context 'when requesting JSON with failed job' do
|
||||
let(:merge_request) { create(:merge_request, source_project: project) }
|
||||
|
||||
before do
|
||||
|
@ -149,10 +149,60 @@ describe Projects::JobsController, :clean_gitlab_redis_shared_state do
|
|||
|
||||
it 'exposes needed information' do
|
||||
expect(response).to have_gitlab_http_status(:ok)
|
||||
expect(response).to match_response_schema('job/job_details')
|
||||
expect(json_response['raw_path']).to match(%r{jobs/\d+/raw\z})
|
||||
expect(json_response['merge_request']['path']).to match(%r{merge_requests/\d+\z})
|
||||
expect(json_response['new_issue_path']).to include('/issues/new')
|
||||
end
|
||||
end
|
||||
|
||||
context 'when request JSON for successful job' do
|
||||
let(:merge_request) { create(:merge_request, source_project: project) }
|
||||
let(:job) { create(:ci_build, :success, :artifacts, pipeline: pipeline) }
|
||||
|
||||
before do
|
||||
project.add_developer(user)
|
||||
sign_in(user)
|
||||
|
||||
allow_any_instance_of(Ci::Build).to receive(:merge_request).and_return(merge_request)
|
||||
|
||||
get_show(id: job.id, format: :json)
|
||||
end
|
||||
|
||||
it 'exposes needed information' do
|
||||
expect(response).to have_gitlab_http_status(:ok)
|
||||
expect(response).to match_response_schema('job/job_details')
|
||||
expect(json_response['artifact']['download_path']).to match(%r{artifacts/download})
|
||||
expect(json_response['artifact']['browse_path']).to match(%r{artifacts/browse})
|
||||
expect(json_response['artifact']).not_to have_key(:expired)
|
||||
expect(json_response['artifact']).not_to have_key(:expired_at)
|
||||
expect(json_response['raw_path']).to match(%r{jobs/\d+/raw\z})
|
||||
expect(json_response.dig('merge_request', 'path')).to match(%r{merge_requests/\d+\z})
|
||||
expect(json_response['new_issue_path'])
|
||||
.to include('/issues/new')
|
||||
end
|
||||
|
||||
context 'when request JSON for successful job with expired artifacts' do
|
||||
let(:merge_request) { create(:merge_request, source_project: project) }
|
||||
let(:job) { create(:ci_build, :success, :artifacts, :expired, pipeline: pipeline) }
|
||||
|
||||
before do
|
||||
project.add_developer(user)
|
||||
sign_in(user)
|
||||
|
||||
allow_any_instance_of(Ci::Build).to receive(:merge_request).and_return(merge_request)
|
||||
|
||||
get_show(id: job.id, format: :json)
|
||||
end
|
||||
|
||||
it 'exposes needed information' do
|
||||
expect(response).to have_gitlab_http_status(:ok)
|
||||
expect(response).to match_response_schema('job/job_details')
|
||||
expect(json_response['artifact']).not_to have_key(:download_path)
|
||||
expect(json_response['artifact']).not_to have_key(:browse_path)
|
||||
expect(json_response['artifact']['expired']).to eq(true)
|
||||
expect(json_response['artifact']['expire_at']).not_to be_empty
|
||||
expect(json_response['raw_path']).to match(%r{jobs/\d+/raw\z})
|
||||
expect(json_response.dig('merge_request', 'path')).to match(%r{merge_requests/\d+\z})
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -18,7 +18,29 @@
|
|||
"tooltip": { "type": "string" },
|
||||
"has_details": { "type": "boolean" },
|
||||
"details_path": { "type": "string" },
|
||||
"favicon": { "type": "string" }
|
||||
"favicon": { "type": "string" },
|
||||
"action": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"icon",
|
||||
"title",
|
||||
"path",
|
||||
"method"
|
||||
],
|
||||
"properties": {
|
||||
"icon": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"retry",
|
||||
"play",
|
||||
"cancel"
|
||||
]
|
||||
},
|
||||
"title": { "type": "string" },
|
||||
"path": { "type": "string" },
|
||||
"method": { "$ref": "http_method.json" }
|
||||
}
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
||||
|
|
5
spec/fixtures/api/schemas/http_method.json
vendored
Normal file
5
spec/fixtures/api/schemas/http_method.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"type": "string",
|
||||
"description": "HTTP methods that the API can specify to send.",
|
||||
"enum": [ "post", "get", "put", "patch" ]
|
||||
}
|
11
spec/fixtures/api/schemas/job/artifact.json
vendored
Normal file
11
spec/fixtures/api/schemas/job/artifact.json
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"download_path": { "type": "string"},
|
||||
"browse_path": { "type": "string"},
|
||||
"keep_path": { "type": "string"},
|
||||
"expired": { "type": "boolean" },
|
||||
"expire_at": { "type": "string", "format": "date-time" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"description": "Basic job information",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"id",
|
||||
|
@ -13,12 +14,18 @@
|
|||
"properties": {
|
||||
"id": { "type": "integer" },
|
||||
"name": { "type": "string" },
|
||||
"started": { "type": "boolean" } ,
|
||||
"started": {
|
||||
"oneOf": [
|
||||
{ "type": "string", "format": "date-time" },
|
||||
{ "type": "boolean" }
|
||||
]
|
||||
},
|
||||
"build_path": { "type": "string" },
|
||||
"retry_path": { "type": "string" },
|
||||
"playable": { "type": "boolean" },
|
||||
"created_at": { "type": "string" },
|
||||
"updated_at": { "type": "string" },
|
||||
"status": { "$ref": "ci_detailed_status.json" }
|
||||
"status": { "$ref": "../ci_detailed_status.json" }
|
||||
},
|
||||
"additionalProperties": false
|
||||
"additionalProperties": true
|
||||
}
|
7
spec/fixtures/api/schemas/job/job_details.json
vendored
Normal file
7
spec/fixtures/api/schemas/job/job_details.json
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"allOf": [{ "$ref": "job.json" }],
|
||||
"description": "An extension of job.json with more detailed information",
|
||||
"properties": {
|
||||
"artifact": { "$ref": "artifact.json" }
|
||||
}
|
||||
}
|
|
@ -13,7 +13,7 @@
|
|||
"groups": { "optional": true },
|
||||
"latest_statuses": {
|
||||
"type": "array",
|
||||
"items": { "$ref": "job.json" },
|
||||
"items": { "$ref": "job/job.json" },
|
||||
"optional": true
|
||||
},
|
||||
"status": { "$ref": "ci_detailed_status.json" },
|
||||
|
|
Loading…
Reference in a new issue