2018-11-18 11:00:15 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Ci::BuildRunnerPresenter do
|
|
|
|
let(:presenter) { described_class.new(build) }
|
|
|
|
let(:archive) { { paths: ['sample.txt'] } }
|
|
|
|
|
|
|
|
let(:archive_expectation) do
|
|
|
|
{
|
|
|
|
artifact_type: :archive,
|
|
|
|
artifact_format: :zip,
|
|
|
|
paths: archive[:paths],
|
|
|
|
untracked: archive[:untracked]
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#artifacts' do
|
|
|
|
context "when option contains archive-type artifacts" do
|
|
|
|
let(:build) { create(:ci_build, options: { artifacts: archive } ) }
|
|
|
|
|
|
|
|
it 'presents correct hash' do
|
|
|
|
expect(presenter.artifacts.first).to include(archive_expectation)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when untracked is specified" do
|
|
|
|
let(:archive) { { untracked: true } }
|
|
|
|
|
|
|
|
it 'presents correct hash' do
|
|
|
|
expect(presenter.artifacts.first).to include(archive_expectation)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when untracked and paths are missing" do
|
|
|
|
let(:archive) { { when: 'always' } }
|
|
|
|
|
|
|
|
it 'does not present hash' do
|
|
|
|
expect(presenter.artifacts).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
context "with reports" do
|
|
|
|
Ci::JobArtifact::DEFAULT_FILE_NAMES.each do |file_type, filename|
|
2018-12-13 13:39:08 +05:30
|
|
|
context file_type.to_s do
|
|
|
|
let(:report) { { "#{file_type}": [filename] } }
|
|
|
|
let(:build) { create(:ci_build, options: { artifacts: { reports: report } } ) }
|
2018-12-05 23:21:45 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
let(:report_expectation) do
|
|
|
|
{
|
|
|
|
name: filename,
|
|
|
|
artifact_type: :"#{file_type}",
|
|
|
|
artifact_format: Ci::JobArtifact::TYPE_AND_FORMAT_PAIRS.fetch(file_type),
|
|
|
|
paths: [filename],
|
|
|
|
when: 'always'
|
|
|
|
}
|
|
|
|
end
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
it 'presents correct hash' do
|
|
|
|
expect(presenter.artifacts.first).to include(report_expectation)
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when option has both archive and reports specification" do
|
2018-12-05 23:21:45 +05:30
|
|
|
let(:report) { { junit: ['junit.xml'] } }
|
|
|
|
let(:build) { create(:ci_build, options: { script: 'echo', artifacts: { **archive, reports: report } } ) }
|
|
|
|
|
|
|
|
let(:report_expectation) do
|
|
|
|
{
|
|
|
|
name: 'junit.xml',
|
|
|
|
artifact_type: :junit,
|
|
|
|
artifact_format: :gzip,
|
|
|
|
paths: ['junit.xml'],
|
|
|
|
when: 'always'
|
|
|
|
}
|
|
|
|
end
|
2018-11-18 11:00:15 +05:30
|
|
|
|
|
|
|
it 'presents correct hash' do
|
|
|
|
expect(presenter.artifacts.first).to include(archive_expectation)
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(presenter.artifacts.second).to include(report_expectation)
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context "when archive specifies 'expire_in' keyword" do
|
|
|
|
let(:archive) { { paths: ['sample.txt'], expire_in: '3 mins 4 sec' } }
|
|
|
|
|
|
|
|
it 'inherits expire_in from archive' do
|
|
|
|
expect(presenter.artifacts.first).to include({ **archive_expectation, expire_in: '3 mins 4 sec' })
|
2018-12-05 23:21:45 +05:30
|
|
|
expect(presenter.artifacts.second).to include({ **report_expectation, expire_in: '3 mins 4 sec' })
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when option has no artifact keywords" do
|
|
|
|
let(:build) { create(:ci_build, :no_options) }
|
|
|
|
|
|
|
|
it 'does not present hash' do
|
|
|
|
expect(presenter.artifacts).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|